/*==================================================
EB FLORIST PREMIUM
STYLE.CSS
==================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/*==============================
ROOT
==============================*/

:root{

    --gold:#C8A24A;
    --maroon:#7A1F1F;
    --dark:#1E1E1E;
    --white:#ffffff;
    --text:#666;
    --bg:#F8F8F8;

    --shadow:0 20px 45px rgba(0,0,0,.08);

    --radius:18px;

}

/*==============================
RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:var(--dark);

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:100px 0;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

/*==============================
PRELOADER
==============================*/

.preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader{

    width:55px;

    height:55px;

    border-radius:50%;

    border:5px solid #eee;

    border-top:5px solid var(--gold);

    animation:loading 1s linear infinite;

}

@keyframes loading{

    100%{

        transform:rotate(360deg);

    }

}

/*==============================
HEADER
==============================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

header.active{

    background:#fff;

    box-shadow:var(--shadow);

}

.navbar{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:55px;

}

.logo h2{

    font-size:28px;

    color:#fff;

}

.logo span{

    color:var(--gold);

}

.logo small{

    color:#eee;

}

header.active .logo h2{

    color:var(--dark);

}

header.active .logo small{

    color:#777;

}

/*==============================
MENU
==============================*/

nav ul{

    display:flex;

    gap:35px;

}

nav a{

    color:#fff;

    font-weight:500;

    transition:.3s;

}

header.active nav a{

    color:var(--dark);

}

nav a:hover{

    color:var(--gold);

}

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/*==============================
BUTTON
==============================*/

.btn-wa,

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 28px;

    border-radius:50px;

    background:var(--gold);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover,

.btn-wa:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;

    color:var(--dark);

}

/*==============================
HERO
==============================*/

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
}

.hero-slider{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:1s;

}

.slide.active{

    opacity:1;

}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
}



.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to right,

        rgba(0,0,0,.78),

        rgba(0,0,0,.45)

    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:650px;

}

.subtitle{

    color:var(--gold);

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}

.hero h1{

    margin:20px 0;

    font-family:'Cormorant Garamond',serif;

    font-size:78px;

    color:#fff;

    line-height:1.1;

}

.hero h1 span{

    color:var(--gold);

    display:block;

}

.hero p{

    color:#eee;

    line-height:1.9;

    font-size:18px;

    margin-bottom:40px;

}

.hero-button{

    display:flex;

    gap:20px;

    margin-bottom:60px;

}

/*==============================
HERO CARD
==============================*/

.hero-info{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-box{

    min-width:150px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.2);

    backdrop-filter:blur(12px);

    border-radius:18px;

    padding:20px;

}

.hero-box h3{

    color:#fff;

    font-size:30px;

    margin-bottom:8px;

}

.hero-box span{

    color:#ddd;

}

/*==============================
SCROLL
==============================*/

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    z-index:2;

    animation:updown 1.8s infinite;

}

@keyframes updown{

    50%{

        transform:translate(-50%,10px);

    }

}

/*==================================================
SECTION TITLE
==================================================*/

.section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.section-title span{

    display:inline-block;

    color:var(--gold);

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:15px;

    text-transform:uppercase;

    font-size:14px;

}

.section-title h2{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    color:var(--dark);

    margin-bottom:20px;

}

.section-title p{

    color:var(--text);

    line-height:1.8;

}

/*==================================================
KEUNGGULAN
==================================================*/

.keunggulan{

    background:#fff;

}

