:root {
  --primary: #0A0F0C;           /* Deep forest green */
  --accent: #B5C48C;           /* Soft olive gold */
  --background: #B5C48C;       /* Dark olive green */
  --contrast: #90EE90;         /* Light green for buttons/icons */
  --text: #E1EAD2;             /* Muted warm white with better contrast */
  --light-accent: #A2D729;     /* Lime green highlight */
  --dark-accent: #bdf7b5;      /* Deep olive tone */
}


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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary);
}

section {
    padding: 6rem 2rem;
}

/* Navigation */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-family: 'Cinzel', serif;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--light-accent);
}

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

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

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

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

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

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.pexels.com/photos/260922/pexels-photo-260922.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background);
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--background);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Destinations Section */
.destinations-section {
    background-color: var(--primary);
    color: var(--background);
    position: relative;
}

.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.destinations-section h2 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.destinations-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-front {
    background-color: var(--primary);
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-front h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--background);
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.card-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-back {
    background-color: var(--accent);
    color: var(--primary);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
}

.destination-card:hover .card-front {
    transform: rotateY(180deg);
}

.destination-card:hover .card-back {
    transform: rotateY(360deg);
}

/* Vault Section */
.vault-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                url('https://images.pexels.com/photos/1871508/pexels-photo-1871508.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--background);
    text-align: center;
    position: relative;
}

.vault-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.8));
}

.vault-section h2 {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
}

.vault-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Suites Section */
.suites-section {
    background-color: var(--background);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.suites-section h2 {
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.suite-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary);
    color: var(--background);
    text-align: center;
    position: relative;
}

.reviews-section h2 {
    color: var(--accent);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.review-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.review-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.review-card p::before,
.review-card p::after {
    content: '"';
    color: var(--accent);
    font-size: 2rem;
    position: absolute;
}

.review-card p::before {
    left: -20px;
    top: -10px;
}

.review-card p::after {
    right: -20px;
    bottom: -10px;
}

.review-card cite {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-top: 1rem;
}

/* Invitation Section */
.invitation-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.pexels.com/photos/3225531/pexels-photo-3225531.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--background);
    text-align: center;
    position: relative;
}

.invitation-section h2 {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.privilege-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact Page */
.contact-page {
    padding: 8rem 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-page h1 {
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Elements */
input,
textarea {
    padding: 1rem;
    border: 2px solid var(--contrast);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    background-color: var(--background);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--background);
    padding: 4rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--background);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.footer-copyright {
    color: var(--contrast);
}

/* Policy Pages */
.policy-page {
    padding: 8rem 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.policy-page h1 {
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.policy-content {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color:rgb(2, 34, 12);
}

.policy-content h2 {
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--dark-accent);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    section {
        padding: 4rem 1rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .policy-content {
        padding: 1.5rem;
    }
}