/*====================================================
GEORGIA AMANI
Luxury Hotel Website
Style.css (Part 1)
====================================================*/

/*=========================
GOOGLE VARIABLES
==========================*/

:root{

    --gold:#9b8a43;
    --gold-light:#b9aa6a;
    --dark:#22291e;
    --green:#28321d;
    --white:#ffffff;
    --text:#f6f6f6;
    --gray:#888;
    --light:#f8f8f8;

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

}

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

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1250px;
    margin:auto;

}

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

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 34px;

    background:var(--gold);

    color:#fff;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;

    transition:.35s;

    border:2px solid var(--gold);

}

.btn:hover{

    background:transparent;

    color:#fff;

}

.btn-outline{

    background:transparent;

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

}

.btn-outline:hover{

    background:var(--gold);

    border-color:var(--gold);

}

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

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

    padding:20px 0;

}

.header.sticky{

    background:rgba(26,29,20,.95);

    backdrop-filter:blur(8px);

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

}

.nav{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    width:170px;

}

.menu{

    display:flex;

    gap:45px;

}

.menu li a{

    color:#fff;

    font-size:14px;

    text-transform:uppercase;

    font-weight:500;

    transition:.3s;

    position:relative;

}

.menu li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.4s;

}

.menu li a:hover::after,

.menu li a.active::after{

    width:100%;

}

.menu li a:hover{

    color:var(--gold-light);

}

.booking-btn{

    font-size:13px;

    padding:13px 24px;

}

.booking-btn i{

    margin-right:8px;

}

.menu-toggle{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

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

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


.hero {

    height:100vh;

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

}


/* Background slider */

.hero-slider {

    position:absolute;

    width:100%;

    height:100%;

    top:0;

    left:0;

}



.hero-slide {

    position:absolute;

    width:100%;

    height:100%;


    background-size:cover;

    background-position:center;


    opacity:0;


    transition:opacity 1.5s ease-in-out;

}



.hero-slide.active {

    opacity:1;

}



/* Dark overlay */

.overlay {

    position:absolute;

    width:100%;

    height:100%;


    background:

    linear-gradient(

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

    rgba(0,0,0,.45)

    );


    z-index:1;

}



/* Center Text */


.hero-content {

    position:relative;

    z-index:2;


    text-align:center;


    color:white;


    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;


    max-width:900px;

}



.subtitle {

    letter-spacing:5px;

    font-size:18px;

    margin-bottom:20px;

}



.hero-content h1 {


    font-family:'Cormorant Garamond',serif;


    font-size:80px;


    line-height:1;


    margin-bottom:25px;


}



.description {


    font-size:22px;


    line-height:1.7;


    margin-bottom:35px;


}



.hero-buttons {


    display:flex;


    justify-content:center;


    gap:20px;


}



.hero-buttons .btn {


    padding:15px 40px;


}

/*=========================
SCROLL INDICATOR
==========================*/

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%{
        transform:translate(-50%,0);
    }

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

    100%{
        transform:translate(-50%,0);
    }

}

/*=========================
SECTION SPACING
==========================*/

section{

    padding:100px 0;

}

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

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

}

.section-title h2{

    font-family:'Cormorant Garamond',serif;

    font-size:54px;

    margin-top:12px;

    color:var(--dark);

}
/*====================================================
STYLE.CSS - PART 2
Services Section + Features
====================================================*/

/*=========================
SERVICES SECTION
==========================*/

.services{
    background:#f8f6f1;
    padding-top:0;
    margin-top:-90px;
    position:relative;
    z-index:5;
}

