:root {
    --bg1: #000000;
    --bg2: #001100;
    --bg3: #440044;
    --accent1: #669900;
    --accent2: #550099;
    --fg1: #00ff00;
    --fg2: #6666ff;
    --fg3: #aa55ff;
    font-family: 'Rubik', sans-serif;
}

body::before {
    content: "";
     position: relative;
  background:
    linear-gradient(rgba(0, 20, 0, 0.8), rgba(0, 0, 0, 0.8))
    z-index: 2;
    padding: 20px;
    padding-bottom: 80px;
    margin: 90px auto 0; /* Added auto for horizontal centering */
    width: 800px;
}
body {
  background: 
    linear-gradient(rgba(0, 20, 0, 0.9), rgba(0, 20, 0, 0.9)),
    url('art/Jungle.jpg') center top/cover fixed;
  margin: 0;
  padding: 0 0 60px;
  font-family: Arial, sans-serif;
  color: var(--bg1);
  text-align: center;
    padding-top: 10px; /* or match your header height */
}


a {
    color: var(--fg3);
  text-decoration-line: underline;
  text-decoration-style: double;
}

h1 {
    color: var(--fg1);
    font-size: 26px;
    margin: 20px 0 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h2 {
    color: var(--fg1);
    font-size: 22px;
    margin: 20px 0 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h3 {
    color: var(--fg1);
    font-size: 20px;
    margin: 20px 0 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h4 {
    color: var(--fg2);
    font-size: 15px;
    margin: 20px 0 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h5 {
    color: var(--fg1);
    font-size: 12px;
    margin: 20px 0 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h6 {
    color: var(--fg1);
    font-size: 12px;
    margin: 20px 0 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

p	{
	width: 600px;
    margin-left: 30px;
	color: var(--accent1);
}

summary	{
	color: var(--fg3);
}

ol	{
	color: var(--fg1);
}

ul	{
	color: var(--fg1);
}

li	{
	color: var(--fg1);
}

/* Header Styles - Fixed positioning without gaps */
header {
    background: var(--bg2);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    height: 40px;
    margin: 0;
}

.logo-container {
    width: 60px;
    flex-shrink: 0;
    position: absolute;
    left: 10px;
}

.header-title-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
    text-align: center;
}



.header-title-group h1 {
    font-size: 1.5rem;
    margin: 0;
}

.header-title-group h2 {
    font-size: 0.9rem;
    color: var(--fg2);
    margin: 0;
}

/* Navigation */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 10px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--fg1);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: none;
  flex-direction: column;
  gap: 10px;
    position: fixed;
    top: 70px;
    right: 0;
    background: var(--accent2);
    list-style: none;
    padding-left: 0;
    padding: 15px;
    border-radius: 0 0 0 10px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 8px 0;
    padding: 0;
}

.nav-links a {
    color: var(--fg1);
    padding: 6px 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--fg3);
    background: rgba(0,255,0,0.1);
}

/* Content container - Updated to position below header */
.content {
    position: relative;
    z-index: 2;
    padding: 10px 20px 20px; /* Top padding to clear fixed header */
   margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    margin-top: 30px; /* push content 30px lower */
}

/* Header Navigation */
.header-nav {
    padding: 40px 0px 10px 0px;
}

.nav-button {
    display: inline-block;
    margin: 0 50px;
    padding: 8px 16px;
    background-color: #00ff00; /* Green background */
    color: #000; /* Black text */
    text-decoration: none;
    border-radius: 14px;
    font-size: 12px;
    transition: all 0.3s ease;
    border: none; /* Removed the border */
}

.nav-button:hover {
    background-color: #7F0FaF; /* Deep purple background */
    color: #00ff00; /* Green text */
}

/* Featured Image Title */
.featured-title {
    font-size: 28px;
    margin: 20px 0 10px;
    color: var(--fg1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Featured Image */
.featured-image {
    margin: 10px 0 40px;
}

.featured-image img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

/* Category Sections */
.category-sections {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.category {
    margin: 40px 0;
}

.category-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.category-title a {
    color: #00ff00; /* Changed to bright green */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.category-title a:hover {
    border-bottom-color: #00ff00; /* Green underline on hover */
    color: #7F0FaF; /* Change to deep purple on hover */
}

.category img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.7);
}

/* Bottom Navigation */
.bottom-nav {
    margin: 60px 0 40px;
}

/* Floating CTA Button - Using your custom animation */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.floating-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
}
.floating-back {
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 1001;
}

.cta-button {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: transform 0.3s ease;
    background-color: #005500; /* Initial background color */
    cursor: pointer;
    animation: pulse 4s infinite; /* 4s for 2s green + 2s purple */
}

.cta-button:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        background-color: #005500; /* Start and end with green */
    }
    50% {
        background-color: #7F0FaF; /* Transition to purple halfway through */
    }
}

/* Services Section */
.services-section {
   	margin-top: 10px;
    padding: 20px 0;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 0px 0px 0px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    height: 100%;
    max-height: 600px;
    object-fit: cover;
}

.service-list {
  flex: 2;
  min-width: 200px;
  background:
    linear-gradient(rgba(0, 20, 0, 0.7), rgba(0, 20, 0, 0.9)),
    url('art/businessads/render1-g-596x596.jpg') center/cover no-repeat;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--fg1);
}

