/*==========================================================
  WECATERS HOMEPAGE
  Premium Luxury Theme
==========================================================*/

/*==========================
  GOOGLE FONTS
==========================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap");

/*==========================
  ROOT VARIABLES
==========================*/

:root{

    --primary:#d4af37;
    --primary-dark:#b89022;

    --secondary:#101820;

    --heading:#111827;
    --text:#555;

    --white:#ffffff;

    --light:#faf8f3;

    --border:#ece8df;

    --shadow-sm:0 8px 24px rgba(0,0,0,.06);
    --shadow-md:0 15px 40px rgba(0,0,0,.10);
    --shadow-lg:0 25px 60px rgba(0,0,0,.15);

    --radius:18px;

    --transition:.35s ease;

}

/*==========================
  RESET
==========================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins",sans-serif;

    color:var(--text);

    background:#fff;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1320px,92%);

    margin:auto;

}

section{

    padding:110px 0;

}

/*==========================
  TYPOGRAPHY
==========================*/

h1,
h2,
h3,
h4{

    font-family:"Playfair Display",serif;

    color:var(--heading);

    line-height:1.2;

    font-weight:700;

}

h1{

    font-size:clamp(2.8rem,5vw,4.6rem);

}

h2{

    font-size:clamp(2.2rem,4vw,3.3rem);

}

h3{

    font-size:1.55rem;

}

p{

    font-size:1.03rem;

}

/*==========================
  SECTION HEADING
==========================*/

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(212,175,55,.12);

    color:var(--primary-dark);

    font-weight:600;

    margin-bottom:18px;

}

.section-heading h2{

    margin-bottom:20px;

}

.section-heading h2 span{

    color:var(--primary);

}

/*==========================
  BUTTONS
==========================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*==========================================================
  HEADER
==========================================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    padding:18px 0;

    transition:.35s;

    background:transparent;

}

.site-header.scrolled{

    background:rgba(16,24,32,.96);

    backdrop-filter:blur(16px);

    box-shadow:0 12px 35px rgba(0,0,0,.18);

    padding:12px 0;

}

/*==========================================================
  NAVBAR
==========================================================*/

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.logo{

    display:flex;

    align-items:center;

    gap:16px;

}

.logo img{

    width:68px;

    height:68px;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.brand-name{

    color:#fff;

    font-size:1.8rem;

    font-family:"Playfair Display",serif;

}

.brand-tagline{

    color:rgba(255,255,255,.85);

    font-size:.82rem;

    margin-top:5px;

}

/*==========================================================
  DESKTOP MENU
==========================================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:34px;

    margin-left:auto;

}

.nav-menu>li{

    position:relative;

}

.nav-menu>li>a{

    display:flex;

    align-items:center;

    gap:6px;

    color:#fff;

    font-weight:500;

    transition:.3s;

}

.nav-menu>li>a:hover,

.nav-menu>li>a.active{

    color:var(--primary);

}

/*==========================================================
  DROPDOWN
==========================================================*/

.dropdown-menu{

    position:absolute;

    top:120%;

    left:0;

    width:300px;

    background:#fff;

    border-radius:18px;

    padding:16px 0;

    box-shadow:var(--shadow-lg);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

}

.has-dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu a{

    display:block;

    padding:12px 24px;

    color:var(--heading);

}

.dropdown-menu a:hover{

    background:#faf8f3;

    color:var(--primary);

}

/*==========================================================
  HEADER BUTTONS
==========================================================*/

.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

}

.call-btn,
.quote-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:13px 22px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.call-btn{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

}

.call-btn:hover{

    background:#fff;

    color:var(--heading);

}

.quote-btn{

    background:var(--primary);

    color:#fff;

}

.quote-btn:hover{

    background:var(--primary-dark);

}

/*==========================================================
  MOBILE
==========================================================*/

.mobile-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,.12);

    color:#fff;

    cursor:pointer;

}

.mobile-menu{

    position:fixed;

    top:88px;

    left:0;

    width:100%;

    background:#101820;

    display:none;

    flex-direction:column;

    z-index:999;

}

