:root {
    --light-gray: #f0f1f2;
    --deep-red: #7a0018;
    --bright-blue: #3179d6;
    --dark-blue: #1b0e14;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--dark-blue);
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Desktop Navigation */
.desktop-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-container {
    position: relative;
    width: 100px;
    height: 120px;
    overflow: visible;
    display: flex;
    align-items: center;
    top: -35px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.left-links {
    margin-right: auto;
}

.right-links {
    margin-left: auto;
}

.nav-links a {
    font-family: 'Chivo', sans-serif;
    font-weight: 300;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--bright-blue);
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    color: var(--light-gray);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--dark-blue);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.mobile-menu a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem;
    font-family: 'Chivo', sans-serif;
    text-align: center;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .desktop-nav .nav-links {
        display: none;
    }

    .logo-container {
        width: 80px;
        height: 100px;
        top: -25px;
    }
}

/* Scrolling Sections */
.scroll-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    background: url('artwork/HeraSummons.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    color: var(--light-gray);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add a dark overlay to ensure text is readable */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 22, 36, 0.5);
    z-index: 1;
}

.hero-section .content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 45vh;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-section h1 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 0.3rem 0;
    color: var(--light-gray);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .motto {
    font-size: 1.2rem;
    margin: 0 0 0.7rem 0;
    color: var(--light-gray);
}

.hero-section .contact-info {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    padding: 0.4rem 1rem;
    background: rgb(29 128 255 / 40%);
    border-radius: 30px;
    display: inline-block;
   
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--light-gray);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .contact-info:hover {
    background: rgba(49, 121, 214, 0.5);
    transform: translateY(-2px);
}

