/* ----------------------------------------------------
   IMPORT FONTS
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');
/* ----------------------------------------------------
   COLOR PALETTE
---------------------------------------------------- */
:root {
    --sand: #CBBD93;
    --cream: #FAE8B4;
    --olive: #80775C;
    --earth: #574A24;
    --white: #ffffff;
    --black: #1a1a1a;
    --gold1: #C9A44A;
    --gold2: #F7E7A9;
}

/* ----------------------------------------------------
   GLOBAL
---------------------------------------------------- */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* upgraded */
    background: var(--cream);
    color: var(--earth);
    transition: 0.4s;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif; /* premium heading font */
    margin: 0;
    letter-spacing: 1px;
}

/* ----------------------------------------------------
   STICKY BOOK NOW BUTTON
---------------------------------------------------- */
.book-now-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--earth);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    font-weight: 600;
    z-index: 999;
}

/* ----------------------------------------------------
   NAVBAR (SHORT VERSION)
---------------------------------------------------- */
/* ----------------------------------------------------
   NAVBAR (UPDATED TO WHITE)
---------------------------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px; /* Padding konjam increase panna look nalla irukkum */
    background: #ffffff; /* Cream-ku bathila ippo White */
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* White background-la light shadow nalla irukkum */
}

.logo-text {
    font-size: 30px;
    margin-left: 6px;
    font-weight: 600;
    color: var(--earth); /* Text blackish color-la irundha dhaan white background-la theriyum */
}

.logo-img {
    height: 45px;
}
/* 
.logo-text {
    font-size: 30px;
    margin-left: 6px;
    font-weight: 500;
} */

.nav-links {
    list-style: none;
    display: flex;
    gap: 16px;
}

.nav-links a {
    text-decoration: none;
    color: var(--earth);
    font-weight: 500;
    font-size: 13px;
    padding: 4px 0;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--earth);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mode-toggle {
    padding: 4px 8px;
    font-size: 14px;
    border: none;
    background: var(--earth);
    color: var(--cream);
    border-radius: 6px;
    cursor: pointer;
}
.more-images {
    display: none;
}

.view-more-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto; /* center */
    text-align: center;
}

/* ----------------------------------------------------
   HERO SECTION (FIXED)
---------------------------------------------------- */
.hero {
    height: 95vh;
    position: relative;
    display: flex;
    justify-content: center;     /* center horizontally */
    align-items: flex-start;     /* move to top */
    padding-top: 20px;           /* VERY small top gap */
    text-align: center;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;

    background:
        linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)), /* very light overlay */
        url('lakeview/ChatGPT Image May 5, 2026, 02_32_03 PM.png') top center/cover no-repeat;

    background-position: top center;  
    background-size: cover;          
    filter: none;                    
    z-index: 1;
}



.hero-text {
    position: relative;
    z-index: 3;
    padding: 12px 28px;
    background: rgba(0, 0, 0, 0.15); /* very light glass */
    backdrop-filter: blur(2px);
    border-radius: 8px;
    display: inline-block;
}



/* HERO TEXT GOLD + GLOW */
.hero-text h1 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

.hero-text p {
    font-size: 15px;
    color: #fff3d1;
    margin-top: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}


.hero-text p {
    animation: fadeSlide 1.6s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ----------------------------------------------------
   SECTIONS
---------------------------------------------------- */
.section {
    padding: 80px 10%;
    text-align: center;
}

/* ----------------------------------------------------
   GOLD DIVIDER
---------------------------------------------------- */
.gold-divider {
    width: 180px;
    height: 4px;
    margin: 30px auto;
    background: linear-gradient(to right, var(--gold1), var(--gold2), var(--gold1));
    border-radius: 2px;
}

/* ----------------------------------------------------
   MAP CONTAINER
---------------------------------------------------- */
.map-container {
    margin-top: 20px;
    border: 6px solid transparent;
    border-image: linear-gradient(to right, var(--gold1), var(--gold2), var(--gold1)) 1;
    border-radius: 12px;
    overflow: hidden;
}

/* ----------------------------------------------------
   GALLERY GRID
---------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ----------------------------------------------------
   LIGHTBOX FULLSCREEN VIEWER
---------------------------------------------------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.lightbox img {
    /* max-width: 30%;     */
    /* max-height: 30%;   */
    width: auto;
    height: auto;
    object-fit: contain; /* full image visible */
    image-rendering: high-quality; /* blur remove */
    border-radius: 12px;
    display: block;
    margin: auto;
}


