/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    
    /* Background image approach - more adaptive */
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Remove the img tag approach */
.hero-image {
    display: none;
}

/* Session Info Box */
.session-info {
    position: absolute;
    bottom: 80px;
    left: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    z-index: 10;
    max-width: 400px;
}

.session-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.session-info .date {
    font-size: 18px;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.session-info p {
    margin-bottom: 8px;
}

/* Content Sections */
.content-section, .page-content {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.content-section h1, .content-section h2, .page-content h1, .page-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #333;
    margin-bottom: 30px;
}

.content-section h1, .page-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.content-section h2, .page-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
}

.page-content p, .page-content li {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.info-block:last-child {
    border-bottom: none;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.testimonial blockquote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.testimonial cite {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .session-info {
        left: 20px;
        right: 20px;
        bottom: 40px;
        padding: 20px;
    }
    
    .content-section {
        padding: 60px 20px;
    }
}
/* Hide mobile elements by default (desktop) */
.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Only show mobile elements on mobile */
@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    nav .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
}
/* Update your existing .hero CSS to this: */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    
    /* Desktop image */
    background-image: url('images/hero-image_deskop.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Mobile image swap */
@media (max-width: 768px) {
    .hero {
        background-image: url('images/hero-image_mobile.jpg');
        background-attachment: scroll; /* Better performance on mobile */
        background-position: center center;
    }
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 100; /* Make sure this is high */
    padding: 15px 20px;
}

.hamburger {
    z-index: 101; /* Higher than nav */
}

.mobile-menu {
    z-index: 99; /* High but below hamburger */
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: white; /* Ensure it's white */
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block; /* Make sure spans show */
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px; /* Below the nav bar */
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    z-index: 99;
    padding: 20px 0;
}

.mobile-menu.active {
    display: block; /* This makes it show when hamburger is clicked */
}

.mobile-menu ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
    list-style: none;
}

.mobile-menu a {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: center;
    display: block;
    color: white;
    text-decoration: none;
}