/* =====================================================
   GOLDEN FLAME AIRBNBS
   Luxury Hotel Website
   Author: ChatGPT
===================================================== */

/*==============================
        GOOGLE FONTS
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==============================
        ROOT VARIABLES
==============================*/

:root{

    --primary:#C8A45D;
    --primary-dark:#A78645;

    --dark:#111111;
    --dark-light:#1b1b1b;

    --white:#ffffff;

    --gray:#777777;

    --light:#f8f8f8;

    --border:#e5e5e5;

    --shadow:0 15px 40px rgba(0,0,0,.15);

    --transition:.4s ease;

    --radius:15px;

}

/*==============================
          RESET
==============================*/

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    background:#fff;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:100px 8%;

}

.container{

    max-width:1300px;

    margin:auto;

}

/*==============================
      PRELOADER
==============================*/

#preloader{

    position:fixed;

    inset:0;

    background:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader{

    width:60px;

    height:60px;

    border:5px solid #333;

    border-top:5px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==============================
        HEADER
==============================*/

/*==============================
        PREMIUM HEADER
==============================*/

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:.45s ease;

}

#header.scrolled{

    background:rgba(17,17,17,.88);

    backdrop-filter:blur(15px);

    box-shadow:0 8px 30px rgba(0,0,0,.25);

}

.navbar{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 40px;

}

.logo{

    font-family:'Playfair Display',serif;

    font-size:34px;

    font-weight:700;

    color:#fff;

    letter-spacing:1px;

}

.logo span{

    color:var(--primary);

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:#fff;

    font-size:16px;

    font-weight:500;

    transition:.35s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}

.nav-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.call-btn{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    border:1px solid rgba(255,255,255,.3);

    background:rgba(255,255,255,.08);

    transition:.35s;

}

.call-btn:hover{

    background:var(--primary);

    border-color:var(--primary);

}

.book-btn{

    padding:14px 30px;

    border-radius:40px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.book-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(200,164,93,.45);

}

.menu-btn{

    display:none;

    color:#fff;

    font-size:30px;

    cursor:pointer;

}

/*==============================
         HERO
==============================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

/*=====================================
        HERO BACKGROUND SLIDER
=====================================*/

.hero-slider{

    position:absolute;

    inset:0;

    z-index:0;

    overflow:hidden;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity 1.8s ease-in-out;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    transform:scale(1);

    animation:zoomEffect 12s linear infinite;

}

.slide.active{

    opacity:1;

}

/* Placeholder images */

.slide:nth-child(1){

    background-image:url("../images/hero/9.jpg");

}

.slide:nth-child(2){

    background-image:url("../images/hero/7.jpg");

}

.slide:nth-child(3){

    background-image:url("../images/hero/6.jpg");

}

.slide:nth-child(4){

    background-image:url("../images/hero/12.jpeg");

}

.slide:nth-child(5){

    background-image:url("../images/hero/3.jpg ");

}

@keyframes zoomEffect{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.55),

        rgba(0,0,0,.45)

    );

}

.hero-content{

    position:relative;

    z-index:20;

    max-width:720px;

    margin:auto;

    text-align:center;

    color:#fff;

    padding:100px 20px 170px;

    animation:fadeHero 1.2s ease;

}
.welcome{

    color:var(--primary);

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:72px;

    font-weight:700;

    line-height:1.08;

    margin:15px 0;

    letter-spacing:.5px;

    color:#fff;

}

.hero-content h1 span{

    display:block;

    margin-top:8px;

    font-size:58px;

    color:var(--primary);

    line-height:1.08;

}
.hero-subtitle{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:10px;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.hero-text{

    max-width:620px;

    margin:24px auto;

    font-size:20px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

}

.rating{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:5px;

    margin:35px 0;

    font-size:17px;

    color:#fff;

}

.rating i{

    color:#FFD700;

    margin-right:4px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:35px;

    flex-wrap:wrap;

}

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 36px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 36px;

    border:2px solid rgba(255,255,255,.8);

    border-radius:50px;

    color:#fff;

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:#111;

}

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:28px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,12px);

    }

}

/*==============================
    SECTION TITLES
==============================*/

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-subtitle{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

}

.section-title{

    font-size:50px;

    margin-top:15px;

    font-family:'Playfair Display',serif;

}
/*==================================================
                ABOUT SECTION
==================================================*/

.about{

    padding-top:170px;

    background:#fff;

}

.about .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.about-image img,
.about-image video{

    width:100%;

    height:600px;

    object-fit:cover;

    display:block;

    border-radius:20px;

    transition:.5s;

}

.about-image:hover img,
.about-image:hover video{

    transform:scale(1.04);

}

.about-content p{

    margin:25px 0;

    color:var(--gray);

    line-height:1.9;

    font-size:16px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:40px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    border-radius:12px;

    background:#fafafa;

    transition:.4s;

}

.feature:hover{

    transform:translateY(-6px);

    background:var(--primary);

    color:#fff;

}

