:root {
    --black: #080216;
    --pink: #f52553;
    --white: #ffffff;
    --text-color-darker: #1E132D;
    --text-color-dark: #2B193F;

}

@font-face {
    font-family: 'Fugaz One';
    src: url('assets/fonts/FugazOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #f2ebed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', Arial, sans-serif;

}

/*-----container-----*/
.container {
    max-width: 1200px;
    padding: 0 24px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/*-----typography-----*/
h1, .h1 {
    font-size: clamp(32px, 4vw + 4px, 48px);
    line-height: clamp(34px, 4vw + 4px, 50px);
    font-weight: 300;
    #text-transform: uppercase;
    font-family: 'Fugaz One', sans-serif;

}

h3, .h3 {
    font-size: clamp(24px, 4vw + 4px, 32px);
    line-height: clamp(26px, 4vw + 4px, 34px);
    font-weight: 300;
    font-family: 'Fugaz One', sans-serif;

}
p{
    font-size: clamp(16px, 4vw + 1px, 20px);
    line-height: clamp(18px, 4vw + 1px, 24px);
}
/*-----header-----*/

.header-main {
    background-color: var(--black);
    color: var(--white);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    gap: 24px;

    .logo-container {
        width: 85px;
        height: auto;
    }
}

/*-----buttons-----*/
.btn-primary {
    background: var(--pink);
    color: white;
    padding: 12px 36px;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;

    &:hover {
        box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px rgba(0, 0, 0, .14), 0 1px 10px rgba(0, 0, 0, .12);
        transition: box-shadow .4s cubic-bezier(.4, 0, .2, 1), transform .3s ease, filter .3s ease;
    }

    img {
        color: var(--white);
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }

}

/*-----footer-----*/
.site-footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 128px 0 224px 0;

    .logo-container {
        margin-bottom: 24px;

        img {
            width: 115px;
        }
    }
}


.footer-copyright {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.footer-links {
    margin-top: 0;
    font-size: 17px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.footer-links a:hover {
    color: var(--pink);
}

@media (max-width: 600px) {
    .footer-logo {
        max-width: 90px;
    }

    .footer-copyright {
        font-size: 15px;
    }

    .footer-links {
        font-size: 15px;
        gap: 16px;
    }

    .site-footer {
        padding: 32px 0 24px 0;
    }
}

/*-----hero image-----*/
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/images/elements/hero-image.jpg') top center/cover no-repeat;
    overflow: hidden;
    @media (max-width: 600px) {
        min-height: 60vh;

    }
}

.hero-content-container-inner {
    max-width: 60%;
    @media (max-width: 900px) {
        max-width: 75%;
    }

    @media (max-width: 600px) {
        max-width: 100%;
    }

}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-color-darker);

}

.hero-content .brand {
    color: var(--pink);
    font-weight: 700;
}

.hero-content p {
    margin-top: 24px;
    margin-bottom: 24px;
    color: var(--text-color-darker);

}

/*-----inspiration-----*/
.inspiration-content {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;
    color: var(--text-color-darker);
    @media (max-width: 900px) {
        flex-direction: column;
    }

}

.inspiration-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    img {
        width: 100%;
        max-width: 500px;
    }
}

.inspiration-text {
    flex: 1;
    width: 100%;
    text-align: center;

    p {
        margin-top: 24px;
    }
}

/*-----cta-----*/
.cta-content {
    margin-bottom: 64px;
}

.cta-image {
    width: 100%;

    img {
        width: 100%;
        object-fit: contain;
    }
}

.cta-text {
    margin-top: 64px;
    margin-bottom: 32px;

    .badge {
        color: var(--pink);
	font-size: clamp(32px, 4vw + 4px, 48px);
    	line-height: clamp(34px, 4vw + 4px, 50px);
    	font-weight: 300;
    	text-transform: uppercase;
    	font-family: 'Fugaz One', sans-serif;
    }
}

.cta-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    color: var(--text-color-darker);
    @media (max-width: 900px) {
        flex-direction: column;
    }

}

.feature {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    @media (max-width: 900px) {
        gap: 12px;
    }

}

.feature-icon {
    flex-shrink: 0;
    margin-top: 4px;
    display: flex;
    align-items: flex-start;
    justify-content: center;

    img {
        width: 40px;
        height: 40px;
        @media (max-width: 900px) {
            width: 30px;
            height: 30px;
        }
    }
}

