:root {
    --sienna: #a66211;
    --darkslategray: #304c57;
    --shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

* {
    scrollbar-color: #00000000 #00000000;
    /* scrollbar: none !important; */
}

body {
    font-size: 1.2rem;
    font-family: "Noto Serif Display", sans-serif;
    min-height: 100vh;
    /* background-color: #f6f8fb; */
}

body::-webkit-scrollbar {
    display: none;
}

/* hero */
/* #hero {
    background-color: var(--main-color);
} */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("/static_asset/maidi/coba/images/header-hero.png"); */
    background-size: 100px;
    background-position: top;
    background-repeat: repeat-x;
    z-index: -1;
    /* filter: brightness(50%); */
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static_asset/maidi/coba/images/footer-hero.png");
    background-size: 350px;
    background-position: bottom;
    background-repeat: repeat-x;
    z-index: -1;
    /* filter: brightness(50%); */
}

.hero h4,
.hero p {
    color: var(--sienna);
}

.hero h1,
.hero h4,
.hero p,
.hero span {
    text-shadow: var(--shadow);
}

.hero h1 {
    font-family: "Great Vibes", cursive;
    font-size: 3rem;
    color: var(--darkslategray);
}

.hero h4 {
    /* font-size: 1.5rem; */
    /* margin-bottom: 5rem; */
}

.hero span {
    font-family: "Great Vibes", cursive;
    font-size: 1.4rem;
    color: var(--sienna);
    /* background-image: url("/static_asset/maidi/coba/images/bg-hero.png"); */
}

/* .hero div {
    height: 300px;
    width: 300px;
    background-image: url("/static_asset/maidi/coba/images/bg-hero.png");
    background-size: 300px 300px;
    background-position: center;
    background-repeat: no-repeat;
} */

.hero p {
    font-size: 1rem;
}

.hero a {
    color: var(--darkslategray);
    font-family: "noto serif display";
    font-size: 1rem;
    background-color: white;
    box-shadow: var(--shadow);
    /* margin-top: 3rem; */
}

.hero a:hover {
    color: var(--sienna);
    background-color: var(--pink);
}

/* navbar */
.mynavbar {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.mynavbar .navbar-brand,
.mynavbar .offcanvas-title {
    font-family: "Great Vibes", cursive;
    font-size: 2rem;
}

.mynavbar .nav-link {
    color: var(--sienna);
    font-weight: 500;
    text-transform: uppercase;
}

/* info */
.home {
    background-image: url("/static_asset/maidi/coba/images/flower-bg.png");
}
.home .container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.home .container img {
    width: 50%;
}

.home h3 {
    font-family: "Great Vibes", cursive;
    font-size: 3rem;
}

/* simply countdown */
/**
* Project : simply-countdown
* File : simplyCountdown.theme.default
* Author : Vincent Loy <vincent.loy1@gmail.com>
* Theme : Light Modern
*/

.simply-countdown {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.simply-countdown > .simply-section {
    width: 65px;
    height: 65px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.simply-countdown > .simply-section > div {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: center;
}

.simply-countdown > .simply-section .simply-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.simply-countdown > .simply-section .simply-word {
    font-size: 0.6rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .simply-countdown > .simply-section {
        width: 75px;
        height: 75px;
        padding: 1.75rem;
    }

    .simply-countdown > .simply-section .simply-amount {
        font-size: 1.75rem;
    }

    .simply-countdown > .simply-section .simply-word {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .simply-countdown > .simply-section {
        width: 90px;
        height: 90px;
        padding: 2rem;
    }

    .simply-countdown > .simply-section .simply-amount {
        font-size: 2rem;
    }

    .simply-countdown > .simply-section .simply-word {
        font-size: 0.8rem;
    }
}

/* gallery */
.carousel-sample img{
    
}
/* tablet */
@media (max-width: 768px) {
    html {
        font-size: 65%;
    }
}

/* mobile phone */
@media (max-width: 576px) {
    html {
        font-size: 50%;
    }

    .home .container {
        flex-direction: column;
    }

    .home .container p {
        text-size: 1rem;
    }
}
