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

:root {
    --primary-color: #367927;
    --accent-color: #367927;
    /* --sage-green: #87A96B; */
    --sage-green: #75b82a;
    --beige: #E8DCC4;
    --light-beige: #F5EFE6;
    --warm-beige: #dad2ca;
    --text-dark: #2C3E2F;
    --text-light: #5A6C5D;
    --bg-light: #FAF8F3;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.12);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
   
    max-width: clamp(90px, calc(5.625rem + 14.7321vw - 47.14272px), 200px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--accent-color) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    line-height: 1.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.intro-section {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
    border-left: 8px solid var(--sage-green);
    position: relative;
}

.intro-section::before {
    content: '🌿';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: var(--white);
    padding: 0 15px;
}

.intro-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.intro-title em {
    font-style: italic;
    color: var(--sage-green);
}

.intro-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro-content p {
    margin-bottom: 1.8rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.intro-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.intro-closing {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-beige) 0%, rgba(117, 184, 42, 0.1) 100%);
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid var(--warm-beige);
}

.intro-closing em {
    font-style: italic;
    color: var(--primary-color);
}

/* Location Card */
.location-card {
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
    border: 2px solid var(--warm-beige);
    position: relative;
}

.location-card::before {
    content: '📍';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: var(--bg-light);
    padding: 0 15px;
}

.location-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--sage-green) 0%, var(--accent-color) 100%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.timeline-content {
    width: 45%;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--beige);
}

.timeline-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.timeline-item:nth-child(even) .timeline-content:first-child {
    margin-left: auto;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--light-beige);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Interview Questions */
.interview-section {
    background: var(--light-beige);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.interview-section h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.3;
}

.interview-section .icon {
    min-width: 35px;
    height: 35px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.question-list {
    display: grid;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.question-list li {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--sage-green);
    transition: all 0.3s ease;
}

.question-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-left-color: var(--accent-color);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--sage-green);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-beige) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tip-card:hover::before {
    opacity: 0.3;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.tip-card p, .tip-card ul {
    position: relative;
    z-index: 1;
}

.tip-card ul {
    list-style: none;
    padding-left: 0;
}

.tip-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Survey Links */
.survey-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.survey-card {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--accent-color) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.survey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.5s ease;
}

.survey-card:hover::before {
    left: 100%;
}

.survey-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(122, 142, 111, 0.3);
}

.survey-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.survey-btn {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.survey-btn:hover {
    background: var(--light-beige);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
    background: var(--light-beige);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 95, 78, 0.9) 0%, transparent 100%);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item[onclick] {
    cursor: pointer;
}

/* Next Steps */
.next-steps {
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--white) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    border: 2px solid var(--warm-beige);
}

.next-steps h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    /* background: linear-gradient(135deg, var(--sage-green), var(--accent-color)); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 80px;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-icon {
        left: 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}


/* Interview Pages */
.interview-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Interview Navigation */
.interview-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
}

.nav-btn {
    flex: 1;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--beige);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.nav-btn:hover:not(.disabled) {
    background: var(--light-beige);
    border-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: var(--text-light);
}

.nav-btn.prev-btn {
    text-align: left;
}

.nav-btn.next-btn {
    text-align: right;
    flex-direction: row-reverse;
}

.nav-arrow {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--sage-green);
    min-width: 20px;
}

.nav-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.nav-text small {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 500;
}

.nav-text span {
    font-weight: 500;
    line-height: 1.2;
}

.back-button-center {
    background: var(--sage-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.back-button-center:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.interview-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-beige);
    border-radius: 20px;
}

.interview-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.interview-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.interview-meta {
    color: var(--text-dark);
    font-weight: 500;
}

.photos-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.photo-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: scale(1.02);
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
}

.interview-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border-left: 6px solid var(--sage-green);
}
.interview-content h2 {
    font-size: 2rem;
}
.section-header {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    min-width: 40px;
    height: 40px;
    background: var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.question {
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.1rem;
}

.answer {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.back-button {
    display: inline-block;
    background: var(--sage-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 2rem 0;
}

.back-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.highlight {
    background: linear-gradient(135deg, var(--light-beige) 0%, rgba(117, 184, 42, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--sage-green);
    margin: 1.5rem 0;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .intro-section {
        padding: 4rem 1.5rem;
    }
    .interview-section {
        padding: 1.5rem;
    }
    .interview-header {
        padding: 1.5rem;
    }
    .interview-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .interview-container {
        padding: 1rem;
    }
    .interview-content {
        padding: 1.5rem;
    }
    .interview-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .interview-navigation {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .nav-btn {
        max-width: none;
        width: 100%;
    }

    .back-button-center {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .nav-text span {
        font-size: 0.9rem;
    }
}