* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ====================== NAVBAR ====================== */
.nav-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-section h3{
    font-family: Georgia, serif;
}

.nav-section img {
    height: 60px;
    width: auto;
}

navbar {
    display: flex;
    gap: 35px;
}

navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

navbar a:hover {
    color: #fbbf24;
}

navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fbbf24;
    transition: width 0.3s ease;
}

navbar a:hover::after {
    width: 100%;
}

navbar a.blog {
    color: #fbbf24;
}


/* ====================== DESTINATIONS PAGE ====================== */
.destinations-hero {
    height: 50vh;
    min-height: 380px;
    background: url('main/destinations.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 85px;
}

.dest-hero-content h1 {
    font-size: 3.4rem;
}

.destinations-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.category-title {
    font-size: 2.2rem;
    color: #1e2937;
    text-align: center;
    margin: 60px 0 35px 0;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.place-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.place-card:hover {
    transform: translateY(-10px);
}

.place-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.place-info {
    padding: 15px 20px 20px;
    text-align: center;
}

.place-info h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #1e2937;
}

.location {
    display: block;
    color: #22c55e;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.98rem;
}

.location:hover {
    text-decoration: underline;
}

.place-info p {
    color: #475569;
    line-height: 1.55;
    font-size: 0.98rem;
}

/* ====================== FOOTER ====================== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ====================== FLOATING WHATSAPP ====================== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


/* ====================== HAMBURGER MENU ====================== */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-left img {
    height: 55px;
    width: auto;
}

.nav-left h3 {
    color: #4ade80;
    font-size: 1.35rem;
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ====================== COLORFUL ANIMATIONS ====================== */

/* Pop-in + Colorful Animation */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(30px);
    }
    60% {
        transform: scale(1.08) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Reviews Cards - Colorful Pop Animation */
.place-card {
    animation: popIn 0.7s ease forwards;
    opacity: 0;
    border-left: 5px solid #4ade80;
}

.place-card:nth-child(1) { animation-delay: 0.1s; }
.place-card:nth-child(2) { animation-delay: 0.3s; }
.place-card:nth-child(3) { animation-delay: 0.5s; }

.place-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.25);
    border-left-color: #fbbf24;
}

/* ====================== RESPONSIVE DESIGN ====================== */

/* Tablet (Medium Screens) */
@media (max-width: 992px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    navbar {
        gap: 20px;
    }
}

/* Mobile & Small Tablet */
@media (max-width: 768px) {
    
    /* Navbar */
    .nav-section {
        padding: 12px 5%;
        flex-direction: column;
        gap: 12px;
        height: auto;
    }
    
    .nav-left h3 {
        font-size: 1.2rem;
    }
    
    /* Hamburger */
    .hamburger {
        display: flex;
    }
    
    navbar {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 50px;
        gap: 28px;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    navbar.active {
        left: 0;
    }
    
    navbar a {
        font-size: 1.3rem;
    }

    /* Hero */
    .destinations-hero {
        margin-top: 135px;
        height: 45vh;
        min-height: 320px;
    }
    
    .dest-hero-content h1 {
        font-size: 2.6rem;
    }

    /* Destinations Content */
    .destinations-section {
        padding: 70px 5%;
    }
    
    .category-title {
        font-size: 1.9rem;
    }
    
    /* Places Grid */
    .places-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .place-card img {
        height: 200px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 5% 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
}

/* Very Small Mobile Phones */
@media (max-width: 576px) {
    
    .dest-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .place-card img {
        height: 190px;
    }
    
    .place-info h3 {
        font-size: 1.25rem;
    }
    
    .place-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}