.keunggulan-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.unggul-card{

    background:#fff;

    padding:45px 30px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.unggul-card:hover{

    transform:translateY(-10px);

}

.unggul-card i{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:rgba(200,162,74,.12);

    color:var(--gold);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.unggul-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.unggul-card p{

    color:var(--text);

    line-height:1.8;

}

/*==================================================
PRODUK
==================================================*/

.produk{

    background:var(--bg);

}

.produk-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.produk-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.produk-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.produk-image{

    position:relative;

    overflow:hidden;

    height:260px;

}

.produk-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.produk-card:hover img{

    transform:scale(1.08);

}

.produk-content{

    padding:30px;

}

.produk-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.produk-content p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:25px;

}

/*==================================================
BADGE
==================================================*/

.badge{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 18px;

    background:var(--maroon);

    color:#fff;

    font-size:13px;

    border-radius:30px;

    font-weight:600;

}

.badge.gold{

    background:var(--gold);

}

.badge.premium{

    background:#222;

}

.badge.wedding{

    background:#d63384;

}

.badge.custom{

    background:#198754;

}

/*==================================================
BUTTON ORDER
==================================================*/

.btn-order{

    display:block;

    width:100%;

    text-align:center;

    background:var(--gold);

    color:#fff;

    padding:15px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-order:hover{

    background:var(--maroon);

}

/*==================================================
CTA
==================================================*/

.cta{

    background:linear-gradient(135deg,var(--gold),#b88d2b);

    color:#fff;

    text-align:center;

}

.cta span{

    display:block;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:20px;

}

.cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:54px;

    margin-bottom:25px;

}

.cta p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    margin-bottom:35px;

    color:#fff;

}

.cta .btn-primary{

    background:#fff;

    color:var(--dark);

}

.cta .btn-primary:hover{

    background:var(--maroon);

    color:#fff;

}

/*==================================================
TENTANG
==================================================*/

.tentang{

    background:#fff;

}

.tentang-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.tentang-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.tentang-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.tentang-image:hover img{

    transform:scale(1.08);

}

.section-subtitle{

    display:inline-block;

    color:var(--gold);

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:15px;

}

.tentang-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    margin-bottom:25px;

    color:var(--dark);

}

.tentang-content p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:20px;

}

.tentang-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.tentang-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

}

.tentang-list i{

    color:var(--gold);

    font-size:18px;

}

/*==================================================
GALERI
==================================================*/

.galeri{

    background:var(--bg);

}

.galeri-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    position:relative;

    box-shadow:var(--shadow);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

.gallery-item::before{

    content:'';

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.25);

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::before{

    opacity:1;

}

/*==================================================
COUNTER
==================================================*/

.counter{

    background:linear-gradient(135deg,var(--maroon),#521212);

    color:#fff;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.counter-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:40px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.12);

}

.counter-box h2{

    font-size:48px;

    color:var(--gold);

    margin-bottom:10px;

}

.counter-box p{

    color:#ddd;

    font-size:17px;

}

/*==================================================
TESTIMONI
==================================================*/

.testimoni{

    background:#fff;

}

.testimoni-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.testi-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.testi-card:hover{

    transform:translateY(-8px);

}

.rating{

    color:#f5b301;

    font-size:22px;

    margin-bottom:18px;

}

.testi-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:25px;

    font-style:italic;

}

.testi-card h4{

    font-size:20px;

    color:var(--dark);

    margin-bottom:5px;

}

.testi-card span{

    color:#888;

    font-size:15px;

}

/*==================================================
FAQ
==================================================*/

.faq{

    background:var(--bg);

}

.faq-item{

    background:#fff;

    padding:25px 30px;

    border-radius:18px;

    margin-bottom:20px;

    box-shadow:var(--shadow);

}

.faq-item h3{

    font-size:22px;

    margin-bottom:12px;

    color:var(--dark);

}

.faq-item p{

    color:var(--text);

    line-height:1.8;

}

/*==================================================
ORDER FORM
==================================================*/

.order{

    background:#fff;

}

#waForm{

    max-width:900px;

    margin:auto;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:25px;

}

#waForm input,
#waForm select,
#waForm textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #ddd;

    border-radius:15px;

    outline:none;

    font-family:Poppins,sans-serif;

    font-size:15px;

    transition:.3s;

}

#waForm textarea{

    margin-bottom:20px;

    resize:none;

}

#waForm input:focus,
#waForm select:focus,
#waForm textarea:focus{

    border-color:var(--gold);

    box-shadow:0 0 0 3px rgba(200,162,74,.15);

}

#waForm button{

    border:none;

    cursor:pointer;

    width:100%;

    font-size:17px;

}

/*==================================================
KONTAK
==================================================*/

.kontak{

    background:var(--bg);

}

.kontak-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.kontak-card{

    background:#fff;

    text-align:center;

    padding:40px 30px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.kontak-card:hover{

    transform:translateY(-8px);

}

.kontak-card i{

    width:80px;

    height:80px;

    border-radius:50%;

    background:rgba(200,162,74,.15);

    color:var(--gold);

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:25px;

    font-size:32px;

}

.kontak-card h3{

    margin-bottom:15px;

}

.kontak-card p{

    color:var(--text);

    line-height:1.8;

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#181818;

    color:#fff;

    padding:80px 0 0;

}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:45px;
}