.service-item h3 {
    color: var(--fg1);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.service-item ul {
    list-style-type: none;
    padding-left: 0;
}

.service-item li {
    margin-bottom: 8px;
    font-size: 1rem;
    position: relative;
    padding-left: 0px;
}

.service-item li:before {
    position: absolute;
    left: 0;
    color: var(--fg1);
}

.service-item a {
    color: var(--fg2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-item a:hover {
    color: var(--fg3);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
    
    .service-image, .service-list {
        min-width: 100%;
    }
}



/* Footer - Fixed and Centered */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background: var(--bg1); /* Solid black background */
    text-align: center;
    z-index: 1000;
    border-top: 2px solid var(--fg1); /* Green border at top */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--fg2);
    text-decoration: none;
    font-size: 0.7rem;
    padding: 2px 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--fg1);
}

.social	{
	height: 15px;
	width: 15px;
}

.copyright {
    margin: 0;
}

.copyright a {
    color: var(--fg1);
    text-decoration: none;
    font-size: 0.6rem;
    padding: 2px 0;
}

.genre-link {
    padding: 10px 20px;
    background-color: #005500; /* Stay green by default */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    /* Removed animation: pulse 4s infinite; */
}

.genre-link:hover, .genre-link.active {
    background-color: #7F0FaF; /* Switch to purple on hover and active */
    transform: scale(1.05);
}

* Additional styles for genre page - Updated for wider container */
.genre-content-container {
    max-width: 700px; /* Increased from 600px */
    margin: 20px 0 10px;
    padding-left: 30px;
    background: rgba(0, 20, 0, 0.7);
    border-radius: 10px;
    border: 1px solid var(--fg1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    color: var(--fg1);
    text-align: center;
}

.genre-content-container p {
    width: 90%; /* Override the fixed 800px width */
    max-width: none;
}

/* Updated flexbox container for rows of buttons */
.genre-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    max-width: 100%;
}

/* New music-link class with smaller buttons */
.music-link {
    padding: 8px 16px;
    background-color: #005500; /* Stay green by default */
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    min-width: 100px;
    flex: 0 1 calc(20% - 10px); /* Roughly 5 per row on desktop */
}

.music-link:hover, .music-link.active {
    background-color: #7F0FaF; /* Switch to purple on hover and active */
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .music-link {
        flex: 0 1 calc(33.333% - 10px); /* 3 per row on tablets */
        font-size: 13px;
        padding: 7px 12px;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .music-link {
        flex: 0 1 calc(50% - 10px); /* 2 per row on mobile */
        font-size: 12px;
        padding: 6px 10px;
        min-width: 70px;
    }
    
    .genre-content-container {
        padding: 20px 15px;
        margin: 15px;
    }
    
    .genre-links {
        gap: 8px;
        margin: 20px 0;
    }
}

.gallery {
    display: block;
    margin-top: 30px;
    width: 100%; /* Use full width of container */
    max-width: 600px;
    margin: 30px auto 0; /* Center the gallery */
}

.gallery img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto 20px auto;
    border-radius: 8px;
    border: 1px solid var(--fg1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.01);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery p {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.whitebg	{
	background-color: #ffffff;
}

figure {
    background-color: rgba(0,0,0,0.8);
    max-width: 600px;
    padding: 12px;
    margin: 20px auto 20px auto;
    text-align: center;
    color: var(--fg1);
    border-radius: 8px; /* optional, matches your images */
}

figure img.gallery {
    margin: 0 auto; /* remove top/bottom spacing inside the figure */
    display: block;
}

figure figcaption {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--fg1); /* matches your theme */
}


.bottom-nav {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 40px auto;
}

.nav-button {
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    background-color: #005500;
    cursor: pointer;
    animation: pulse 4s infinite;
    border: none;
}

.nav-button:hover {
    transform: scale(1.05);
    background-color: #7F0FaF;
}

@media (max-width: 750px) {
    .genre-content-container {
        margin: 20px 10px;
        padding: 20px;
        max-width: none;
    }
    
    .gallery img {
        width: 100%;
        max-width: none;
    }
}

.music-player {
    font-family: Arial, sans-serif;
    background: #222;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 300px;
    margin: 10px auto;
}

.track-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.controls button {
    margin: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.progress-container {
    margin: 10px 0;
}

.progress-bar,
.volume-bar {
    width: 100%;
}

/* Music Gallery Styles - Optimized for thinner viewports */
.musicgallery {
    max-width: 500px; /* Reduced from typical 700px+ for thinner viewports */
    margin: 15px auto;
    padding: 20px;
    background: rgba(0, 20, 0, 0.7);
    border-radius: 8px;
    border: 1px solid var(--fg1);
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
    color: var(--fg1);
    text-align: left;
    line-height: 1.4;
}

.musicgallery h1,
.musicgallery h2,
.musicgallery h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3em; /* Smaller headings */
    color: var(--fg1);
}

.musicgallery h1 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
}

.musicgallery p {
    font-size: 14px; /* Smaller paragraph text */
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 100%;
    text-align: left;
    color: var(--fg1);
}

.musicgallery ul,
.musicgallery ol {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    padding-left: 20px;
}

.musicgallery li {
    margin-bottom: 8px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .musicgallery {
        max-width: 95%;
        margin: 10px auto;
        padding: 15px;
    }
    
    .musicgallery p {
        font-size: 13px;
    }
    
    .musicgallery h1 {
        font-size: 1.3em;
    }
    
    .musicgallery h2,
    .musicgallery h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .musicgallery {
        padding: 12px;
        margin: 8px;
        border-radius: 6px;
    }
    
    .musicgallery p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .musicgallery h1 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .musicgallery h2,
    .musicgallery h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .musicgallery ul,
    .musicgallery ol {
        font-size: 12px;
        padding-left: 15px;
    }
}
/* Responsive adjustments for mobile */
@media (max-width: 780px) {

.header-title-group h1 {
    font-size: 1.0rem;
    margin: 0;
}

.header-title-group h2 {
    font-size: 0.4rem;
    color: var(--fg2);
    margin: 0;
}
}

