:root {
    --primary-rust: #8B4513;
    --primary-terracotta: #CD5C5C;
    --accent-sand: #D2B48C;
    --accent-sunset: #FF8C42;
    --dark-earth: #3E2723;
    --forest-green: #2C5530;
    --cream: #FFF8DC;
    --soft-white: #FAF7F2;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-earth);
    background: var(--soft-white);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--accent-sunset);
    background: rgba(255, 140, 66, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(62, 39, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* Hero Section with Animated Images */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF8C42 0%, #CD5C5C 50%, #8B4513 100%);
    overflow: hidden;
}

/* Hero Images Container */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    z-index: 1;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideUpDown 8s ease-in-out infinite;
}

/* Individual image backgrounds - Replace these URLs with your portrait images */
.hero-image-1 {
    background-image: url(assets/images/DSCN0374.JPG.jpeg);
    animation-delay: 0s;
}

.hero-image-2 {
    background-image: url(assets/images/DSCN6806.JPG.jpeg);
    animation-delay: 2s;
}

.hero-image-3 {
    background-image: url(assets/images/DSCN6830.JPG.jpeg);
    animation-delay: 4s;
}

.hero-image-4 {
    background-image: url(assets/images/DSCN6974.JPG.jpeg);
    animation-delay: 6s;
}

/* Slide up and down animation for images */
@keyframes slideUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1s forwards;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1.5s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-rust);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 2s forwards;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: var(--cream);
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown Banner Section */
.countdown-banner {
    background: white;
    padding: 4rem 2rem;
    border-bottom: 4px solid var(--accent-sunset);
}

.countdown-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.countdown-banner-unit {
    text-align: center;
}

.countdown-banner-value {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-rust);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.countdown-banner-label {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-rust);
    font-family: 'Montserrat', sans-serif;
}

/* Section Styling */
section {
    padding: 6rem 2rem;
    position: relative;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-rust);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-sunset), var(--primary-terracotta));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-rust);
    margin-bottom: 4rem;
    opacity: 0.8;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* About Section */
.about {
    background: var(--cream);
    position: relative;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--accent-sunset);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    line-height: 1;
}

.highlight-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-rust);
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--cream) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-sunset), var(--primary-terracotta));
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.package-card.featured {
    border: 3px solid var(--accent-sunset);
}

.package-badge {
    display: inline-block;
    background: var(--accent-sunset);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.package-name {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-rust);
}

.package-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
}

.price-column h4 {
    font-size: 1.1rem;
    color: var(--primary-rust);
    margin-bottom: 1rem;
    text-align: center;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-earth);
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
    display: block;
}

.package-description {
    color: var(--dark-earth);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.itinerary {
    margin-bottom: 2rem;
}

.itinerary h4 {
    color: var(--primary-rust);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.package-inclusions {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--cream);
}

.package-inclusions h4 {
    color: var(--primary-rust);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.package-features li::before {
    content: '✓';
    color: var(--accent-sunset);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-rust);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
}

.package-button:hover {
    background: var(--primary-terracotta);
    transform: translateY(-2px);
    color: white;
}

/* Gallery Section with Video Support */
.gallery {
    background: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Video Gallery Items */
.gallery-item-video {
    background: none;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Image Gallery Items */
.gallery-item-2 {
    background-image: url(assets/images/DSCN7068\ \(1\).JPG.jpeg);
}

.gallery-item-3 {
    background-image: url(assets/images/4K1A9656\ \(1\).jpg.jpeg);
}

.gallery-item-4 {
    background-image: url(assets/images/DSCN7069.JPG.jpeg);
}

.gallery-item-5 {
    background-image: url(assets/images/DSCN7086.JPG.jpeg);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
    z-index: 1;
    transition: all 0.4s ease;
}

.gallery-item:hover::before {
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-sunset);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    line-height: 1;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-rust);
}

.contact-details p {
    color: var(--dark-earth);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-rust);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background: var(--accent-sunset);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-rust);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-rust);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: var(--accent-sunset);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--dark-earth);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-sunset);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-sunset);
    padding-left: 5px;
}

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

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--accent-sunset);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}


/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .package-card.featured {
        transform: scale(1);
    }

    .countdown-banner-value {
        font-size: 6.5rem;
    }

    .countdown-banner-label {
        font-size: 1.5rem;
    }

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

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        min-height: 600px;
    }

    .countdown-banner {
        padding: 3rem 1.5rem;
    }

    .countdown-banner-container {
        gap: 1.5rem;
    }

    .countdown-banner-value {
        font-size: 4.5rem;
    }

    .countdown-banner-label {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

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

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .package-price-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .countdown-banner {
        padding: 2.5rem 1rem;
    }

    .countdown-banner-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .countdown-banner-value {
        font-size: 3.2rem;
    }

    .countdown-banner-label {
        font-size: 0.85rem;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .package-price {
        font-size: 1.5rem;
    }

    .countdown-banner {
        padding: 2rem 0.75rem;
    }

    .countdown-banner-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .countdown-banner-value {
        font-size: 2.5rem;
    }

    .countdown-banner-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .countdown-banner {
        padding: 1.5rem 0.5rem;
    }

    .countdown-banner-container {
        gap: 0.75rem;
    }

    .countdown-banner-value {
        font-size: 2rem;
    }

    .countdown-banner-label {
        font-size: 0.6rem;
    }
}