:root {
    --gold: rgba(214, 182, 123, 1);
    --body-bckg: #000000;
    --section-bckg: rgba(21, 22, 24, 1);
}

/*
RESET CSS
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

ul, li {
    list-style: none;
}

a,
a *,
a > *,
a:before,
a:after {
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

a:hover {
    text-decoration: none;
    text-underline: none;
}

a {
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}


body {
    font-family: "Onest", sans-serif;
    font-weight: 400;
    color: #ffffff;
    background-color: var(--body-bckg);
    max-width: 1920px;
    width: 100%;
    margin-inline: auto;
}

h1,h2, h3 {
    color: var(--gold);
    text-transform: uppercase;
}

h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 20px;
}

h3 {
    font-size: 32px;
    line-height: 41px;
    font-weight: 300;
    margin-bottom: 32px;
    text-transform: capitalize;
}

p {
    opacity: .7;
    font-size: 22px;
    line-height: 34px;
    font-weight: 300;
}

header {
    position: fixed;
    max-width: 1920px;
    width: 100%;
    top: 0;
    z-index: 10000;
}

nav {
    padding: 30px 0 28px;
    display: flex;
    justify-content: flex-end;
}

#primary-menu .classic-button a {
    border-radius: 245px;
    background: linear-gradient(90.00deg, rgba(214, 182, 123, 1),rgba(255, 225.89788818359375, 172.24087524414062, 1) 100%);
    padding: 30px 80px;
    display: inline-block;
    color: var(--body-bckg);
    font-size: 22px;
    line-height: 14px;
    max-width: 100%;
    text-align: center;
    font-weight: 600;
}

#primary-menu .classic-button a:hover {
    background:  linear-gradient(90.00deg, rgba(255, 255, 255, 1),rgba(255, 225.89788818359375, 172.24087524414062, 1) 100%);
}

#primary-menu .header-button a {
    border: 1px solid rgba(214, 182, 123, 0.3);
    border-radius: 245px;
    backdrop-filter: blur(12px);
    background: rgba(21, 22, 24, 0.5);
    width: auto;
    color: var(--gold);
    padding: 12px 53px 14px 53px;
}

#primary-menu .header-button a:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 226, 172, 1) 100%);
    color: var(--body-bckg);
}

.large-container {
    width: 1600px;
    max-width: 100%;
    padding-inline: 15px;
    margin-inline: auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 335px;
    gap: 8px;
    margin-top: 60px
}

.gallery-wrapper {
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0);
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.gallery-wrapper:hover {
    border: 2px solid var(--gold);
}

.gallery-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

button:focus {
    outline: none;
}

#load-more, .outline-button {
    border: 1px solid rgba(214, 182, 123, 0.3);
    border-radius: 245px;
    color: var(--gold);
    background-color: rgba(255,255,255,0);
    margin-top: 45px;
    padding: 11px 53px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

#load-more:hover, .outline-button:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 226, 172, 1) 100%);
    color: var(--body-bckg);
}



/* Hero section */

.hero-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    background:rgba(21, 22, 24, 0.30);
}



section {
    padding-block: 80px;
    background-color: var(--section-bckg);
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    position: relative;
    width: 870px;
    max-width: 100%;
    margin-inline: auto;
    z-index: 10;
}

.hero-logo {
    margin-bottom: 145px;
}

 h1 {
    color: var(--gold);
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 20px;
    margin-bottom: 40px;
     text-transform: uppercase;
}

 .hero-section p {
     opacity: .7;
 }

/* Hero section */

/* Video section */

.video-section {
    position: relative;
    overflow: hidden;
    padding-block: 450px;
}

#video-section {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* Video section ends */

/* Gallery section starts */

.gallery-section {
    padding: 80px 0;
}

.gallery-head {
    width: 950px;
    max-width: 100%;
    margin-inline: auto;
}

.gallery-section h2 {
    margin: 0 auto 40px;
    width: 735px;
    max-width: 100%;
}

/* Gallery section ends */

/* Key Features section */

.features-section {
    overflow: hidden;
}

.key-features h2 {
    margin-bottom: 36px;
}

.features-section h2 {
    margin-bottom: 35px;
}

.features-section h3 {
    margin-top: 20px;
}

.features-icon-row {
    padding-block: 36px;
    margin-bottom: 20px;
}

.feature-icon {
    opacity: .2;
    cursor: pointer;
}

.slick-current.feature-icon {
    opacity: 1;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 32px;
    margin-top: 50px;
}

.slick-dots li {
    font-size: 0;
}

.slick-dots li button {
    padding: 0;
    width: 9px;
    height: 9px;
    background-color: rgba(214, 182, 123, .2);
    border-radius: 50%;
    border: none;
}

.slick-dots li.slick-active button {
    background-color: rgba(214, 182, 123, 1);
}



.features-icon-row  {
    width: 540px !important;
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
}