.cards{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.card{

    padding:60px;
    text-align:center;
    transition:.4s;

}

.card.light{

    background:#fff;

}

.card.dark{

    background:var(--green);
    color:#fff;

}

.card:hover{

    transform:translateY(-8px);

}

.card .icon{

    width:72px;
    height:72px;

    margin:auto;

    border-radius:50%;

    background:rgba(155,138,67,.15);

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

    color:var(--gold);

    font-size:28px;

    margin-bottom:25px;

}

.card.dark .icon{

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

}

.small-title{

    display:block;

    color:var(--gold);

    font-size:13px;

    letter-spacing:3px;

    margin-bottom:15px;

    text-transform:uppercase;

    font-weight:600;

}

.card h2{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    margin-bottom:20px;

    font-weight:600;

}

.card.dark h2{

    color:#fff;

}

.card p{

    max-width:430px;

    margin:0 auto 35px;

    line-height:1.9;

    color:#666;

    font-size:16px;

}

.card.dark p{

    color:#ddd;

}

.card img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:8px;

    margin-bottom:30px;

    transition:.4s;

}

.card:hover img{

    transform:scale(1.03);

}

.card .btn{

    margin-bottom:25px;

}

.card small{

    display:block;

    line-height:1.8;

    font-size:14px;

    color:#666;

}

.card.dark small{

    color:#d8d8d8;

}

/*=========================
FEATURES
==========================*/

.features{

    background:#fff;

    padding:70px 0;

}

.feature-grid{

    display:grid;

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

    gap:30px;

}

.feature{

    text-align:center;

    padding:20px;

    transition:.35s;

}

.feature:hover{

    transform:translateY(-8px);

}

.feature i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:18px;

}

.feature h4{

    font-size:18px;

    margin-bottom:12px;

    color:var(--dark);

    text-transform:uppercase;

}

.feature p{

    color:#666;

    font-size:15px;

    line-height:1.8;

}

/*=========================
IMAGE EFFECTS
==========================*/

.card img{

    overflow:hidden;

}

.card img:hover{

    filter:brightness(105%);

}

/*=========================
BUTTON INSIDE CARDS
==========================*/

.card .btn{

    min-width:210px;

}

.card.dark .btn{

    background:var(--gold);

    color:#fff;

}

.card.dark .btn:hover{

    background:transparent;

    border:2px solid var(--gold);

}

/*=========================
CARD ANIMATION
==========================*/

.card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*=========================
DIVIDER
==========================*/

.features{

    border-top:1px solid #ececec;

}
/*====================================================
STYLE.CSS - PART 3
Footer • Scroll Top • Animations • Utilities
====================================================*/

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

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

footer {

    background:#111;

    color:white;

    padding:70px 0 0;

}



.footer-grid {

    display:grid;

    grid-template-columns:1.5fr 1fr 1.2fr 1fr;

    gap:45px;

}



.footer-logo {

    width:230px;

    height:auto;

    margin-bottom:20px;

}



.brand-col p {

    color:#aaa;

    line-height:1.8;

    max-width:320px;

}



.footer-col h3 {

    color:#c9a227;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    margin-bottom:25px;

}



.footer-col a {

    display:block;

    color:#ccc;

    text-decoration:none;

    margin-bottom:15px;

    transition:.3s;

}



.footer-col a:hover {

    color:#c9a227;

    transform:translateX(5px);

}



.footer-col p {

    color:#bbb;

    line-height:1.8;

}



.footer-col i {

    color:#c9a227;

    margin-right:10px;

}



.footer-book-btn {

    display:inline-flex !important;

    align-items:center;

    gap:8px;

    margin-top:20px;

    padding:14px 30px;

    background:#c9a227;

    color:white !important;

    border-radius:30px;

}



.social {

    display:flex;

    gap:15px;

    margin-top:20px;

}



.social a {

    width:42px;

    height:42px;

    border:1px solid #c9a227;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#c9a227;

}



.social a:hover {

    background:#c9a227;

    color:white;

}



.copyright {

    margin-top:60px;

    padding:25px 0;

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

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#999;

}



.footer-links-bottom a {

    color:#999;

    margin-left:20px;

    text-decoration:none;

}


.footer-links-bottom a:hover {

    color:#c9a227;

}

/*=========================
SOCIAL ICONS
==========================*/

.social{

    display:flex;
    gap:15px;
    margin-top:20px;

}

.social a{

    width:45px;
    height:45px;

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

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

    border-radius:50%;

    color:#fff;

    transition:.35s;

}