.feature-text h3 {
    margin-bottom: 24px;
}

/*-----design showcase-----*/
.design-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 32px;
    @media (max-width: 900px) {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
        padding: 24px 0;
    }
}

.design-main {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-detail {
    display: flex;
    justify-content: center;
}

.design-main img,
.design-detail img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

@media (max-width: 900px) {
    .design-main,
    .design-detail {
        grid-row: auto;
        grid-column: auto;
    }

    .design-main img,
    .design-detail img {
        max-width: 90vw;
    }
}

/* Reversed layout for design showcase */
.design-showcase-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.design-showcase-content.reverse .design-main {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
}

.design-showcase-content.reverse .design-detail:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.design-showcase-content.reverse .design-detail:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

@media (max-width: 900px) {
    .design-showcase-content.reverse {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .design-showcase-content.reverse .design-main,
    .design-showcase-content.reverse .design-detail {
        grid-column: auto;
        grid-row: auto;
    }
}

/*-----quality-----*/
.quality-content {
    margin-top: 64px;
    margin-bottom: 64px;
}

.quality-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--white);

}

.quality-text {
    flex: 1;
    min-width: 220px;
    padding-bottom: 64px;
    padding-right: 24px;
    @media (max-width: 900px) {
        padding-right: 0;
    }

    .h1 {
        margin-bottom: 24px;
    }
}

.quality-image {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Distinct gradient backgrounds for each block */
.quality-block--top {
    padding-top: 64px;
    background: linear-gradient(180deg, var(--pink) 0%, var(--text-color-dark) 100%);
}

.quality-block--mid {
    background: linear-gradient(180deg, var(--text-color-dark) 0%, var(--black) 100%);

    .quality-text {
        padding-left: 48px;
        padding-right: 0;
        @media (max-width: 900px) {
            padding-left: 0;
        }
    }
}

.quality-block--bot {
    padding-bottom: 64px;
    background: linear-gradient(180deg, var(--black) 0%, var(--text-color-dark) 100%);
}


@media (max-width: 950px) {
    .quality-block {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .quality-image,
    .quality-text {
        min-width: 0;
    }
}

/*-----form-----*/

.form-section-content {
    padding: 24px;
    margin-top: 64px;
    margin-bottom: 82px;
    background-color: var(--pink);
    color: var(--white);
}

/*-----slider-----*/

.product-slider {
    overflow: hidden;
    padding: 24px 0;
}

.product-slider-container {
    position: relative;
    max-width: 1240px;
    margin: 60px auto;
}

.product-tiny-slider img {
    width: 100%;
    border-radius: 16px;
}

.custom-tiny-arrow {
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text-color-darker);
}

.tns-prev {
    left: -24px;
    @media (max-width: 900px) {
        left: 5px
    }
}

.tns-next {
    right: -24px;
    @media (max-width: 900px) {
        right: 5px;
    }
}

.tns-item {
    border-radius: 0;
    opacity: 0.6;

    &.tns-slide-active {
        opacity: 1;
    }

    &:hover {
        img {
            transition: transform .4s ease;
            transform: scale(1.2);
        }
    }
}

.slider-content {
    padding: 12px;
    border-radius: 5px;
    background-color: #d9d9d9;
}

.arrow-svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    display: block;
}

.tns-prev .arrow-svg {
    transform: scaleX(-1);
}

.tns-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.tns-nav button {
    width: 50px;
    height: 5px;
    border-radius: 3px;
    border: none;
    margin: 0 2px;
    cursor: pointer;
    background-color: #aca2b0;
}

.tns-nav button.tns-nav-active {
    background: var(--text-color-darker);
}

.tns-ovh {
    overflow: unset;
}

/*-----about-----*/
.about-container {
    padding-top: 64px;
    display: flex;
    justify-content: space-between;
    @media (max-width: 700px) {
        flex-direction: column;
    }

    p,.h1,h1,.h3,h3{
        margin-bottom: 24px;
    }
}
.about-logo{
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    img{
        max-width: 260px;
    }
}

ul{
    margin-left: 20px;
    margin-bottom: 36px;
    li{
        margin-bottom: 16px;
        font-size: clamp(16px, 4vw + 1px, 20px);
        line-height: clamp(18px, 4vw + 1px, 24px);
    }
}
