﻿:root {
    --cream: #efe3d2;
    --ink: #172830;
    --gold: #d99951;
    --rust: #84492a;
    --taupe: #a0998f;
    --bg: var(--cream);
    --text: var(--ink);
    --primary-color: #224961;
    --feature-card-width: 300px;
    --responsive-gutter-width: 10px;
    --staggered-translate-y: 30;
    --responsive-content-clamped-width: 300px;
}

html {
    font-size: 1em;
    scroll-behavior: smooth;
    scroll-padding-top: 125px;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color: var(--text);
    background: linear-gradient(180deg,var(--cream),#f6efe5);
    font-size:1.10em;
}
.btn-primary {
    --bs-primary: #d99951;
    --bs-btn-bg: #d99951;
    --bs-btn-border-color: #d99951;
    --bs-btn-color: #111;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b68248;
    --bs-btn-hover-border-color: #b68248;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #efe3d2;
    --bs-btn-active-border-color: #efe3d2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
    font-weight:bold;
}

.btn-outline-primary {
    --bs-primary: #efe3d2;
    --bs-btn-bg: #efe3d2;
    --bs-btn-border-color: #d99951;
    --bs-btn-color: #111;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b68248;
    --bs-btn-hover-border-color: #b68248;
}


.tag {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .75rem;
    background: rgba(217,153,81,.15);
    color: var(--rust);
    font-weight: 600;
    border: 1px solid rgba(217,153,81,.35)
}

.navbar-brand img {
    height: 100px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}


header {
    position: sticky;
    top: 0;
    backdrop-filter: saturate(180%) blur(8px);
    background: #eddac0bf;
    z-index: 100;
}

nav a {
    margin: 0 12px;
    font-weight: 600;
    opacity: .9
}

    nav a:hover {
        color: var(--rust)
    }

.hero {
    padding: 60px 0 30px
}

    .hero .wrap {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 28px;
        align-items: center
    }

.logo {
    width: 120px;
    height: auto
}
.logo-small{
   height:150px;
}

.lead {
    font-size: clamp(28px,5vw,48px);
    line-height: 1.05;
    margin: .3rem 0 1rem;
    font-weight: 800
}

    .lead .accent {
        color: var(--rust)
    }

.sub {
    font-size: 1.1rem;
    color: #33424a;
    max-width: 48ch
}

.cta {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-card {
    border-radius: 20px;
    border: 1px solid rgba(23,40,48,.1);
    background: linear-gradient(160deg, rgba(217,153,81,.12), rgba(239,227,210,.6));
    padding: 24px;
    text-align: center
}

section {
    padding: 64px 0
}

.section-title {
    font-size: clamp(24px,3.5vw,36px);
    margin: 0 0 8px;
    font-weight: 800
}

.section-sub {
    color: #5a6a72;
    margin: 0 0 24px
}


    section.sec-gray {
        background: #e8e8e8;
    }

.grid {
    display: grid;
    gap: 18px
}

.g-2 {
    grid-template-columns: repeat(2,1fr)
}

.g-3 {
    grid-template-columns: repeat(3,1fr)
}

.card {
    border-radius: 18px;
    border: 1px solid rgba(23,40,48,.08);
    background: #fff;
}

    .card h3 {
        margin: 0 0 6px
    }



.sec * a {
    text-decoration: none;
}

footer {
    padding: 30px;
    border-top: 1px solid rgba(23,40,48,.08);
    color: #42535b
}

.table {
    border-radius: 18px;
    border: 1px solid rgba(23,40,48,.1);
    overflow: hidden;
    background: #fff
}

.thead, .trow {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1.2fr 1.2fr
}

.thead {
    background: rgba(217,153,81,.18);
    font-weight: 700
}

.cell {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(23,40,48,.07)
}

.price {
    border: 2px solid rgba(217,153,81,.35)
}

.price.highlight {
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(217,153,81,.25)
}

.price h3 {
    color: var(--rust)
}

.price .amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--ink)
}

.price ul {
    padding-left: 18px;
    margin: 12px 0
}

.price li {
    margin: 8px 0
}
form input, form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(23,40,48,.15);
    border-radius: 12px;
    background: #fff
}

.field-validation-error{
    color:red;
}

form textarea {
    min-height: 110px
}

footer {
    border-top: 1px solid rgba(23,40,48,.08);
    padding: 28px 0;
    color: #42535b
}

@media (max-width: 860px) {
    .hero .wrap {
        grid-template-columns: 1fr
    }

    .g-2 {
        grid-template-columns: 1fr
    }

    .g-3 {
        grid-template-columns: 1fr
    }

    .thead, .trow {
        grid-template-columns: 1.2fr 1.2fr 1.2fr 1.2fr
    }
}
.login{
    max-width:500px;
}

.gallery {
    position: relative;
    
}

    .gallery .scroll-container {
        position: relative;
        overflow-x: scroll;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        scroll-padding: var(--responsive-gutter-width);
        padding: 10px 0 var(--staggered-translate-y, 30px);
        margin: -10px 0 calc(var(--staggered-translate-y, 30px) * -1);
        padding-bottom: 5px;
    }

    .gallery .item-container {
        width: var(--responsive-content-clamped-width);
        min-width: fit-content;
        min-width: fit-content;
        padding: 0 var(--responsive-gutter-width);
    }

    .gallery ul.card-set {
        padding: 0;
        margin: 0;
        text-indent: 0;
        list-style-type: none;
        grid-auto-flow: column;
        grid-template-columns: unset;
        grid-auto-columns: 1fr;
        grid-column-gap: var(--responsive-gutter-width);
        display: grid;
    }

    .gallery ul li {
        scroll-snap-align: start;
    }

.feature-card {
    position: relative;
    --feature-card-width: 400px;
    --feature-card-min-height: 680px;
    --feature-card-copy-color: #1d1d1f;
    --feature-card-caption-color: #1d1d1f;
    min-width: 430px;
    margin-right: 5px;
}

    .feature-card .card {
        height: stretch;
    }

.gallary-nav a img {
    width: 48px;
    height: 48px;
    filter: hue-rotate(40deg)
}