.mobile-menu.active{

    display:flex;

}

.mobile-menu a{

    color:#fff;

    padding:16px 24px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.mobile-menu a:hover{

    color:var(--primary);

}

@media(max-width:1100px){

    .nav-menu,
    .header-actions{

        display:none;

    }

    .mobile-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

}

@media(max-width:576px){

    .brand-tagline{

        display:none;

    }

}

/*==========================================================
  HERO SECTION
==========================================================*/

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #101820,
        #1f2f3d
    );

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(212,175,55,.18),
        transparent 45%);

}

.hero-section .container{

    position:relative;

    z-index:2;

}

.hero-grid{

    display:grid;

    grid-template-columns:48% 52%;

    gap:50px;

    align-items:center;

}

/*==========================================================
  HERO CONTENT
==========================================================*/

.hero-content{

    color:#fff;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    font-weight:600;

    margin-bottom:28px;

}

.hero-content h1{

    color:#fff;

    margin-bottom:25px;

    line-height:1.15;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    color:rgba(255,255,255,.88);

    max-width:700px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

/*==========================================================
  HERO FEATURES
==========================================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:500;

}

.feature-item i{

    color:var(--primary);

}

/*==========================================================
  HERO IMAGE
==========================================================*/

.hero-image-area{

    position:relative;

}

.hero-image-card{

    width:100%;

    border-radius:30px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.hero-image-card img{

    width:100%;

    height:700px;

    object-fit:cover;

    display:block;

}

/*==========================================================
  FLOATING CARDS
==========================================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:18px 24px;

    border-radius:20px;

    box-shadow:var(--shadow-md);

}

.floating-card i{

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:1.3rem;

}

.floating-card strong{

    display:block;

    color:var(--heading);

    font-size:1.15rem;

}

.floating-card span{

    color:#666;

    font-size:.92rem;

}

.card-one{

    top:40px;

    left:-40px;

}

.card-two{

    bottom:40px;

    right:-30px;

}

/*==========================================================
  STATS
==========================================================*/

.stats-section{

    background:#fff;

    margin-top:-70px;

    padding:0 0 110px;

    position:relative;

    z-index:5;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.stat-card h2{

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

}

/*==========================================================
  HERO RESPONSIVE
==========================================================*/

@media(max-width:991px){

    .hero-section{

        min-height:auto;

        padding:160px 0 90px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-content p{

        margin-inline:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        max-width:600px;

        margin:auto;

    }

    .hero-image-area{

        max-width:650px;

        margin:auto;

    }

    .card-one{

        left:15px;

    }

    .card-two{

        right:15px;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .hero-features{

        grid-template-columns:1fr;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .floating-card{

        position:relative;

        top:auto;

        right:auto;

        bottom:auto;

        left:auto;

        margin-top:20px;

    }

}

/*==========================================================
  ABOUT SECTION
==========================================================*/

.about-section{

    background:var(--light);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-images{

    position:relative;

}

.about-main-image{

    overflow:hidden;

    border-radius:28px;

    box-shadow:var(--shadow-lg);

}

.about-main-image img{

    width:100%;

    display:block;

    transition:.6s;

}

.about-main-image:hover img{

    transform:scale(1.05);

}

.experience-box{

    position:absolute;

    bottom:35px;

    right:-30px;

    background:var(--primary);

    color:#fff;

    padding:26px 34px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow-lg);

}

.experience-box h3{

    color:#fff;

    font-size:2rem;

    margin-bottom:5px;

}

.experience-box p{

    color:#fff;

    font-size:.95rem;

}

.about-content h2{

    margin:20px 0 28px;

}

.about-content h2 span{

    color:var(--primary);

}

.about-content p{

    margin-bottom:22px;

}

/*==========================================================
  ABOUT HIGHLIGHTS
==========================================================*/

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin:45px 0;

}

.highlight-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.highlight-item i{

    width:58px;

    height:58px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:1.35rem;

}

.highlight-item h4{

    margin-bottom:8px;

}

.highlight-item p{

    margin:0;

    font-size:.95rem;

}

.about-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/*==========================================================
  SERVICES SECTION
==========================================================*/

.services-section{

    background:#fff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.06);

}

.service-content{

    padding:30px;

    flex:1;

    display:flex;

    flex-direction:column;

}

.service-content h3{

    margin-bottom:15px;

}

.service-content p{

    margin-bottom:28px;

    flex:1;

}

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.service-btn:hover{

    gap:18px;

}

/*==========================================================
  FEATURED SERVICE
==========================================================*/

.featured-service{

    background:linear-gradient(135deg,#101820,#1b2d3c);

    color:#fff;

    justify-content:center;

    text-align:center;

}

.featured-service-content{

    padding:45px 35px;

}

.featured-service i{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 30px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    font-size:2rem;

    color:var(--primary);

}

.featured-service h3{

    color:#fff;

    margin-bottom:18px;

}

.featured-service p{

    color:rgba(255,255,255,.82);

    margin-bottom:35px;

}

/*==========================================================
  RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.about-grid{

    grid-template-columns:1fr;

}

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-highlights{

    grid-template-columns:1fr;

}

.about-buttons{

    flex-direction:column;

}

.about-buttons .btn{

    width:100%;

}

.experience-box{

    position:relative;

    right:auto;

    bottom:auto;

    margin-top:25px;

}

.services-grid{

    grid-template-columns:1fr;

}

.service-card img{

    height:230px;

}

}

/*==========================================================
  WHY CHOOSE US
==========================================================*/

.why-section{

    background:var(--light);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    border:1px solid var(--border);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.why-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:2rem;

}

.why-card h3{

    margin-bottom:16px;

}

.why-card p{

    margin:0;

}

/*==========================================================
  SIGNATURE MENU
==========================================================*/

.menu-section{

    background:#fff;

}

.menu-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.menu-card{

    background:#fff;

    padding:45px 35px;

    text-align:center;

    border-radius:24px;

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.menu-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.menu-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:2.1rem;

}

.menu-card h3{

    margin-bottom:18px;

}

.section-button{

    margin-top:60px;

    text-align:center;

}

/*==========================================================
  OCCASIONS
==========================================================*/

.occasions-section{

    background:var(--light);

}

.occasion-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.occasion-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:22px;

    transition:var(--transition);

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

}

.occasion-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.occasion-card i{

    font-size:2.2rem;

    color:var(--primary);

    margin-bottom:22px;

}

.occasion-card h3{

    margin-bottom:14px;

}

/*==========================================================
  GALLERY
==========================================================*/

.gallery-section{

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-auto-rows:280px;

    gap:24px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

}

.gallery-large{

    grid-row:span 2;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.75)

    );

}

.gallery-overlay h3{

    color:#fff;

    font-size:1.5rem;

}

/*==========================================================
  RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

.menu-grid{

    grid-template-columns:1fr;

}

.occasion-grid{

    grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid,

.occasion-grid,

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-auto-rows:240px;

}

.gallery-large{

    grid-row:span 1;

}

.menu-card{

    padding:35px 25px;

}

}

/*==========================================================
  TESTIMONIALS
==========================================================*/

.testimonials-section{

    background:var(--light);

}

.rating-summary{

    display:grid;

    grid-template-columns:260px 1fr;

    gap:40px;

    align-items:center;

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    margin-bottom:60px;

}

.rating-score{

    text-align:center;

}

.rating-score h3{

    color:var(--primary);

    font-size:2.6rem;

    margin-bottom:10px;

}

.rating-content h4{

    margin-bottom:15px;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.stars{

    color:#f5b301;

    font-size:1.2rem;

    margin-bottom:20px;

}

.testimonial-user{

    margin-top:25px;

}

.testimonial-user strong{

    display:block;

    color:var(--heading);

}

/*==========================================================
  BOOKING CTA
==========================================================*/

.booking-section{

    background:linear-gradient(135deg,#101820,#1b2d3c);

}

.booking-wrapper{

    display:grid;

    grid-template-columns:1.3fr .7fr;

    gap:60px;

    align-items:center;

}

.booking-content{

    color:#fff;

}

.booking-content h2{

    color:#fff;

    margin:20px 0;

}

.booking-content h2 span{

    color:var(--primary);

}

.booking-content p{

    color:rgba(255,255,255,.85);

}

.booking-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.booking-feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

}

.booking-feature i{

    color:var(--primary);

}

.booking-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================================
  CONTACT CARD
==========================================================*/

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:var(--shadow-lg);

}

.contact-card h3{

    margin-bottom:30px;

}

.contact-item{

    display:flex;

    gap:18px;

    margin-bottom:25px;

}

.contact-item i{

    color:var(--primary);

    font-size:1.3rem;

    margin-top:5px;

}

/*==========================================================
  FAQ
==========================================================*/

.faq-section{

    background:#fff;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    border:1px solid var(--border);

    border-radius:18px;

    overflow:hidden;

    margin-bottom:18px;

    background:#fff;

    transition:var(--transition);

}

.faq-item:hover{

    box-shadow:var(--shadow-sm);

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:24px 28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:1.05rem;

    font-weight:600;

    color:var(--heading);

    text-align:left;

}

.faq-question i{

    transition:transform .3s ease;

    flex-shrink:0;

    margin-left:20px;

}

.faq-answer{

    display:none;

    padding:0 28px 24px;

}

.faq-answer p{

    margin:0;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

/*==========================================================
  FOOTER
==========================================================*/

.footer{

    background:#101820;

    color:#fff;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer h3{

    color:#fff;

    margin-bottom:25px;

}

.footer p,
.footer li{

    color:rgba(255,255,255,.80);

    margin-bottom:12px;

}

.footer a{

    transition:.3s;

}

.footer a:hover{

    color:var(--primary);

}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

/*==========================================================
  FLOATING BUTTONS
==========================================================*/

.floating-whatsapp,
.floating-call,
.back-top{

    position:fixed;

    right:25px;

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:1.3rem;

    z-index:999;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.floating-whatsapp{

    bottom:30px;

    background:#25D366;

}

.floating-call{

    bottom:100px;

    background:var(--primary);

}

.back-top{

    bottom:170px;

    border:none;

    background:#101820;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.floating-whatsapp:hover,
.floating-call:hover,
.back-top:hover{

    transform:translateY(-5px);

}

/*==========================================================
  SCROLL REVEAL
==========================================================*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.revealed{

    opacity:1;

    transform:translateY(0);

}

/*==========================================================
  IMAGE LOADING
==========================================================*/

img{

    transition:opacity .4s ease;

}

img.loaded{

    opacity:1;

}

/*==========================================================
  GLOBAL RESPONSIVE
==========================================================*/

@media(max-width:1100px){

    .rating-summary,
    .booking-wrapper,
    .footer-grid{

        grid-template-columns:1fr;

    }

    .testimonial-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    section{

        padding:90px 0;

    }

    .booking-features{

        grid-template-columns:1fr;

    }

    .booking-buttons{

        flex-direction:column;

    }

    .booking-buttons .btn{

        width:100%;

    }

    .floating-whatsapp,
    .floating-call,
    .back-top{

        width:52px;

        height:52px;

        right:15px;

    }

    .floating-whatsapp{

        bottom:20px;

    }

    .floating-call{

        bottom:85px;

    }

    .back-top{

        bottom:150px;

    }

}

@media(max-width:576px){

    section{

        padding:80px 0;

    }

    .section-heading{

        margin-bottom:50px;

    }

    .rating-summary,
    .contact-card{

        padding:25px;

    }

    .footer{

        text-align:center;

    }

    .footer-logo{

        margin:0 auto 20px;

    }

}

/*==========================================================
  END OF WECATERS HOMEPAGE STYLESHEET
==========================================================*/