/* Artist Section */
.artist-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.artist-intro {
    text-align: center;
    max-width: 800px;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(240, 241, 242, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: var(--dark-blue);
}

.profile-container {
    position: relative;
    display: inline-block;
}

.motto-images {
    position: absolute;
    left: -120px;
    top: 30%;
    transform: translateY(-50%);
}

.motto-image {
    width: 100px;
    height: auto;
    position: absolute;
}

.motto-image:first-child {
    top: -10px;
    left: 20px;
    opacity: 0;
    transform: translateY(-30px);
}

.motto-images.visible .motto-image:first-child {
    animation: fadeInTop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image {
    width: 400px;
    height: auto;
    margin-bottom: 2rem;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }

/* Featured Works Section */
.featured-works {
    background: var(--dark-blue);
    color: var(--light-gray);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    background: rgba(240, 241, 242, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
}

/* Footer Styles */
footer {
    background: var(--dark-blue);
    color: var(--light-gray);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.copyright {
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Banner Section */
.banner-section {
    height: 100vh;
    background: url('art1.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    text-align: center;
    transition: background-position 0.3s ease;
}

.banner-content h1 {
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 10px;
}

/* Artworks Section */
.artworks-section {
    padding: 2rem;
    background: var(--light-gray);
}

.artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.artwork-item {
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.artwork-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.artwork-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.logo-container {
    position: relative;
    width: 100px;
    height: 120px;
    overflow: visible;
    top: 12px;
    display: flex;
    align-items: center;
}

.logo-layer {
    position: absolute;
    width: 70%;
    height: auto;
    padding-bottom: 10px;
    animation: gentleBounce 4s infinite ease-in-out;
}

.logo-layer:nth-child(1) { z-index: 1; }  /* desno nazad.png */
.logo-layer:nth-child(2) { z-index: 2; }  /* levo nazad.png */
.logo-layer:nth-child(3) { z-index: 3; }  /* sredina.png */
.logo-layer:nth-child(4) { z-index: 4; }  /* zajak.png */
.logo-layer:nth-child(5) { z-index: 5; }  /* napred.png - highest z-index */

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Comics Page Styles */
.comics-page {
    padding-top: var(--header-height);
    min-height: 100vh;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.comics-grid-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    color: var(--light-gray);
}

.comics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comic-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.comic-thumbnail {
    position: relative;
    padding-top: 60%; /* Aspect ratio 5:3 */
    overflow: hidden;
}

.comic-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 22, 36, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comic-overlay span {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.comic-card:hover .comic-thumbnail img {
    transform: scale(1.05);
}

.comic-card:hover .comic-overlay {
    opacity: 1;
}

.comic-info {
    padding: 1.5rem;
}

.comic-info h2 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.comic-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.read-now-btn {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.read-now-btn:hover span {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comics-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Stars Container */
.stars-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.stars-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Check if any other elements might be covering the stars */
.background-color {
    z-index: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 1rem;
        height: var(--header-height);
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        padding: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        pointer-events: none;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Container spacing fixes */
    .hero {
        min-height: calc(100vh - var(--header-height));
        padding: 1rem;
        padding-top: var(--header-height);
    }

    .hero-content {
        width: 90%;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .artist-section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .artist-container {
        width: 90%;
        padding: 1.5rem;
        margin: 0;
    }

    /* Adjust content spacing */
    .content-section {
        padding: 2rem 1rem;
    }

    .section-container {
        width: 90%;
        margin: 0 auto;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .artist-container {
        padding: 1rem;
    }
}

/* Comics Preview Section */
.comics-preview {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
  }
  
  .comics-preview h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #f0f1f2;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  }
  
  .comic-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
  }
  
  .comic-card {
    display: block;
    background: #2c3e50;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #f0f1f2;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .comic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  
  .comic-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid #f66885;
  }
  
  .comic-card h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 1rem 1.5rem 0;
    margin: 0;
    color: #f0f1f2;
  }
  
  .comic-card p {
    font-family: 'Chivo', sans-serif;
    padding: 0.5rem 1.5rem 1.5rem;
    margin: 0;
    color: #ecf0f1;
    opacity: 0.9;
    line-height: 1.5;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .comics-preview {
      margin: 3rem auto;
      padding: 0 1.5rem;
    }
    
    .comics-preview h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    
    .comic-links {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .comic-card img {
      height: 250px;
    }
  }
  
  /* Accessibility Focus States */
  .comic-card:focus {
    
    outline-offset: 3px;
  }
/* Add these styles for the mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-gray);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .main-header {
        position: fixed;
        width: 100%;
       
        z-index: 1000;
        padding: 0.5rem;
        height: var(--header-height);
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--light-gray);
        transition: transform 0.3s ease, opacity 0.3s ease;
        border-radius: 3px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    nav {
        position: relative;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(12, 22, 36, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.show {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--light-gray);
        text-decoration: none;
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: white;
    }

    .nav-links a.active {
        color: white;
        position: relative;
    }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 2px;
        background: var(--light-gray);
    }

    .logo-container {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    /* Hero Section Mobile Adjustments */
    .hero-section {
        min-height: 100vh;
        background-image: url('artwork/HeraSummons.webp');
        background-size: cover;
        background-position: center;
        padding-top: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scroll-section {
        min-height: 100vh;
        padding: 1rem;
        padding-top: var(--header-height);
        position: relative;
    }

    .hero-section .content {
        width: 90%;
        padding: 2rem 1rem;
        margin: 0;
        text-align: center;
        
        border-radius: 15px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        color: var(--light-gray);
    }

    /* Artist Section Mobile Adjustments */
    .artist-section {
        padding: 3rem 1rem;
    }

    .artist-intro {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        padding: 2rem;
    }

    .profile-container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .profile-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        margin: 0 auto;
    }

    .motto-images {
        width: 100%;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .motto-image {
        max-width: 100%;
        height: auto;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .artist-intro {
        padding: 1.5rem;
    }

    .profile-container {
        max-width: 250px;
    }
}

/* Preserve desktop experience */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex !important;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 15px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light-gray);
    position: relative;
    transition: background 0.2s ease-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--light-gray);
    transition: all 0.2s ease-out;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* Active hamburger animation */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation Panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Logo */
.mobile-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* Mobile Navigation Links */
.mobile-nav .nav-links {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav .nav-links a {
    font-size: 1.5rem;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav .nav-links a:hover {
    color: var(--bright-blue);
}

/* Media Queries */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .logo-container {
        transform: scale(0.8);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light-gray);
    position: relative;
    transition: background 0.2s ease-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--light-gray);
    transition: all 0.2s ease-out;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--dark-blue);
    padding: 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.mobile-nav.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Logo visibility control */
.mobile-logo {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-logo {
        display: block;
    }

    .mobile-nav .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .mobile-nav .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }
}

/* Social Media Container */
.social-media {
    padding-top: 10px; /* Reduced padding for mobile */
    display: flex;
    justify-content: center; /* Center-align items */
    gap: 10px; /* Equal spacing between items */
}

/* General Icon Sizing */
.social-link img {
    width: 30px; /* Adjust icon size for smaller screens */
    height: auto; /* Maintain aspect ratio */
    padding: 5px; /* Uniform padding around all icons */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
    opacity: 0.8; /* Slight opacity change */
}

/* Specific Icon Adjustments */
img.bluesky {
    height: 35px; /* Maintain unique size for Bluesky */
}

img.tiktok {
    height: 35px; /* Maintain unique size for TikTok */
}

img.cara,
img.vgen {
    height: 40px; /* Maintain consistent sizes for Cara and VGen */
}

/* Mobile-Specific Adjustments */
@media (max-width: 768px) {
    .social-media {
        flex-wrap: wrap; /* Allow wrapping if needed */
        gap: 8px; /* Adjust spacing for smaller screens */
    }

    .social-link img {
        width: 25px; /* Smaller icons for narrow screens */
        height: auto; /* Maintain aspect ratio */
    }
}

/* Artist Section Video Styles */
.artist-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.artist-video-left, 
.artist-video-right {
    position: absolute;
    width: 260px;
    height: 300px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.artist-video-left {
    left: 5%;
    transform: rotate(-5deg);
}

.artist-video-right {
    right: 5%;
    transform: rotate(5deg);
}

.artist-video-left video, 
.artist-video-right video {
    width: 100%;
    height: 100%;
   
    border-radius: 15px;
   
}

.artist-video-left:hover, 
.artist-video-right:hover {
    opacity: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .artist-video-left, 
    .artist-video-right {
        display: none; /* Hide videos on mobile to prevent layout issues */
    }
}
/* FAQ Styles */
.faq-container {
    margin-top: 2.5rem;
    width: 100%;
}

.faq-container h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bright-blue);
}

.faq-toggle .fa-minus {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1rem;
}

.faq-item.active .faq-toggle .fa-plus {
    display: none;
}

.faq-item.active .faq-toggle .fa-minus {
    display: block;
}

/* Mobile responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
