/* --- RESET & FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Verdana', sans-serif; /* Different font from Home to show variety */
}

body {
    background-color: rgba(220, 140, 100, 0.2);
    color: #333;
}

/* --- NAVIGATION (Keep Consistent) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.6);
}

.logo { 
    font-size: 1.5rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: white;
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 20px; 
}

.nav-links a { 
    text-decoration: none; 
    color: white; 
    transition: all 0.3s;
    font-weight: 500;
}

.nav-links a:hover, .active { 
    color: #00d2ff;
    transform: translateY(-2px);
}

/* --- PAGE HEADER --- */
.page-header {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    margin-bottom: 40px;
}

.page-header h1 { font-size: 2.5rem; color: #2c3e50; }
.page-header p { color: #7f8c8d; margin-top: 10px; }

/* --- ZIG-ZAG LAYOUT --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.destination-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden; /* Ensures image stays inside corners */
}

.destination-row img {
    width: 50%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Hover Effect: Image Zoom */
.destination-row:hover img {
    transform: scale(1.05);
}

.text-content {
    padding: 40px;
    width: 50%;
}

.text-content h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.8rem;
}

.text-content p {
    line-height: 1.8;
    color: #555;
}

/* --- THE REVERSE TRICK (Zig-Zag) --- */
.reverse {
    flex-direction: row-reverse; /* Swaps Image and Text positions */
    background: #2c3e50; /* Dark background for variety */
    color: white;
}

.reverse .text-content h2 { color: #00d2ff; }
.reverse .text-content p { color: #ecf0f1; }

/* --- SLIDE ANIMATIONS --- */
.slide-left {
    animation: slideInLeft 1s ease-out;
}

.slide-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- FOOTER --- */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .destination-row, .reverse {
        flex-direction: column; /* Stack them on mobile */
    }
    .destination-row img {
        width: 100%;
        height: 250px;
    }
    .text-content {
        width: 100%;
    }
}