.feature i{

    font-size:24px;

    color:var(--primary);

}

.feature:hover i{

    color:#fff;

}

/*==================================================
            APARTMENTS SECTION
==================================================*/

.apartments{

    background:var(--light);

}

.apartments-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.apartment-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.apartment-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.apartment-image{

    overflow:hidden;

}

.apartment-image img{

    height:260px;

    object-fit:cover;

    transition:.6s;

}

.apartment-card:hover img{

    transform:scale(1.12);

}

.apartment-content{

    padding:30px;

}

.apartment-content h3{

    font-size:28px;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.apartment-content p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:20px;

}

.apartment-content ul{

    margin-bottom:25px;

}

.apartment-content li{

    margin-bottom:12px;

    color:#555;

}

.apartment-content li i{

    color:var(--primary);

    margin-right:10px;

}

.card-btn{

    display:inline-block;

    padding:14px 28px;

    border-radius:40px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.4s;

}

.card-btn:hover{

    background:#111;

}

/*==================================================
            AMENITIES SECTION
==================================================*/

.amenities{

    background:#fff;

}

.amenities-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.amenity{

    background:#fff;

    text-align:center;

    padding:40px 25px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.amenity:hover{

    background:var(--primary);

    transform:translateY(-10px);

}

.amenity i{

    font-size:50px;

    color:var(--primary);

    margin-bottom:20px;

    transition:.4s;

}

.amenity:hover i{

    color:#fff;

}

.amenity h4{

    font-size:22px;

    transition:.4s;

}

.amenity:hover h4{

    color:#fff;

}

/*==================================================
                GALLERY SECTION
==================================================*/

.gallery{

    background:#111;

    color:#fff;

}

.gallery .section-title{

    color:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.gallery-item{

    overflow:hidden;

    border-radius:15px;

    position:relative;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::after{

    opacity:1;

}

/*==================================================
                STATISTICS
==================================================*/

.statistics{

    background:linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.85)),
    url("../images/hero/8.jpg") center/cover;

    color:#fff;

    padding:100px 8%;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.stat-box h2{

    font-size:60px;

    color:var(--primary);

    margin-bottom:10px;

    font-family:'Playfair Display',serif;

}

.stat-box p{

    font-size:18px;

    color:#ddd;

}
/*==================================================
                TESTIMONIALS
==================================================*/

.testimonials{

    background:#f9f9f9;

}

.testimonial-slider{

    max-width:900px;

    margin:auto;

    position:relative;

}

.testimonial{

    background:#fff;

    padding:50px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:none;

    transition:.5s;

}

.testimonial.active{

    display:block;

}

.testimonial .stars{

    margin-bottom:25px;

}

.testimonial .stars i{

    color:#FFD700;

    margin:0 2px;

    font-size:20px;

}

.testimonial p{

    font-size:18px;

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

    font-style:italic;

}

.testimonial h4{

    font-size:26px;

    font-family:'Playfair Display',serif;

    margin-bottom:8px;

}

.testimonial span{

    color:var(--primary);

    font-weight:500;

}

/*==================================================
                LOCATION
==================================================*/

.location{

    background:#fff;

}

.location-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.location-text p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.location-text ul li{

    margin-bottom:20px;

    font-size:17px;

}

.location-text ul li i{

    color:var(--primary);

    margin-right:15px;

}

.location-image{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    height:450px;
}

.location-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.location-image:hover img{

    transform:scale(1.08);

}

/*==================================================
                CONTACT
==================================================*/

.contact{

    background:var(--light);

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-info h3{

    font-size:38px;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.contact-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.info-item{

    display:flex;

    align-items:center;

    margin-bottom:22px;

    font-size:17px;

}

.info-item i{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    margin-right:18px;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social-links a{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

}

.social-links a:hover{

    background:var(--primary);

}

/*==================================================
            CONTACT FORM
==================================================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:16px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--primary);

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

/*==================================================
                GOOGLE MAP
==================================================*/

.map iframe{

    width:100%;

    height:500px;

    border:0;

    display:block;

}

/*==================================================
                FOOTER
==================================================*/

footer{

    background:#111;

    color:#fff;

    padding:80px 8% 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer-column h2{

    color:var(--primary);

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.footer-column h3{

    margin-bottom:20px;

}

.footer-column p{

    color:#bbb;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-column a{

    display:block;

    color:#bbb;

    margin-bottom:12px;

    transition:.3s;

}

.footer-column a:hover{

    color:var(--primary);

}

.copyright{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:60px;

    padding-top:30px;

    color:#999;

}

/*==================================================
        FLOATING BUTTONS
==================================================*/

.floating-whatsapp,
.floating-call{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

    z-index:999;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.floating-whatsapp{

    bottom:100px;

    background:#25D366;

}

.floating-call{

    bottom:170px;

    background:var(--primary);

}

.floating-whatsapp:hover,
.floating-call:hover{

    transform:translateY(-8px);

}

/*==================================================
            BACK TO TOP
==================================================*/

#topBtn{

    position:fixed;

    bottom:30px;

    right:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#111;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    display:none;

    transition:.4s;

    z-index:999;

}

#topBtn:hover{

    background:var(--primary);

}

/*==================================================
                LIGHTBOX
==================================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.lightbox-image{

    max-width:90%;

    max-height:85%;

    border-radius:15px;

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:50px;

    cursor:pointer;

}
/*=========================================
        LARGE LAPTOPS (1400px)
=========================================*/

@media (max-width:1400px){

    section{

        padding:90px 6%;

    }

    .navbar{

        padding:20px 6%;

    }

}

/*=========================================
        LAPTOPS (1200px)
=========================================*/

@media (max-width:1200px){

    .hero-content h1{

        font-size:60px;

    }

    .gallery-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

}

/*=========================================
        TABLETS (992px)
=========================================*/

@media (max-width:992px){

    .menu-btn{

        display:block;

    }

    .nav-links{

        position:fixed;

        top:0;

        right:-100%;

        width:300px;

        height:100vh;

        background:#111;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:30px;

        transition:.5s;

        z-index:999;

    }

    .nav-links.active{

        right:0;

    }

    .nav-links a{

        color:#fff;

        font-size:20px;

    }

    .about .container{

        grid-template-columns:1fr;

    }

    .location-content{

        grid-template-columns:1fr;

    }

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .hero-content h1{

        font-size:52px;

    }

}

/*=========================================
        MOBILE (768px)
=========================================*/

@media (max-width:768px){

    section{

        padding:80px 20px;

    }

    .navbar{

        padding:18px 20px;

    }

    .logo{

        font-size:28px;

    }
    .hero{

        min-height:100vh;
        padding:120px 20px 40px;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-text{

        font-size:18px;

    }

    .hero-buttons{

        flex-direction:column;
        gap:15px;

    }

    .hero-buttons a{

        width:100%;

    }

    .primary-btn,
    .secondary-btn{

        width:100%;

        text-align:center;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .section-title{

        font-size:36px;

    }

}

/*=========================================
        SMALL PHONES (576px)
=========================================*/

@media (max-width:576px){

    .hero-content h1{

        font-size:34px;

    }

    .hero-text{

        font-size:16px;

    }

    .section-title{

        font-size:30px;

    }

    .apartment-content{

        padding:20px;

    }

    .contact-form{

        padding:25px;

    }

    .testimonial{

        padding:30px 20px;

    }

    .floating-call{

        bottom:145px;

        width:50px;

        height:50px;

        font-size:20px;

    }

    .floating-whatsapp{

        bottom:85px;

        width:50px;

        height:50px;

        font-size:20px;

    }

    #topBtn{

        width:45px;

        height:45px;

    }

}

/*=========================================
        EXTRA SMALL PHONES
=========================================*/

@media (max-width:420px){

    .hero-content h1{

        font-size:30px;

    }

    .logo{

        font-size:24px;

    }

    .section-title{

        font-size:26px;

    }

    .navbar{

        padding:15px;

    }

}
/*=========================================
        BOOKING BAR
=========================================*/

.booking-section{

    position:relative;

    margin-top:-80px;

    z-index:50;

    padding:0 8%;

}

/*=========================================
        PREMIUM HERO BOOKING BAR
=========================================*/

.booking-bar{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    width:92%;

    max-width:1250px;

    display:grid;

    grid-template-columns:2fr 2fr 1.3fr 1.3fr .8fr 1.8fr;

    gap:18px;

    align-items:end;

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(18px);

    padding:22px;

    border-radius:22px;

    box-shadow:0 25px 70px rgba(0,0,0,.25);

    z-index:100;

}

.booking-item{

    display:flex;

    flex-direction:column;

}

.booking-item label{

    font-size:13px;

    font-weight:600;

    color:#777;

    margin-bottom:8px;

}

.booking-item i{

    color:var(--primary);

    margin-right:8px;

}

.booking-item input,

.booking-item select{

    height:58px;

    border:none;

    outline:none;

    border-radius:12px;

    background:#f5f5f5;

    padding:0 18px;

    font-size:15px;

}

.booking-item.nights{

    justify-content:center;

}

.booking-item.nights h3{

    font-size:34px;

    color:var(--primary);

    font-family:'Playfair Display',serif;

}

#bookingButton{

    height:58px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

#bookingButton:hover{

    background:#111;

    transform:translateY(-3px);

}
/*=========================================
        BOOKING RESPONSIVE
=========================================*/

@media(max-width:768px){

    .booking-bar{

        position:relative;
        left:0;
        bottom:0;
        transform:none;

        width:100%;
        margin-top:30px;

        grid-template-columns:1fr;
        gap:15px;

        padding:20px;
        border-radius:18px;
    }

    .booking-item{
        width:100%;
    }

    .booking-item input,
    .booking-item select,
    #bookingButton{
        width:100%;
    }

    #bookingButton{
        height:55px;
    }

}
@keyframes fadeHero{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}