.social a:hover{

    background:var(--gold);
    border-color:var(--gold);
    transform:translateY(-5px);

}

/*=========================
COPYRIGHT
==========================*/

.copyright{

    margin-top:70px;
    padding:25px 0;

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

    text-align:center;

    color:#bbbbbb;

    font-size:14px;

}

/*=========================
SCROLL TO TOP
==========================*/

.scroll-top{

    position:fixed;

    right:30px;
    bottom:30px;

    width:50px;
    height:50px;

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

    background:var(--gold);

    color:#fff;

    border-radius:50%;

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

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.scroll-top.active{

    opacity:1;
    visibility:visible;

}

.scroll-top:hover{

    transform:translateY(-6px);

}

/*=========================
HEADER SCROLL EFFECT
==========================*/

.header{

    transition:
        background .35s,
        padding .35s,
        box-shadow .35s;

}

.header.sticky{

    padding:12px 0;

}

/*=========================
GENERAL HOVER EFFECTS
==========================*/

.btn,
.card,
.feature,
.social a,
.menu li a{

    transition:all .35s ease;

}

/*=========================
IMAGE EFFECTS
==========================*/

img{

    transition:transform .45s ease;

}

.card:hover img{

    transform:scale(1.05);

}

/*=========================
TEXT SELECTION
==========================*/

::selection{

    background:var(--gold);
    color:#fff;

}

/*=========================
CUSTOM SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-light);

}

/*=========================
UTILITY CLASSES
==========================*/

.text-center{
    text-align:center;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.py-1{padding:20px 0;}
.py-2{padding:40px 0;}
.py-3{padding:60px 0;}
.py-4{padding:80px 0;}
.py-5{padding:100px 0;}

/*=========================
FADE ANIMATIONS
==========================*/

.fade-in{

    animation:fadeIn .8s ease forwards;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

.slide-up{

    animation:slideUp .8s ease forwards;

}

@keyframes slideUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.zoom-in{

    animation:zoomIn .8s ease forwards;

}

@keyframes zoomIn{

    from{

        opacity:0;
        transform:scale(.9);

    }

    to{

        opacity:1;
        transform:scale(1);

    }

}

/*=========================
SMOOTH TRANSITIONS
==========================*/

section{

    transition:all .4s ease;

}

/* ================= WHATSAPP BOT ================= */


.whatsapp-bot{

    position:fixed;

    left:30px;

    bottom:30px;

    background:#25D366;

    color:white;

    padding:15px 25px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    text-decoration:none;

    z-index:9999;

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

}


.whatsapp-bot i{

    font-size:28px;

}



.whatsapp-popup{

    position:fixed;

    left:30px;

    bottom:100px;

    width:330px;

    background:white;

    border-radius:15px;

    overflow:hidden;

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

    transform:translateY(50px);

    opacity:0;

    pointer-events:none;

    transition:.5s;

    z-index:9998;

}


.whatsapp-popup.show{

    transform:translateY(0);

    opacity:1;

    pointer-events:auto;

}



.bot-header{

    background:#25D366;

    color:white;

    padding:18px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

}


.bot-header i{

    font-size:25px;

}


#closeBot{

    margin-left:auto;

    cursor:pointer;

    font-size:25px;

}



.bot-body{

    padding:20px;

}


.bot-body p{

    color:#555;

}



.bot-body a{

    display:block;

    background:#f5f5f5;

    padding:12px;

    margin:10px 0;

    border-radius:8px;

    text-decoration:none;

    color:#333;

    transition:.3s;

}



.bot-body a:hover{

    background:#25D366;

    color:white;

}



/* MOBILE */

@media(max-width:600px){


.whatsapp-bot span{

    display:none;

}


.whatsapp-bot{

    width:60px;

    height:60px;

    justify-content:center;

    padding:0;

}


.whatsapp-popup{

    right:15px;

    left:15px;

    width:auto;

}


}

/*=========================
END OF STYLE.CSS
==========================*/