:root {
    --font-family-text: "Nunito", sans-serif;
    --headline-font: "Nunito", sans-serif;
    --base-color: #131616;
    --primary-color: #1F5478;
    --secondary-color: #097b7c;
    --ink: #555;

    --background-color: #FFEBD0;
    --bg-accent-color: #FFDBDE;
    --bg-white-color: #FFF8F5;
    --border-color: #ccc;

    --navbar-height: 48px;

    --body-font-size: 16px;

    --font-family-text-other: "M PLUS 2", sans-serif;
}

@media (max-width: 400px) {
    :root {
        --body-font-size: 0.9rem;
    }
}

body {
    font-family: var(--font-family-text);
    line-height: 1.6;
    font-weight: 300;
    font-size: var(--body-font-size);
    color: var(--base-color);
    /* width: 100%; */
    background-color: var(--background-color);
    padding-top: var(--navbar-height);
}

/* ── Navbar ── */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--primary-color);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.top-nav a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-brand-text {
    font-family: var(--font-family-text);
    font-weight: 300;
    /* font-style: italic; */
    color: var(--primary-color);
    padding-left: 0.6rem;
}

.lang-dropdown {
    position: relative;
    font-weight: 300;
    line-height: 1.8;
    font-size: 16px;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: 1px solid var(--base-color);
    border-radius: 4px;
    padding: 0.3rem 0.75rem;
    font-family: var(--font-family-text);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--base-color);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    letter-spacing: 0.02em;
}

.lang-dropdown-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-dropdown-btn svg {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.lang-dropdown.open .lang-dropdown-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    /* background: var(--bg); */
    /* border: 1px solid var(--rule); */
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* border-bottom: 1px solid var(--primary-color); */
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    font-family: var(--font-family-text-other);
    font-size: 0.85rem;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.12s;
    border-bottom: none;
}

.lang-dropdown-menu a:hover {
    background: rgba(250, 248, 245, 1);
    color: var(--primary-color);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}



/* ── Layout ── */
.wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comingsoon {
    margin-top: 2rem;
    margin-bottom: 3rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comingsoon img {
    max-width: 300px;
    width: 100%;
}

.comingsoon h1 {
    margin-bottom: 2rem;
}

.comingsoon p {
    text-align: center;
}

.rootpage {
    /* height: calc(100vh - 150px); */
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rootpage h1 {
    margin: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);   
}

.rootpage h2 {
    margin: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);   
}

.rootpage p {
    /* font-size: 1.2rem; */
    font-weight: 300;
}

/* ── Footer ── */
footer {
    text-align: center;
    padding: 1rem 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--ink);
}

footer strong { color: var(--ink); font-weight: 500; }

a { color: var(--primary-color); }

@media (max-width: 600px) {
    .wrap { padding: 0 1.2rem; }
}

@media (max-width: 400px) {
    .lang-dropdown-btn .lang-label {
        display: none;
    }
}



/* -------- dayring ---------*/

.bg-white {
    background-color: #f8fdff;
}

.container {
    padding: 20px;
}

h1, h2, h3, h4, h5 {
    font-weight: 300;
    font-family: var(--font-family-text);
}

