/* CSS Variables */
:root {
    --color-primary: #2c5530;
    --color-primary-dark: #1a3a1d;
    --color-secondary: #c9a962;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f6f3;
    --color-border: #e0dcd5;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #126182;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: #126182;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

body:not(.page-home) .btn-primary {
    background: #126182;
}

body:not(.page-home) .btn-primary:hover {
    background: #0e4f6a;
}

.page-home .experience-info .btn-primary {
    background: #126182;
}

.page-home .experience-info .btn-primary:hover {
    background: #0e4f6a;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #126182;
}

.btn-nav {
    display: inline-block;
    background: #126182;
    color: #fff !important;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-nav:hover {
    background: #0e4f6a;
    color: #fff !important;
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: #126182 !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a.btn-nav,
.nav-menu a.btn-nav:hover {
    color: #fff !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #126182;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #126182;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: #f5f0e8;
    padding: 100px 40px 40px;
}

.hero-image-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    display: block;
    max-height: 80vh;
    object-fit: cover;
}

.hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 60px;
    text-align: center;
    border-radius: 12px;
    max-width: 90%;
}

.hero .hero-content h1 {
    font-size: 2.5rem;
    color: #126182;
    margin-bottom: 15px;
}

.hero .hero-content .hero-subtitle {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background: var(--color-bg);
}

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

.highlight-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.highlight-card a {
    font-weight: 600;
    font-size: 0.9rem;
    color: #126182;
}

/* Experience Tabs Section */
.experiences {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.experiences h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.experience-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 28px;
    background: #126182;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: #0e4f6a;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.experience-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-info {
    padding: 40px;
}

.experience-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.experience-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.experience-info li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-text-light);
}

.experience-info li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #126182;
    font-weight: bold;
}

.experience-info p {
    margin-bottom: 15px;
    color: var(--color-text-light);
}

/* SEO Content Section */
.seo-content {
    padding: 60px 0;
    background: var(--color-bg);
}

.seo-details {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-alt);
}

.seo-details summary {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.seo-details summary::-webkit-details-marker {
    display: none;
}

.seo-details summary h2 {
    font-size: 1.5rem;
    margin: 0;
}

.toggle-text {
    color: #126182;
    font-weight: 500;
    font-size: 0.95rem;
}

.seo-details[open] .toggle-text {
    display: none;
}

.seo-text {
    padding: 0 30px 30px;
}

.seo-text h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #126182;
}

.seo-text h4 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.seo-text p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #126182;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255,255,255,0.8);
}

.footer a:hover {
    color: #fff;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: background var(--transition);
    color: #126182;
}

.footer .social-links a {
    color: #fff;
}

.social-links a:hover {
    background: #0e4f6a;
    color: #fff;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Header (for inner pages) */
.page-header {
    background: #fff;
    padding: 140px 20px 80px;
    text-align: center;
    color: #000;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #126182;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #000;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-img {
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: var(--color-bg-alt);
}

.login-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.login-card h1 {
    text-align: center;
    margin-bottom: 10px;
}

.login-card .subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.login-card .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.05rem;
}

.login-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #126182;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-answer {
    padding-bottom: 20px;
    color: var(--color-text-light);
}

/* Rewards Dashboard */
.dashboard-header {
    background: var(--color-primary);
    color: #fff;
    padding: 30px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.rewards-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.points-display {
    text-align: center;
    padding: 20px;
}

.points-number {
    font-size: 3rem;
    font-weight: 700;
    color: #126182;
}

.reservations-list {
    padding: 20px;
}

.reservation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--color-border);
}

.reservation-item:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 992px) {
    .experience-card {
        grid-template-columns: 1fr;
    }

    .experience-card img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-menu a {
        color: #126182 !important;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .highlights,
    .experiences,
    .content-section {
        padding: 60px 0;
    }

    .experience-tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .login-card {
        padding: 30px 25px;
    }
}