.footer-logo{

    width:80px;

    margin-bottom:20px;

}

footer h3{

    margin-bottom:20px;

    color:var(--gold);

}

footer p{

    color:#ccc;

    line-height:1.9;

}

footer ul li{

    margin-bottom:12px;

}

footer ul a{

    color:#ccc;

    transition:.3s;

}

footer ul a:hover{

    color:var(--gold);

}

.copyright{

    margin-top:60px;

    padding:25px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#aaa;

}

/*==================================================
BACK TO TOP
==================================================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    background:var(--gold);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

/*==================================================
ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .tentang-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .hero h1{

        font-size:58px;

    }

}

@media(max-width:768px){

    section{

        padding:70px 0;

    }

    .navbar{

        height:80px;

    }

    nav{

        position:fixed;

        top:80px;

        right:-100%;

        width:280px;

        height:calc(100vh - 80px);

        background:#fff;

        transition:.35s;

        padding:40px;

    }

    nav.active{

        right:0;

    }

    nav ul{

        flex-direction:column;

        gap:25px;

    }

    nav a{

        color:var(--dark);

    }

    .menu-toggle{

        display:block;

    }

    .btn-wa{

        display:none;

    }

    .hero{

        text-align:center;

    }

    .hero-content{

        max-width:100%;

    }

    .hero-button{

        flex-direction:column;

    }

    .hero-info{

        justify-content:center;

    }

    .hero h1{

        font-size:48px;

    }

    .section-title h2{

        font-size:40px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .produk-grid{

        grid-template-columns:1fr;

    }

    .keunggulan-grid{

        grid-template-columns:1fr;

    }

    .galeri-grid{

        grid-template-columns:1fr;

    }

    .testimoni-grid{

        grid-template-columns:1fr;

    }

    .counter-grid{

        grid-template-columns:1fr;

    }

    .hero h1{

        font-size:40px;

    }

    .section-title h2{

        font-size:34px;

    }

    .tentang-list{

        grid-template-columns:1fr;

    }

}

/* ===============================
   HEADER V3
================================ */

.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:26px;
    color:#c7a34b;
    transition:.3s;
}

.menu-toggle:hover{
    transform:rotate(90deg);
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

@media (max-width:768px){

.hero{
    min-height:850px;
}

.hero-content{
    padding-top:130px;
    padding-bottom:60px;
}

.hero-content h1{
    font-size:44px;
    line-height:1.2;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
}

}@media (max-width:768px){

.hero{
    min-height:850px;
}

.hero-content{
    padding-top:130px;
    padding-bottom:60px;
}

.hero-content h1{
    font-size:44px;
    line-height:1.2;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
}

}

.menu-toggle{
    position:relative;
    z-index:1001;
}

.menu-toggle i{
    transition:.3s;
}

.menu-toggle.active i{
    transform:rotate(180deg);
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

@media(max-width:991px){

nav{

    position:fixed;

    top:0;

    right:-100%;

    width:280px;

    max-width:85%;

    height:100vh;

    background:#fff;

    transition:.35s;

    z-index:999;

    padding:90px 30px;

}

nav.active{

    right:0;

}

}

/* =========================================
   FOOTER FIX RESPONSIVE
========================================= */

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:35px;
}

.footer-grid>*{
    min-width:0;
}

.footer img{
    max-width:100%;
    height:auto;
}

.footer iframe{
    width:100%;
    height:230px;
    border:0;
    border-radius:10px;
}

/* Tablet */

@media (max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

}

/* Mobile */

@media (max-width:768px){

.footer{
    padding:60px 20px 0;
}

.footer-grid{
    grid-template-columns:1fr !important;
    text-align:center;
}

.footer-logo{
    margin:0 auto 20px;
}

.footer-social{
    justify-content:center;
}

.footer iframe{
    height:260px;
}

}

/* HP kecil */

@media (max-width:480px){

.footer{
    padding:50px 15px 0;
}

.footer-grid{
    gap:25px;
}

.footer iframe{
    height:220px;
}

}

.footer-map{
    width:100%;
}

.map-box{
    width:100%;
    height:260px;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.map-box iframe{
    width:100% !important;
    height:100% !important;
    border:0;
    display:block;
}

@media(max-width:768px){

.footer-map{
    margin-top:20px;
}

.footer-map iframe{
    height:260px;
}

}