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

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --navy: #0A1628;
    --charcoal: #2C3E50;
    --white: #FFFFFF;
    --cream: #FAF9F6;
    --gray: #95A5A6;
    --accent: #8B7355;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 22, 40, 0.6), rgba(10, 22, 40, 0.6)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230A1628;stop-opacity:1" /><stop offset="100%" style="stop-color:%232C3E50;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad1)" width="1200" height="800"/><path d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23D4AF37" opacity="0.1"/><circle cx="900" cy="150" r="80" fill="%23D4AF37" opacity="0.05"/><circle cx="300" cy="600" r="120" fill="%23D4AF37" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    padding: 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 15px;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--cream);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Common Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    color: var(--charcoal);
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--navy);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray);
}

/* Experiences Section */
.experiences {
    padding: 8rem 0;
    background: var(--white);
}

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

.experience-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.experience-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.luxury-yacht {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.safari {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.alpine {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.culinary {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.experience-content {
    padding: 2rem;
}

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

.experience-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--dark-gold);
}

/* Destinations Section */
.destinations {
    padding: 8rem 0;
    background: var(--navy);
    color: var(--white);
}

.destinations .section-header h2,
.destinations .section-subtitle {
    color: var(--white);
}

.destination-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.destination-card {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.3), rgba(10, 22, 40, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.8));
}

.destination-overlay h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Testimonial Section */
.testimonial {
    padding: 6rem 0;
    background: var(--cream);
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--navy);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.testimonial cite {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: normal;
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-details {
    background: var(--cream);
    padding: 2rem;
    border-left: 4px solid var(--gold);
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 2;
}

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

.footer-social p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 10px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .destination-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

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

    .hero-tagline {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

    .destination-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }

    .destination-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial blockquote {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}