.lightbox img {
    display: block;
    margin: auto;
}
@media (max-width: 768px) {
    .lightbox img {
        max-width: 95%;
        max-height: 80%;
    }
}
/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Arrows */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.prev-btn:hover, .next-btn:hover {
    color: var(--gold2);
}

/* ----------------------------------------------------
   CONTACT FORM
---------------------------------------------------- */
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--olive);
    background: var(--sand);
}

/* ----------------------------------------------------
   BUTTONS
---------------------------------------------------- */
.btn {
    padding: 14px 30px;
    background: var(--earth);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* ----------------------------------------------------
   WHATSAPP BUTTON
---------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 14px 18px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
    background: var(--earth);
    color: var(--cream);
    padding: 25px;
    text-align: center;
}

/* ----------------------------------------------------
   SCROLL ANIMATIONS
---------------------------------------------------- */
.scroll-fade, .scroll-up, .scroll-zoom {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s;
}

.scroll-zoom {
    transform: scale(0.95);
}

.scroll-visible {
    opacity: 1;
    transform: none;
}

/* ----------------------------------------------------
   DARK MODE
---------------------------------------------------- */
body.dark {
    background: #1c1c1c;
    color: #f1f1f1;
}

body.dark .navbar {
    background: #2a2a2a;
}

body.dark footer {
    background: #000;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:20px;
    align-items:start;
}

.gallery-img,
.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    display:block;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    transition:0.3s;
}

.gallery-img:hover,
.gallery-grid img:hover{
    transform:scale(1.03);
}
.gallery-floral-border {
    padding: 25px;
    border: 6px solid transparent;
    border-image: linear-gradient(to right, var(--gold1), var(--gold2), var(--gold1)) 1;
    border-radius: 12px;
    background: var(--cream);
    margin-top: 20px;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    text-align: left;
}

.about-grid ul {
    list-style: none;
    padding: 0;
}

.about-grid li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--earth);
    position: relative;
    padding-left: 22px;
}

/* Premium gold bullet */
.about-grid li::before {
    /* content: "◆"; diamond bullet */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: var(--gold1);
    font-weight: 700;
}
.booking-form {
    background: var(--sand);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 4px solid var(--gold1);
}

.booking-form h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--earth);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
}

.booking-grid input,
.booking-grid select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--olive);
    background: var(--cream);
    font-size: 15px;
}

.whatsapp-check {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 15px;
}

.whatsapp-check input {
    margin-right: 8px;
}

.availability-btn {
    width: 100%;
    background: #c0392b;
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-btn, .next-btn, .prev-btn {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

.close-btn { top: 20px; right: 30px; }
.next-btn { right: 20px; }
.prev-btn { left: 20px; }
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e; /* Darker green on hover */
}

/* OTHER VENUES STYLING */
.other-venues-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px dashed var(--gold1);
}

.other-venues-container h3 {
    font-size: 24px;
    color: var(--earth);
    margin-bottom: 10px;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.venue-footer-card {
    background: #fdfbf5;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(201, 164, 74, 0.1);
    transition: 0.3s;
    text-align: center;
}

.venue-footer-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--gold1);
}

.venue-footer-card h4 {
    color: var(--gold1);
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.venue-footer-card p {
    font-size: 14px;
    color: var(--olive);
    margin-bottom: 5px;
    line-height: 1.4;
}

.venue-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.venue-links a {
    color: var(--earth);
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.venue-links a:hover {
    color: var(--gold1);
}

/* Bullet Fix for Double Bullets */
.about-grid ul {
    list-style: none !important;
    padding: 0;
}

.about-grid li {
    list-style-type: none !important;
}

/* ====================================================
   EVENTS SECTION - CENTER ALIGNED & NO BULLETS
   ==================================================== */

.events-premium-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center cards horizontally */
    gap: 50px;
    margin-top: 50px;
}

.event-card-premium {
    display: flex;
    flex-direction: column; /* Stack image on top of text */
    align-items: center;    /* Center content internally */
    text-align: center;     /* Center all text */
    max-width: 850px;       /* Premium width */
    width: 100%;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(201, 164, 74, 0.15);
    transition: transform 0.3s ease;
}

.event-card-premium:hover {
    transform: translateY(-10px);
}

.event-image-box {
    width: 100%;
    background: var(--sand);
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-main-icon {
    font-size: 70px;
    color: var(--gold1);
}

.event-content {
    padding: 50px 40px;
}

/* Bullets Removal Only in Events */
.event-features-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 25px 0 0 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the tags */
    gap: 12px;
}

.event-features-list li {
    list-style: none !important;
    background: rgba(201, 164, 74, 0.1);
    color: var(--earth);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--gold1);
    position: relative;
}