.arrow {
    padding: 16px 31px;
    border-radius: 57px;
    background: rgba(214, 182, 123, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.arrow span {
    -webkit-mask: url('/wp-content/uploads/2025/09/arrow-right.svg');
    width: 26px;
    height: 18px;
    display: inline-block;
    background-color: var(--gold);
    -webkit-mask-repeat: no-repeat;
}

.arrow:hover {
    background-color: var(--gold);
}

.arrow:hover span {
    background-color: var(--body-bckg);
}

.left-arrow span {
    -webkit-mask: url('/wp-content/uploads/2025/09/arrow-left.svg');
}

.features-info-row {
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

.features-info-slider {
    width: 755px;
    max-width: 100%;
    margin-inline: auto;
}

.features-icon-row .slick-track {
    display: flex !important;
    align-items: center;
    justify-content: center;
    column-gap: 64px;
}
/* Key Features section ends */

/* Specifications section */

.specifications-section h2 {
    margin-bottom: 70px;
}

.specification-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 0;
    border-top: 1px solid rgba(214, 182, 123, .2);
    column-gap: 44px;
}

.specification-item:last-of-type {
    border-bottom: 1px solid rgba(214,182,123,.2);
}

.specification-item p {
    width: calc(50% - 44px);
}

.specification-item p:first-of-type {
    text-align: right;
    opacity: 1;
    font-weight: 300;
}

.specification-item p:nth-of-type(2) {
    text-align: left;
}

.gold-text {
    color: var(--gold);
}

.specification-item:last-of-type p:first-of-type {
    text-align: center;
}

.specification-item span {
    display: inline-block;
    width: 15px;
}
/* Specifications section ends */


/* Why Section */
.why-container {
    width: 940px;
    max-width: 100%;
    margin-inline: auto;
}

.why-container h2 {
    margin-bottom: 40px;
}

.why-buttons {
    margin-top: 40px
}

.why-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    align-items: center;
}

.why-buttons a:first-of-type{
    border-radius: 245px;
    background: linear-gradient(90.00deg, rgba(214, 182, 123, 1),rgba(255, 225.89788818359375, 172.24087524414062, 1) 100%);
    padding: 30px 20px;
    display: inline-block;
    color: var(--body-bckg);
    font-size: 22px;
    line-height: 14px;
    width: 460px;
    max-width: 100%;
}

.why-buttons a:first-of-type:hover {
    background:  linear-gradient(90.00deg, rgba(255, 255, 255, 1),rgba(255, 225.89788818359375, 172.24087524414062, 1) 100%);
}

.outline-button {
    display: inline-block;
    padding-inline: 20px;
    width: 460px;
    max-width: 100%;
    margin-top: 0;
}

#social-menu {
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-top: 75px;
    justify-content: center;
}

#social-menu i {
    color: var(--gold);
    font-size: 22px;
}

/* Why Section */

/* Footer */

body footer a:hover, .footer-right ul li a:hover, #social-menu i:hover {
    color: #ffffff;
}

.footer-wrapper {
    padding-block: 40px;
    border-top: 1px solid rgba(214, 182, 123, .2);
    color: var(--gold);
    line-height: 18px;
}

.crafted-text p, .crafted-text p a, .middle-text p, .footer-right ul li a, .footer-right ul li, .copyright, .copyright-wrapper, .crafted-text  {
    color: var(--gold);
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    opacity: 1;
    display: inline-block;
}

.middle-text p {
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 400;
}

.footer-right, #privacy-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#privacy-menu, .footer-right {
    column-gap: 20px;
}

.footer-wrapper .row {
    align-items: center;
}

/* Form section starts */