h1.title {
    font-size: calc(2rem + 1.5vw);
    font-weight: 700;
    color: var(--primary-color);
}
h2 {
    margin-top: 2rem;
    margin-bottom: 1.75rem;
    /* font-weight: 500; */
}
h3 {
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

h4 {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

h5 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
}
.h-border {
    /* border-bottom: 1px solid #2fa2cd; */
    border-bottom: 1px solid #666;

}

.cheavenly-brand {
    font-size: 1.2rem;
    color: #444;
    letter-spacing: 0.1rem;
}

.cheavenly-brand img {
    background-color: #77c4e1;
    margin-right: 5px;
    transition: all 0.2s ease-in-out;
}
.cheavenly-brand:hover img,
.cheavenly-brand:active  img{
    background-color: #2fa2cd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}

.banner {
    width: 100%;
    border-radius: 15px;
}

.tagline {
    /* text-align: center; */
    font-size: 1.2rem;
    color: var(--cheavenly-primary-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.intro-text  {
    font-size: 1.2rem;
}

.stores {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.stores > * {
    padding: 1rem;
}

.reasons {
    display: flex;
    flex-direction: column ;
}

@media (min-width: 768px) {
    .reasons {
        /* display: flex; */
        flex-direction: row ;
        justify-content: space-between;
    }
}
.reason {
    flex: auto;
    background: var(--cheavenly-primary-color);
    padding: 0 20px;
    border-radius: 8px;
    /* border: 1px solid #e2e8f0; */
    margin: 0.5rem;
    min-width: 200px;
    text-align: center;
}

.reason h4 {
    color: #fcfcfc;
}

.reason p {
    text-align: center;
    color: #fcfcfc;
}

.emphasized {
    /* color: #2fa2cd; */
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom:10px;
}

.features {
    --feature-color: #212529;
    --feature-bg: #f8fdff;
    --feature-border-color: #cccccc;

    --bs-accordion-btn-color: var(--cheavenly-primary-color);
    --bs-accordion-active-color: var(--cheavenly-primary-color);
    --bs-accordion-btn-bg: #f8fdff;
    --bs-accordion-bg: #f8fdff;
    --bs-accordion-active-bg: #f8fdff;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0 rgba(1, 1, 1, 0);
}

.feature-item {
    color: var(--feature-color);
    background-color: var(--feature-bg);
    border: 1px solid var(--feature-border-color);
    border-bottom: 0;
    padding: 1rem;
}
.feature-item:first-of-type {
    border-top-left-radius: var(--bs-border-radius);
    border-top-right-radius: var(--bs-border-radius);
}

.feature-item:last-of-type {
    border-bottom-left-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius);
    border-bottom: 1px solid var(--feature-border-color);
}

.feature-title {
    padding: 1rem 0.6rem;
    color: var(--cheavenly-primary-color);
    /* font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--cheavenly-headline-font); */
}

.feature-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--cheavenly-headline-font);
    margin: 0;
}

.feature-body {
    padding: 0.5rem 1rem;
}

.feature-body h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

.feature-body h5 {
    font-size: 1.1rem;
    font-weight: 600;
    /* margin-top: 2rem; */
}


.small-note {
    font-size:0.9rem;
    border-radius: 8px;
    background-color: var(--cheavenly-bg-white-color);
    margin-bottom: 1rem;
    width: fit-content;
    padding: 1rem;
}

.small-note .material-symbols-outlined {
    vertical-align: bottom;
    font-size: 1.4rem;
}

.list-without-points {
    list-style-type: none;
    padding-left: 1rem;
}

.accordion-button:not(.collapsed) {
    box-shadow: 0 0 0 0 rgba(1, 1, 1, 0);
}

.button-ref {
    background:#f6ec10;
    /* color: white; */
    padding: 5px 8px;
    border-radius: 4px;
    border: 1px solid rgba(100, 100, 100, 0.25);
    font-weight: 500;
    font-family: monospace;
    font-size: 0.9em;
    white-space: nowrap;
    /* box-shadow: 0 -1px 2px 2px rgba(100, 100, 100, 0.25); */
}
.button-ref-blue {
    background-color: var(--cheavenly-primary-color);
    color: white;
}
.button-ref-gray {
    background-color: #f3f3f3;
}

.headline-font {
    font-family: var(--cheavenly-headline-font);
}

.sub-ph {
    margin: 15px;
}


.note {
    background: #f0fbff;
    /* border-left: 4px solid #81ceeb; */
    border: 1px solid #9dcbdb;
    padding: 5px 10px;
    margin: 15px;
    /* border-radius: 0 8px 8px 0; */
    border-radius: 8px;
    display: flex;
    flex-direction: row ;
    align-items: center;
}
.note .note-icon {
    padding: 8px;
    color: var(--cheavenly-primary-color);
}
.note p {
    margin-bottom: 0;
    padding: 7px;
}
@media (max-width: 400px) {
    .note {
        display: flex;
        flex-direction: column ;
        align-items: center;
    }
    .note .note-icon {
        padding: 5px;
    }
}

.additional-info {
    background: #f3f3f3;
    padding: 25px 20px 10px;
    border-radius: 8px;
    /* font-family: var(--cheavenly-headline-font); */
    /* font-weight: 600; */
    margin: 1rem 0;
    width: fit-content;
    
}

.additional-info ul {
    padding-left: 1.5rem;
}

.date-info {
    margin-bottom: 25px;
    font-size: 0.95em;
    color: #555;
}

.contact-info {
    background: var(--bg-white-color);
    padding: 25px 30px;
    border-radius: 8px;
    width: fit-content;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0;
}

.focused-info {
    background: var(--cheavenly-bg-white-color);
    padding: 25px 30px;
    border-radius: 8px;
    width: fit-content;
}

.focused-info p {
    margin-bottom: 0;
}

.focused-info p.emphasized {
    margin-bottom: 20px;
}

p {
    /* text-align: justify; */
    margin-bottom: 15px;
}

.highlight {
    background-color: #eeeeee;
    font-family: var(--cheavenly-headline-font);
    font-weight: 600;
    padding: 0 5px;
}

li {
    margin-bottom: 10px;
}

.app-link-container {
    display: flex;
    justify-content: center;
}
.app-link {
    display: block;
    width: fit-content;
    padding: 10px 20px;
    background-color: #77c4e1;
    color: #f8fdff;
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
}
.app-link:hover,
.app-link:active  {
    /* transform: scale(1.02); */
    background-color: #2fa2cd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}

.app-link img {
    width: 70px;
    padding-right: 10px;
}
.app-link-container a {
    text-decoration: none;
}
.app-link i {
    margin-left: 10px;
    font-size: 1.2rem;
}

.footer {
    padding-top: 40px;
    padding-bottom: 0;
    opacity: .7;

}
.footer p {
    margin-bottom: 0;
    text-align: center;
    font-size: .75rem;

}

hr {
   opacity: .7 
}

hr.last {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.material-symbols-outlined {
    vertical-align: middle;
}




/*
 * Carousel
 */
.carousel-container {
    max-width: 100%;
    width: 100%;
    position: relative;
    background: #f8fdff;
    border-radius: 10px;
    padding: 10px;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
}

.carousel-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2em;
    font-weight: 300;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    /* background: #f8f9fa; */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    /* flex: 0 0 33.333%; */
    flex: 0 0 25%;
    padding: 10px;
}

.carousel-slide img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 1px 10px 2px rgba(0,0,0,0.1);
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* 
.carousel-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
} 
*/

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-btn {
    /* background: linear-gradient(45deg, #667eea, #764ba2); */
    background: linear-gradient(45deg, #0290ba, var(--cheavenly-primary-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 2px 3px 6px 2px rgba(50, 50, 50, 0.2);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 10px rgba(65, 92, 110, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-indicators {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #0290ba;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 33.333%;
    }
}


@media (max-width: 768px) {
    .carousel-container {
        padding: 20px;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-slide img {
        /* height: 200px; */
        height: auto;
    }
    
    .carousel-title {
        font-size: 1.5em;
    }
}