/* Remove any custom bullet symbols like ◆ or dots */
.event-features-list li::before {
    content: none !important;
    display: none !important;
}

/* Remove alternate card directions for clean center alignment */
.event-card-premium:nth-child(even) {
    flex-direction: column;
}
.event-card-premium:nth-child(even) .event-image-box {
    order: 0;
}

.event-image-box {
    width: 100%;
    background: var(--sand);
    padding: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-main-image {
    width: 100%;
    height: 320px; 
    object-fit: cover; 
    display: block;
    border-radius: 0;
}
.img-wrapper{
    position:relative;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:20px;
}

.gallery-img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:0.3s;
}

.gallery-img:hover{
    transform:scale(1.03);
}
/* UPLOAD BOX */

.upload-box{
    width: fit-content;
    margin: 40px auto;
    padding: 25px 30px;
    background: #fffaf0;
    border: 2px solid #d4af37;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    text-align: center;
}

.upload-box h3{
    font-size: 28px;
    color: #9c6b00;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.upload-controls{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

#fileInput{
    padding: 10px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    background: white;
    cursor: pointer;
}

.upload-btn{
    background: linear-gradient(135deg,#d4af37,#b8860b);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.upload-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.lightbox img{
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.prev-btn,
.next-btn{
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    z-index: 10000;
}

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.92);
    
    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999;
}

.lightbox img{
    position:relative;
    max-width:90%;
    max-height:90%;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:12px;
    margin:auto;
    display:block;
}

/* CLOSE */
.close-btn{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:65px;
    font-weight:bold;
    cursor:pointer;
    z-index:10000;
    line-height:1;
}

.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    
    color:white;

    font-size:90px;
    font-weight:bold;

    cursor:pointer;
    user-select:none;

    z-index:10000;

    padding:10px 20px;
}

.prev-btn{
    left:30px;
}

.next-btn{
    right:30px;
}

.prev-btn:hover,
.next-btn:hover,
.close-btn:hover{
    transform:translateY(-50%) scale(1.1);
}
/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px){

    /* BODY OVERFLOW FIX */
    body{
        overflow-x:hidden;
    }

    /* NAVBAR */
    .navbar{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        padding:12px;
        gap:10px;
    }

    .logo-box{
        display:flex;
        align-items:center;
        justify-content:center;
        flex-wrap:wrap;
        text-align:center;
    }

    .logo-img{
        height:38px;
    }

    .logo-text{
        font-size:20px;
        margin-left:8px;
        text-align:center;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
        padding:0;
        margin:0;
    }

    .nav-links a{
        font-size:13px;
    }

    /* HERO */
    .hero{
        height:75vh;
        padding:20px;
    }

    .hero-text{
        width:90%;
        padding:16px;
    }

    .hero-text h1{
        font-size:26px;
        line-height:1.3;
    }

    .hero-text p{
        font-size:14px;
    }

    /* SECTION */
    .section{
        padding:60px 5%;
    }

    /* ABOUT GRID */
    .about-grid{
        grid-template-columns:1fr;
        text-align:left;
    }

    /* EVENTS */
    .event-content{
        padding:25px 20px;
    }

    .event-main-image{
        height:220px;
    }

    .event-content h3{
        font-size:22px;
    }

    .event-content p{
        font-size:14px;
        line-height:1.7;
    }

    /* GALLERY */
    .gallery-floral-border{
        padding:12px;
        overflow:hidden;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:15px;
        padding:10px;
    }

    .gallery-grid img{
        height:220px;
    }

    /* LIGHTBOX */
    .lightbox img{
        max-width:95vw;
        max-height:80vh;
    }

    .prev-btn,
    .next-btn{
        font-size:55px;
    }

    .close-btn{
        font-size:50px;
    }

    /* BOOK NOW */
    .book-now-btn{
        top:auto;
        bottom:95px;
        right:12px;
        transform:none;

        border-radius:50px;

        padding:12px 18px;

        font-size:14px;

        z-index:9999;
    }

    /* WHATSAPP */
    .floating-whatsapp{
        width:58px;
        height:58px;

        font-size:30px;

        bottom:20px;
        right:15px;
    }

    /* BOOKING FORM */
    .booking-grid{
        grid-template-columns:1fr;
    }

    .booking-form{
        padding:20px 15px;
    }

    /* OTHER VENUES */
    .venues-grid{
        grid-template-columns:1fr;
    }

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

    /* UPLOAD BOX */
    .upload-box{
        width:90%;
        padding:20px;
    }

    .upload-controls{
        flex-direction:column;
    }

    #fileInput{
        width:100%;
    }

    .upload-btn{
        width:100%;
    }

}