:root {
    --desert-sand: #D4A574;
    --burnt-sienna: #C65D3B;
    --terracotta: #A0522D;
    --deep-canyon: #2C1810;
    --twilight: #1B2838;
    --cream: #FAF6F1;
    --gold-accent: #D4AF37;
    --warm-shadow: rgba(198, 93, 59, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--deep-canyon);
    overflow-x: hidden;
}



/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(74, 74, 74, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

nav.scrolled .logo {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

nav.scrolled .nav-links a {
    text-shadow: none;
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--burnt-sienna);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--desert-sand);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 40, 56, 0.7), rgba(44, 24, 16, 0.6)),
                url('../images/slide02.jpg') center/cover;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--desert-sand);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1.3rem 3rem;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--burnt-sienna);
    color: white;
    border: 2px solid var(--burnt-sienna);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--terracotta);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 0;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary span, .btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--warm-shadow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--deep-canyon);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Features Section */
.features {
    padding: 8rem 5%;
    background: var(--cream);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burnt-sienna);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-canyon);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(44, 24, 16, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.5s ease;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(198, 93, 59, 0.2);
}

.feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.15);
}

.feature-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
}

.feature-content {
    padding: 2.5rem;
}

.feature-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--deep-canyon);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-content p {
    color: rgba(44, 24, 16, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--burnt-sienna);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.feature-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s;
}

.feature-link:hover::after {
    margin-left: 1rem;
}

/* Destinations Showcase */
.destinations-showcase {
    padding: 8rem 5%;
    background: var(--twilight);
    color: white;
}

.destinations-showcase .section-label {
    color: var(--desert-sand);
}

.destinations-showcase .section-title {
    color: white;
}

.destinations-showcase .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.destination-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.destination-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.2);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(198, 93, 59, 0.95), rgba(198, 93, 59, 0.7));
}

.destination-overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.destination-overlay p {
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-weight: 300;
}

.destination-card:hover .destination-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    padding: 10rem 5%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(198, 93, 59, 0.1)),
                url('../images/web-img.webp') center/cover fixed;
    text-align: center;
    position: relative;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 40, 56, 0.8);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: var(--deep-canyon);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--desert-sand);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--desert-sand);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--desert-sand);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        height: 45px;
    }
    
    nav.scrolled .logo {
        height: 35px;
    }
}