:root {
    --color-accent: #B99755;
    --color-accent-light: #F7F4F1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
}

.fade-in-section {
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-out, visibility 300ms ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-section-visible {
    opacity: 1;
    visibility: visible;
}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
}
.bg-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    text-align: center;
    color: #fff;
}
.bg-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: rgba(0,0,0,0.4);
    z-index: 10;
}
.heading-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    line-height: 1;
    font-weight: 500;
    z-index: 20;
}
.heading-subtitle {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    z-index: 20;
}

.btn-header {
    margin-top: 20px;
    display: inline-block;
    background-color: transparent;
    padding: 14px 39px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 2px solid #fff;
    /* Transition colors */
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
    z-index: 30;
}
.btn-header:hover {
    background-color: #fff;
    color: #000000;
}

.down-button {
    position: absolute;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    color: #FFFFFF;
    border: 1px solid #fff;
    border-radius: 100%;
}

.down-button svg {
    width: 30px;
    height: 30px;
}

/* description-container */
.description-container {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
    padding: 85px 8px;
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: flex-start;
    justify-content: center;
    row-gap: 60px;
    column-gap: 60px;
}

@media (min-width: 1024px) {
    .description-container {
        padding: 85px 0;
        flex-wrap: nowrap;
    }
}
    
.description-subtitle {
    font-size: 14px;
    font-weight: 500;
    color:var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.12px;
}

.description-title {
    margin: 0;
    font-size: 54px;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

@media (min-width: 1280px) {
    .description-title {
        font-size: 64px;
    }
}
   

.description-text {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77;
    text-align: justify;
    text-justify: inter-word;
}

.description {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.description.expand {
    max-height: 100%;
}

.fade-out {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(transparent, white);
}

.show-more-button {
    cursor: pointer;
    margin-bottom: 20px;
}

/* lg:w-1/2 container */
@media (min-width: 1024px) {
    .lg\:w-1\/2 {
        width: 50%;
    }
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    padding: 14px 39px;
    color: var(--color-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 2px solid var(--color-accent);
    /* Transition colors */
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.features-container {
    padding: 85px 8px;
    background-color: var(--color-accent-light);
}

@media (min-width: 1024px) {
    .features-container {
        padding: 85px 0;
    }
}

.features-container .container-inner {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 60px;
}

.features-title {
    margin: 0;
    font-size: 54px;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

@media (min-width: 1024px) {
    .features-title{
        font-size: 64px;
    }
}
   

.features-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 60px;
    column-gap: 80px;
}

@media (min-width: 1024px) {
    .features-list {
        column-gap: 240px;
        flex-wrap: nowrap;
    }
}

.features-item {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    text-align: center;
}

@media (min-width: 1024px) {
    .features-item {
        width: auto;
    }
}


.feature-icon-text {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.feature-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: var(--color-accent);
}

.features-item-text {
    font-size: 18px;
    font-weight: 300;
}

.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 60px;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.features-grid-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #C3C3C3;
    font-weight: 300;
}

.features-item-label {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-accent);
}

.text-right {
    text-align: right;
}

.gallery-container {
    padding: 85px 0;
    background-color: #FFFFFF;
}

.gallery-container-inner {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.12px;
}

.swiffy-slider {
    margin-top: 40px;
}

/* tabs */
.nav-tabs {
    display: flex;
}

.nav-tabs li.tab {
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
}
.nav-tabs li.tab span {
    padding: 8px 5px;
    position: relative;
    font-weight: 500;
}

.nav-tabs li.tab span::before {
    content: '';
    background-color: var(--color-accent);
    width: 0;
    height: 1px;
    margin: auto!important;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}

.nav-tabs li.tab.is-active {
    font-weight: 500;
}
.nav-tabs li.tab.is-active span::before {
    width: 100%;
}

.tab-content {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

/* Video section */
.video-container {
    padding: 85px 0;
    background-color: var(--color-accent-light);
}

.video-container-inner {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-iframe {
    margin-top: 15px;
    width: 100%;
    height: 800px;
    border-radius: 8px;
}

/* Contact section */
.contact-container {
    padding: 85px 0;
    background-color: #ffffff;
}

.contact-container-inner {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.form-group{
    display: flex;
    column-gap: 30px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #000000;
    color: #000000;
}

.form-control::placeholder {
    color: #000000;
    transition: color 300ms ease-in-out;
}

.form-control:focus {
    outline: none;
}

.form-control:focus::placeholder {
    color: white;
}

.form-button {
    margin-top: 10px;
    display: inline-block;
    background-color: var(--color-accent);
    padding: 14px 39px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 2px solid var(--color-accent);
    /* Transition colors */
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}