.form-backdrope {
    background-image: url("/wp-content/uploads/2025/09/hero-banner-placeholder-1.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    overflow: auto !important;
}

.form-backdrope.active {
    z-index: 10;
    opacity: 1;
}

.form-wrapper, .form-confirmation {
    position: absolute;
    width: 735px;
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.form-wrapper form input, textarea {
    background-color: rgba(255,255,255,0) !important;
    border:none !important;
    outline: none !important;
    box-shadow: none !important;
    color: var(--body-bckg) !important;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    min-block-size: unset !important;
    border-radius: 0 !important;
}

textarea {
    height: 48px !important;
    resize: none !important;
    overflow: hidden !important;
}

.form-wrapper form, .form-confirmation {
    background-color: var(--gold) !important;
    padding: 100px 120px !important;
    border-radius: 20px !important;
}

::placeholder {
    font-size: 22px !important;
    display: block !important;
    font-weight: 300 !important;
}

.gform_fields {
    row-gap: 20px !important;
}

.form-wrapper form h2, .form-confirmation h2 {
    color: var(--body-bckg);
    text-align: center;
    font-size: 40px;
    letter-spacing: 0px;
    line-height: 51px;
    margin-bottom: 20px;
    text-transform: unset;
    font-weight: 500;
}

.form-wrapper form input[type="submit"] {
    border: 1px solid var(--body-bckg) !important;
    border-radius: 245px !important;
    font-size: 16px !important;
    padding-block: 12px !important;
    width: 100% !important;
    margin-top: 40px !important;
    font-weight: 600 !important;
    transition: 0.3s all ease-in;
}

.form-wrapper form input[type="submit"]:hover {
    background-color: var(--body-bckg) !important;
    color: var(--gold) !important;
}

.form-confirmation p {
    font-size: 22px;
    font-weight: 300;
    line-height: 28px;
    color: var(--body-bckg);
    text-align: center;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--body-bckg);
    width: 39px;
    height: 39px;
    border-radius: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.close-button:hover {
    transform: scale(1.1);
}

.close-button i {
    color: var(--gold);
}

/* Form section ends */

@media(min-width: 768px) {
    .features-icon-row .slick-cloned {
        display: none !important;
    }

    .features-icon-row .slick-track {
        display: flex !important;
        align-items: center;
        justify-content: center;
        column-gap: 64px;
        transform: none !important;
        width: 100% !important;
    }

    .feature-icon {
        width: 40px !important;
    }
}


    #hero-video {
        height: calc(100% + 630px);
        object-position: center -620px;
    }

@media(max-width: 1100px) {
    .footer-wrapper {
        text-align: center;
    }

    .footer-right, #privacy-menu {
        justify-content: center;
    }

    #privacy-menu, .footer-right {
        row-gap: 20px;
    }

    .middle-text, .crafted-text {
        margin-bottom: 20px;
    }

}

@media(max-width: 991px) {

    header {
        display: none;
    }

    h2 {
        letter-spacing: 10px;
    }

    h3 {
        letter-spacing: 0;
    }

    .hero-section {
        padding-block: 80px;
    }

    section {
        padding-block: 40px;
    }

    .hero-section img {
        width: 90%;
    }

    .hero-logo {
        margin-bottom: 70px;
        width: 70%;
        margin-inline: auto;
    }

    .gallery-container {
        grid-auto-rows: 250px;
        margin-top: 40px;
    }

    #social-menu {
        margin-top: 60px
    }

    .arrow {
        display: none;
    }
}

@media(max-width: 768px) {
    .gallery-container {
        grid-auto-rows: 160px;
        grid-template-rows: unset;
    }

    .specification-item {
        flex-direction: column;
        padding-block: 16px;
    }

    .specification-item p, .specification-item p:first-of-type, .specification-item:last-of-type p:first-of-type {
        width: 100%;
        text-align: left;
    }

    .specification-item:last-of-type p:first-of-type {
        margin: 0
    }

    .specification-item p:first-of-type {
        margin-bottom: 10px;
    }

    .specification-item p:nth-of-type(2) {
        font-size: 20px;
    }

    .specifications-section h2 {
        margin-bottom: 50px;
    }

    .specification-item span {
        display: block;
    }

    .form-wrapper form {
        padding: 50px 70px !important;
    }

    .form-confirmation {
        padding: 80px 40px !important;
    }

    .video-section {
        padding-block: 200px;
    }

}

@media(max-width: 575px) {
    .hero-section img {
        width: auto;
        height: 162px;
    }

    #hero-video {
        height: 100%;
        object-position: center -230px;
    }

    section {
        padding-block: 40px;
    }

    .gallery-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .video-section {
        padding-block: 165px;
    }

    h1 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 10px;
    }

    h2 {
        font-size: 20px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 10px;
    }

    p {
        font-size: 20px;
        line-height: 26px;
    }

    .hero-logo {
        width: 100%;
    }

    .key-features h2 {
        margin-bottom: 20px;
    }

    .slick-dots {
        margin-top: 40px;
    }

        .gallery-container {
            grid-template-columns: repeat(2,1fr);
            grid-auto-rows: 160px;
        }

        #load-more {
            margin-top: 20px;
        }

    .middle-text {
        margin-bottom: 35px;
    }

    .crafted-text {
        margin-bottom: 20px;
    }

    .crafted-text p {
        opacity: 1;
    }

    .footer-right, #privacy-menu {
        flex-direction: column;
    }

    footer .col-lg-4:first-of-type {
        order: 2
    }

    footer .col-lg-4:nth-of-type(2) {
        order: 1;
    }

    footer .col-lg-4:nth-of-type(3) {
        order: 3;
    }

   .form-wrapper form {
        padding: 40px !important;
    }

    .form-wrapper form h2 {
        font-size: 24px;
        font-weight: 400;
        line-height: 32px;
    }

    ::placeholder {
        font-size: 16px !important;
    }

    .specification-item p, .specification-item p:first-of-type, .specification-item:last-of-type p:first-of-type {
        font-size: 22px;
        font-weight: 300;
        line-height: 28px;
    }

    .specification-item p:nth-of-type(2) {
        line-height: 26px;
    }

    .why-section {
        padding-bottom: 60px;
    }
}

