/*
Theme Name: Floral Atelier
Template: Divi
Author: Project of Light
Version: 1.0
*/

:root {

    --cream: #F5EFE6;
    --beige: #DCCFC0;
    --sage: #B7C4B2;
    --accent: #C89B7B;
    --text: #2E2B28;

}

body {

    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

/*
====================================
TYPOGRAPHY
====================================
*/

h1, h2, h3, h4 {

    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;

}

h1 {

    font-size: 72px;
    line-height: 1.1;

}

h2 {

    font-size: 52px;

}

p {

    font-size: 18px;
    line-height: 1.8;

}

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

#main-header {

    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);

}

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

.hero-section {

    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

}

.hero-content {

    max-width: 700px;
    z-index: 2;

}

.hero-title {

    margin-bottom: 30px;

}

.hero-subtitle {

    margin-bottom: 40px;

}

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

.btn-floral {

    display: inline-block;
    padding: 16px 40px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;

}

.btn-floral:hover {

    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200,155,123,0.35);

}

/*
====================================
CATEGORY CARDS
====================================
*/

.category-card {

    background: rgba(255,255,255,0.5);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;

}

.category-card:hover {

    transform: translateY(-8px);

}

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

.masonry-gallery {

    column-count: 3;
    column-gap: 20px;

}

.masonry-gallery img {

    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;

}

/*
====================================
WOOCOMMERCE
====================================
*/

.woocommerce ul.products li.product {

    background: white;
    border-radius: 24px;
    padding: 20px;
    transition: all 0.3s ease;

}

.woocommerce ul.products li.product:hover {

    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

}

.woocommerce div.product .price {

    color: var(--accent);
    font-size: 28px;

}

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

#main-footer {

    background: #EFE7DC;
    padding: 80px 0;

}

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

.fade-up {

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;

}

.fade-up.active {

    opacity: 1;
    transform: translateY(0);

}

/*
====================================
RESPONSIVE
====================================
*/

@media(max-width: 980px) {

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 36px;
    }

    .masonry-gallery {
        column-count: 2;
    }

}

@media(max-width: 767px) {

    .masonry-gallery {
        column-count: 1;
    }

    .hero-section {
        padding: 120px 20px;
    }

}