* {
    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);
    height: 90px;
}

.nav-section img {
    height: 60px;
    width: auto;
}

.nav-section h3{
    color: green;
    font-family: Georgia, serif;
}

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.home {
    color: #fbbf24;
}

/* ====================== HERO BANNER ====================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('main/banner.jpg') center/cover no-repeat;
    margin-top: 90px; 
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.55rem;
    margin-bottom: 2.8rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-5px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5c;
    transform: translateY(-5px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.check {
    color: #4ade80;
    font-size: 1.4rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}

.scroll-text {
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 500;
}

.scroll-icon {
    width: 26px;
    height: 42px;
    border: 2.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 14px;
    background: white;
    border-radius: 3px;
    animation: bounce 2s infinite;
}

.places-section {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.places-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.place-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.place-card:hover {
    transform: translateY(-5px);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-card h3 {
    margin: 15px 0;
}

.place-card p {
    padding: 0 15px 15px;
    color: #555;
}

.featured {
    min-height: 380px;
}

.booking-btn {
    margin-top: 40px;
}

.booking-btn a {
    background: #25D366;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
}

.booking-btn a:hover {
    background: #1ebc59;
}

/* ====================== PLACES SECTION ====================== */
.places-section {
    padding: 100px 5%;
    background: #f8fafc;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: #1e2937;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.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);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.place-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.place-info {
    padding: 18px 20px;
    text-align: center;
}

.place-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e2937;
}

.place-info p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Booking Button */
.booking-button-container {
    text-align: center;
    margin-top: 80px;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    padding: 18px 40px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background-color: #20ba5c;
    transform: scale(1.05);
}


/* Calendar section */
.calendar-section {
    padding: 100px 5%;
    background: #f1f5f9;
}

#calendar {
    max-width: 700px;
    margin: 0 auto;
}

.month {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.month h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e2937;
    font-size: 1.8rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.day-header {
    font-weight: bold;
    padding: 12px 5px;
    background: #e2e8f0;
    border-radius: 8px;
    font-size: 1.05rem;
}

.date {
    padding: 18px 10px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
}

.available { 
    background: #86efac; 
    color: #14532d; 
}

.booked { 
    background: #f87171; 
    color: white; 
}


/* ====================== REVIEWS SECTION ====================== */
.reviews-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card p {
    font-style: italic;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card strong {
    color: #166534;
    display: block;
    text-align: right;
}


/* ====================== 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;
}

/* Mobile Menu Styles */
.nav-links {
    display: flex;
    gap: 25px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 50px;
        gap: 25px;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    navbar a {
        font-size: 1.3rem;
    }
}

/* 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;
}

/* Reviews Cards - Colorful Pop Animation */
.review-card {
    animation: popIn 0.7s ease forwards;
    opacity: 0;
    border-left: 5px solid #4ade80;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.3s; }
.review-card:nth-child(3) { animation-delay: 0.5s; }

.review-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.25);
    border-left-color: #fbbf24;
}

/* Calendar - Colorful Bounce */
.month {
    animation: popIn 0.8s ease forwards;
    opacity: 0;
}

.date {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.date:hover {
    transform: scale(1.25) rotate(8deg);
    background: linear-gradient(135deg, #4ade80, #22c55e) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.4);
}

.available {
    animation: softPulse 3s infinite;
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
}



/* ====================== RESPONSIVE DESIGN ====================== */

/* Medium Screens (Tablet) */
@media (max-width: 992px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    navbar {
        gap: 20px;
    }
}

/* Large Mobile / Small Tablet */
@media (max-width: 768px) {
    
    /* Navbar */
    .nav-section {
        padding: 12px 5%;
        flex-direction: column;
        gap: 15px;
        height: auto;
    }
    
    .nav-left h3 {
        font-size: 1.2rem;
    }
    
    /* Hero */
    .hero-section {
        margin-top: 135px;
        min-height: 520px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    /* Places Section */
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .place-card img {
        height: 200px;
    }
}

/* Small Mobile Phones */
@media (max-width: 576px) {
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .section-header h2 {
        font-size: 2.1rem;
    }
    
    .place-card img {
        height: 190px;
    }
    
    .calendar-grid {
        gap: 6px;
    }
    
    .date {
        padding: 14px 6px;
        font-size: 1.05rem;
    }
}

/* Hamburger Menu  */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        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: 60px;
        gap: 30px;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
}

@keyframes bounce {
    0%, 20% { 
        transform: translate(-50%, 0); 
    }
    50% { 
        transform: translate(-50%, 15px); 
    }
    80%, 100% { 
        transform: translate(-50%, 0); 
    }
}

@media (max-width: 576px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}
























