/*==================================================
        ROYAL FLOWERS DECORATION
        GLOBAL DESIGN SYSTEM
===================================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/*==================================================
        ROOT VARIABLES
===================================================*/
:root {

    /* Container */
    --container: 1200px;

    /* Colors */
    --primary: #d6a23d;
    --primary-light: #D7B67A;

    --black: #111111;
    --black-light: #1D1D1D;

    --white: #ffffff;

    --gray: #666666;
    --gray-light: #999999;

    --bg-light: #F8F7F4;
    --border: #ECECEC;

    /* Fonts */
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Inter', sans-serif;

    /* Typography */
    --h1: 64px;
    --h2: 48px;
    --h3: 36px;
    --h4: 28px;
    --h5: 22px;
    --h6: 18px;

    --body-lg: 18px;
    --body: 16px;
    --small: 14px;

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm:
        0 4px 15px rgba(0, 0, 0, .05);

    --shadow-md:
        0 10px 30px rgba(0, 0, 0, .08);

    --shadow-lg:
        0 20px 60px rgba(0, 0, 0, .12);

    /* Transition */
    --transition: .3s ease;
}

/*==================================================
        RESET
===================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: var(--body);
    line-height: 1.7;
    color: var(--gray);
    background: #fff;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/*==================================================
        CONTAINER
===================================================*/
.container {
    width: 100%;
    max-width: var(--container);
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/*==================================================
        SECTION SPACING
===================================================*/
section {
    position: relative;
    padding: 100px 0;
}

.section-sm {
    padding: 80px 0;
}

.section-lg {
    padding: 130px 0;
}

/*==================================================
        TYPOGRAPHY
===================================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}

p {
    font-size: var(--body);
    line-height: 1.8;
    color: var(--gray);
}

.text-lg {
    font-size: 18px;
}

.text-sm {
    font-size: 14px;
}

/*==================================================
        SECTION HEADING
===================================================*/
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 50px;

    background: #F7F2E8;

    color: #00484d;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    max-width: 700px;
    margin: auto;
}

/*==================================================
        BUTTONS
===================================================*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 54px;

    padding: 0 32px;

    border: none;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

/*==================================================
        CARD
===================================================*/
.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/*==================================================
        IMAGE
===================================================*/
.image-radius {
    border-radius: 24px;
    overflow: hidden;
}

.image-hover {
    overflow: hidden;
}

.image-hover img {
    transition: .5s;
}

.image-hover:hover img {
    transform: scale(1.08);
}

/*==================================================
        GRID
===================================================*/
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/*==================================================
        FLEX
===================================================*/
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*==================================================
        BADGE
===================================================*/
.badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 18px;

    background: #fff;

    border-radius: 50px;

    box-shadow: var(--shadow-sm);

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;
}

/*==================================================
        BACKGROUND
===================================================*/
.bg-dark {
    background: #0D0D0D;
}

.bg-light {
    background: #F8F7F4;
}

/*==================================================
        SPACING
===================================================*/
.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}





/*==================================================
            SCROLL REVEAL ANIMATIONS
==================================================*/

/* Default */

.reveal{

    opacity:0;

    visibility:hidden;

    transform:translateY(70px);

    transition:
        opacity .9s cubic-bezier(.22,.61,.36,1),
        transform .9s cubic-bezier(.22,.61,.36,1),
        visibility .9s;

    will-change:transform, opacity;

}

/* Fade Up */

.reveal.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Fade Left */

.reveal-left{

    opacity:0;

    visibility:hidden;

    transform:translateX(-70px);

    transition:
        opacity .9s cubic-bezier(.22,.61,.36,1),
        transform .9s cubic-bezier(.22,.61,.36,1);

    will-change:transform, opacity;

}

.reveal-left.active{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

/* Fade Right */

.reveal-right{

    opacity:0;

    visibility:hidden;

    transform:translateX(70px);

    transition:
        opacity .9s cubic-bezier(.22,.61,.36,1),
        transform .9s cubic-bezier(.22,.61,.36,1);

    will-change:transform, opacity;

}

.reveal-right.active{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

/* Zoom */

.reveal-zoom{

    opacity:0;

    visibility:hidden;

    transform:scale(.92);

    transition:
        opacity .9s cubic-bezier(.22,.61,.36,1),
        transform .9s cubic-bezier(.22,.61,.36,1);

    will-change:transform, opacity;

}

.reveal-zoom.active{

    opacity:1;

    visibility:visible;

    transform:scale(1);

}

/* Fade Down */

.reveal-down{

    opacity:0;

    visibility:hidden;

    transform:translateY(-70px);

    transition:
        opacity .9s cubic-bezier(.22,.61,.36,1),
        transform .9s cubic-bezier(.22,.61,.36,1);

}

.reveal-down.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Delay Utilities */

.delay-100{

    transition-delay:.1s;

}

.delay-200{

    transition-delay:.2s;

}

.delay-300{

    transition-delay:.3s;

}

.delay-400{

    transition-delay:.4s;

}

.delay-500{

    transition-delay:.5s;

}

.delay-600{

    transition-delay:.6s;

}

.delay-700{

    transition-delay:.7s;

}

.delay-800{

    transition-delay:.8s;

}


/*==================================================
        RESPONSIVE
===================================================*/
@media(max-width:1200px) {

    :root {
        --h1: 56px;
        --h2: 42px;
    }
}

@media(max-width:992px) {

    section {
        padding: 80px 0;
    }

    :root {
        --h1: 48px;
        --h2: 38px;
        --h3: 30px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    section {
        padding: 70px 0;
    }

    :root {
        --h1: 38px;
        --h2: 32px;
        --h3: 26px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media(max-width:576px) {

    :root {
        --h1: 32px;
        --h2: 28px;
        --h3: 24px;
        --body: 15px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .btn {
        width: 100%;
    }
}
/* ===========================
   SCROLL REVEAL FIX
=========================== */


/* Reveal Base */
.reveal,
.reveal-left,
.reveal-right,
.reveal-down,
.reveal-zoom {
    opacity: 0;
    visibility: hidden;
    transition: all .8s cubic-bezier(.22,.61,.36,1);
    will-change: transform, opacity;
}

/* Directions */
.reveal {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-zoom {
    transform: scale(.92);
}

/* Active */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-down.active,
.reveal-zoom.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* Delay */
.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-400 { transition-delay: .4s; }
.delay-500 { transition-delay: .5s; }
.delay-600 { transition-delay: .6s; }
.delay-700 { transition-delay: .7s; }
.delay-800 { transition-delay: .8s; }

/* Mobile */
@media (max-width:768px){

    .reveal{
        transform: translateY(25px);
    }

    .reveal-left{
        transform: translateX(-10px);
    }

    .reveal-right{
        transform: translateX(10px);
    }

    .reveal-down{
        transform: translateY(-10px);
    }

    .reveal-zoom{
        transform: scale(.97);
    }
}


@media (max-width:768px){

    .reveal-left{
        transform: translateX(-10px);
    }

    .reveal-right{
        transform: translateX(10px);
    }

    .reveal{
        transform: translateY(20px);
    }

    .reveal-down{
        transform: translateY(-20px);
    }
}