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

:root {
    --primary-color: #bd9865;
    --primary-dark: #8b6f47;
    --secondary-color: #6b8e23;
    --accent-green: #4a7c59;
    --dark-navy: #112935;
    --text-dark: #04161e;
    --cream: #f5f1e8;
    --white: #ffffff;
    --brown: #6f4e37;
}

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('492063816.jpg') center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 41, 53, 0.7) 0%, rgba(75, 124, 89, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.main-title i {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--cream);
}

/* Countdown */
.countdown-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 120px;
}

.countdown-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.trip-date {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Route Section */
.route {
    background: url('nj.jpg') center/cover;
    background-attachment: fixed;
    position: relative;
}

.route::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.route-info {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.route-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.location-point {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--white);
}

.location-point.start {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-green) 100%);
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.4);
}

.location-point.end {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 30px rgba(189, 152, 101, 0.4);
}

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

.location-details p {
    color: var(--brown);
    margin: 0.3rem 0;
}

.route-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.route-line {
    width: 4px;
    height: 200px;
    background: rgba(189, 152, 101, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.route-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    animation: fillRoute 3s ease-in-out infinite;
}

@keyframes fillRoute {
    0%, 100% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
}

.route-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    padding: 1rem;
    border-radius: 10px;
    min-width: 150px;
    border: 2px solid var(--primary-color);
}

.stat i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--brown);
    font-weight: 600;
}

.map-container {
    margin: 3rem auto 0;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-color);
}

.map-container iframe {
    display: block;
    height: 400px;
}

/* Hotel Section */
.hotel {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.05) 0%, rgba(189, 152, 101, 0.05) 100%);
}

.hotel-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hotel-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(107, 142, 35, 0.2);
    border-color: var(--secondary-color);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-navy);
    font-weight: 700;
}

.highlight-card p {
    color: var(--brown);
    font-weight: 400;
}

/* Activities Section */
.activities {
    background: url('av.jpg') center/cover;
    background-attachment: fixed;
    position: relative;
}

.activities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

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

.activity-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 152, 101, 0.2);
    border-color: var(--secondary-color);
}

.activity-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-navy);
    font-weight: 700;
}

.activity-card p {
    color: var(--brown);
    line-height: 1.6;
}

/* Nature Background Effects */
.nature-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.route,
.activities {
    position: relative;
    overflow: hidden;
}

.leaves-container,
.clouds-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Animated Leaves */
.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: 110%;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Floating Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    opacity: 0.5;
    animation: float linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
}

.cloud::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

@keyframes float {
    0% {
        left: -200px;
    }
    100% {
        left: 100%;
    }
}

/* Birds */
.bird {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: fly linear infinite;
}

@keyframes fly {
    0% {
        left: -50px;
        top: 20%;
    }
    100% {
        left: 100%;
        top: 30%;
    }
}

/* Ensure content is above background */
.container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hotel-highlights,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

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

    .route-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .route-middle {
        order: 2;
    }

    .route-line {
        width: 200px;
        height: 4px;
    }

    .route-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat {
        min-width: 120px;
    }

    .countdown-container {
        padding: 2rem 1rem;
    }

    .hotel-highlights,
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card,
    .activity-card {
        padding: 2rem 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.6rem;
    }

    .main-title i {
        display: block;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .countdown-container {
        padding: 1.5rem 0.8rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 60px;
    }

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

    .trip-date {
        font-size: 1.1rem;
    }

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

    .route-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .location-point {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .location-details h3 {
        font-size: 1.2rem;
    }

    .location-details p {
        font-size: 0.9rem;
    }

    .route-line {
        width: 150px;
    }

    .stat {
        min-width: 100px;
        padding: 0.8rem;
    }

    .stat i {
        font-size: 1.2rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .highlight-card,
    .activity-card {
        padding: 1.5rem 1rem;
    }

    .highlight-icon,
    .activity-card i {
        font-size: 2.5rem;
    }

    .highlight-card h3,
    .activity-card h3 {
        font-size: 1.2rem;
    }

    .hotel-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .scroll-indicator {
        font-size: 1.5rem;
        bottom: 20px;
    }

    .leaf {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 360px) {
    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .main-title {
        font-size: 1.4rem;
    }
}

/* Natural Elements */
section:nth-child(even) {
    position: relative;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 15c0-8.284-6.716-15-15-15C6.716 0 0 6.716 0 15c0 8.284 6.716 15 15 15 8.284 0 15-6.716 15-15zm0 30c0-8.284-6.716-15-15-15C6.716 30 0 36.716 0 45c0 8.284 6.716 15 15 15 8.284 0 15-6.716 15-15z' fill='%23bd9865' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}
