/* BRAND COLORS
  --color-primary: #1C1A1A;
  --color-secondary: #8A817C;
  --color-tertiary: #C43C2F;
  --color-bg: #F6F1E8;
  --color-text: black;
  --color-text-light: #F6F1E8; */



/* Header */
.header{
    height: var(--h-height);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--color-bg);
    color: var(--color-primary);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header > .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container{
    display: none;
}

#logo{
    font-size:var(--text-h3);
    font-weight: 00;
    font-family: var(--font-primary);
}

.hamburger{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: var(--h-height);
    gap: 8px;
}

.hamburger > span{
    background-color: var(--color-primary);
    height: 4px;
    width: 40px;
    border-radius: 20px;
}


@media(min-width: 800px){
    .hamburger{
        display: none;
    }

    .nav-container{
        display: flex;
        justify-content: space-between;
        min-width: 20rem;
    }

    .nav-button{
        font-size: var(--text-p);
        font-weight: 700;
    }
}

/* Slide Out */
.slide-out{
    position: fixed;
    top: var(--h-height);
    right: -100%;
    height: var(--av);
    width: 100%;
    background-color: var(--color-bg);
    z-index: 1000;
    transition: all 0.5s ease;
}

.slide-out.active{
    right: 0%;

}

.slide-out-a{
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding-top: var(--space-m);
    font-size: var(--text-h3);
}

.slide-out-a > *{
    font-family: var(--font-primary);
}

/* Hero */

.hero{
    position: relative;
    color: var(--color-bg);
}

.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 50%;
    z-index: 1;

}

.hero-image{
    position: absolute;
    object-fit: cover;
    object-position: center;
    height: var(--av);
    width: 100%;
}

.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(var(--av)*0.8);
    text-align: center;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 120ch;
    gap: var(--space-m);
}

/* About */
.about-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.about{
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

@media(min-width: 800px){
    .about{
        display: grid;
        grid-template-columns: 1.5fr 2fr;
        gap: 10px;
        align-items: start;
    }

    .about > h2{
        grid-column: 1 / 2;
    }

    .about > p{
        grid-column: 2 / 3;
    }
}

/* Service Card */

.service-container{
    background-color: var(--color-secondary);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.services{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-l)
}

@media(min-width: 800px){
    .services{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: var(--space-l);
    }
}

.service-card{
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
    
}

.card-header{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.service-card > img{
    object-fit: cover;
    object-position: center;
    max-height: 20rem;
    border-radius: 10px;
}

/* Review Slider */

/* =========================
   REVIEW SLIDER
========================= */

.review-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

/* your spacing system */
.inner.review {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* track */
.track {
    display: flex;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}

/* EACH SLIDE */
.slide {
    flex: 0 0 100%;
    width: 100%;

    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 300px;
}

/* content inside card */
.slide-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;

}

.slide-inner p{
    max-width: 70ch;
}

/* text */

.slide-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: var(--space-s);
    margin-bottom: var(--space-m);
}

.star {
    width: 24px;
    height: 24px;
}

/* controls */
.slider-controls {
    width: 90%;
    margin: 20px auto 0 auto;

    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;
    border: none;

    background-color: var(--color-secondary);

    cursor: pointer;

    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--color-primary);
}

/* Accordian */
.accordian-container{
    padding-bottom: var(--space-xl);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-bottom: 3px solid black;
    overflow: hidden;
    background: white;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.accordion-icon {
    font-weight: 1000;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.3s ease,
        padding 0.3s ease;

    padding: 0 1.25rem;
}

.accordion-content p {
    padding-bottom: 1.25rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-top: 0.5rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}



/* Maps embed */
.maps-container{
    background-color: var(--color-tertiary);
    color: var(--color-bg);
}

.maps-content{
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.maps{
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.opening{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

@media(min-width: 800px){
    .maps{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-l);
    }

    .map-embed{
        grid-column: 2 / 3;
    }

    .maps-content{
        grid-column: 1 / 2;
    }

    .maps-content > *{
        max-width: 600px;
    }
}

/* Footer Container */
footer{
    background-color: var(--color-primary);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    color: var(--color-bg);
}

.footer{
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

@media(min-width: 800px){
    .footer{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-items: center;
        align-items: start;
    }
}

.socials-container{
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    
    
}

.socials{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-l);
}

.socials > img{
    max-height: 3rem;
}

footer nav{
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    justify-self: start;
}


/* Contact Page */
.contact{
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;

}

.contact > p{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-lay{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: var(--space-l);
    margin: var(--space-xl) auto;
    max-width: 800px;
}

fieldset{
    border: none;
}

input{
    height: 3rem;
    border-radius: 5px;
    text-align: center;
    font-size: var(--text-p);
    font-family: var(--font-primary);
    color: var(--color-primary);

}

input, textarea{
    border-radius: 5px;
    border-color: black;
    border: 2px black solid;
    box-sizing: border-box;
    width: 100%;
}


/* Gallery */

.gallery{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--space-m);
    margin-bottom: var(--space-xl);
}

.gallery-grid{
    margin-top: var(--space-s);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-m);
}

.gallery-photo{
    height: 400px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    
}


@media(min-width: 800px){
    .gallery-grid{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 300px 300px 300px 300px 300px;
        gap: var(--space-m);
    }

    .gallery-photo{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
        
    }

    .gallery-grid > * {
    width: 100%;
    height: 100%;
}
}




#p1{
    grid-column: 1 / 2;
    grid-row: 1 /2;
}

#p2{
    grid-column: 2 / 3;
    grid-row: 1 /2;
}
#p3{
    grid-column: 3 / 4;
    grid-row: 1 /3;
}

#p4{
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

#p5{
    grid-column: 1 / 2;
    grid-row: 3 / 5;
}

#p6{
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

#p7{
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

#p8{
    grid-column: 2 / 4;
    grid-row: 4 / 5;
}

#p9{
    grid-column: 1 / 3;
    grid-row: 5 / 6;
}

#p10{
    grid-column: 3 / 4;
    grid-row: 5 / 6;
}


