/* =====================================================
   RUGHATS
   STYLE.CSS
   ===================================================== */


/* ================= VARIABLES ================= */

:root {

    --background: #f2efe8;

    --black: #111111;

    --gray: #6d6a64;

    --border: #d0cbc1;

    --card: #e5e0d6;

    --lime: #d9ff3f;

    --white: #ffffff;

}


/* ================= RESET ================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--background);

    color: var(--black);

    font-family: "Inter", Arial, sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


/* ================= HEADER ================= */

.header {

    height: 76px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    position: sticky;

    top: 0;

    z-index: 100;

    background: rgba(242, 239, 232, 0.95);

    backdrop-filter: blur(10px);

}


.logo {

    font-family: "Anton", sans-serif;

    font-size: 32px;

    letter-spacing: 1px;

}


.navigation {

    display: flex;

    gap: 35px;

}


.navigation a {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    transition: 0.2s;

}


.navigation a:hover {

    opacity: 0.5;

}


.menu-button {

    display: none;

    background: none;

    border: none;

    font-size: 26px;

    cursor: pointer;

}


/* ================= HERO ================= */

.hero {

    min-height: calc(100vh - 76px);

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-bottom: 1px solid var(--border);

}


.hero-content {

    padding: 10vh 7vw 8vh 9vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.eyebrow {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.hero h1 {

    font-family: "Anton", sans-serif;

    font-size: clamp(65px, 8vw, 125px);

    line-height: 0.87;

    letter-spacing: 1px;

}


.hero h1 span {

    color: transparent;

    -webkit-text-stroke: 2px var(--black);

}


.hero-description {

    max-width: 500px;

    margin-top: 35px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 35px;

    flex-wrap: wrap;

}


.button {

    padding: 15px 22px;

    border: 1px solid var(--black);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    transition: 0.2s;

}


.primary {

    background: var(--black);

    color: var(--background);

}


.primary:hover {

    transform: translateY(-3px);

}


.secondary:hover {

    background: var(--black);

    color: var(--background);

}


/* ================= HERO IMAGEN ================= */

.hero-image {

    background: #151515;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    position: relative;

}


.hero-image::before {

    content: "";

    position: absolute;

    width: 70%;

    aspect-ratio: 1;

    border: 1px solid #444;

    border-radius: 50%;

}


.hero-placeholder {

    width: 80%;

    height: 80%;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}


.placeholder-text {

    position: absolute;

    top: 5%;

    color: #777;

    font-size: 9px;

    text-align: center;

    letter-spacing: 3px;

    line-height: 1.6;

}


.fake-cap {

    width: 60%;

    height: 32%;

    background: #292929;

    border-radius: 55% 45% 35% 35%;

    transform: rotate(-8deg);

    box-shadow: 20px 30px 40px rgba(0,0,0,0.5);

}


.fake-cap::after {

    content: "";

    position: absolute;

    width: 55%;

    height: 22%;

    background: #292929;

    bottom: -10%;

    left: 48%;

    border-radius: 100% 0 0 10%;

}


.fake-plate {

    position: absolute;

    background: var(--background);

    padding: 12px 22px;

    font-family: "Anton", sans-serif;

    font-size: 25px;

    transform: rotate(-8deg);

    box-shadow: 8px 8px 0 var(--lime);

}


/* ================= TICKER ================= */

.ticker {

    background: var(--lime);

    padding: 13px 0;

    overflow: hidden;

    white-space: nowrap;

}


.ticker div {

    font-family: "Anton", sans-serif;

    font-size: 25px;

    letter-spacing: 2px;

    animation: ticker 20s linear infinite;

}


@keyframes ticker {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-30%);

    }

}


/* ================= SECCIONES ================= */

.section {

    padding: 110px 7vw;

}


.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 50px;

}


.section h2 {

    font-family: "Anton", sans-serif;

    font-size: clamp(60px, 7vw, 105px);

    line-height: 0.9;

}


.collection-info {

    text-align: right;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.5;

}


.collection-info strong {

    display: block;

    margin-top: 5px;

    color: var(--black);

    font-size: 17px;

}


/* ================= PRODUCTOS ================= */

.products {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}


.product {

    background: var(--card);

    border: 1px solid var(--border);

    transition: 0.25s;

    overflow: hidden;

}


.product:hover {

    transform: translateY(-6px);

}


.product-image {

    aspect-ratio: 1 / 1;

    position: relative;

    background: linear-gradient(145deg, #ddd8ce, #bbb5a9);

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.product-number {

    position: absolute;

    top: 15px;

    left: 15px;

    z-index: 5;

    font-family: "Anton", sans-serif;

    font-size: 22px;

}


.product-plate {

    position: absolute;

    z-index: 5;

    background: var(--background);

    padding: 7px 12px;

    font-family: "Anton", sans-serif;

    font-size: 13px;

    transform: rotate(-8deg);

    box-shadow: 4px 4px 0 var(--lime);

}


.product-info {

    padding: 18px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 15px;

}


.product-info h3 {

    font-size: 14px;

    margin-bottom: 7px;

    letter-spacing: 1px;

}


.product-info p {

    color: var(--gray);

    font-size: 11px;

}


.price {

    font-weight: 800;

    font-size: 13px;

    white-space: nowrap;

}


/* ================= ABOUT ================= */

.about {

    display: grid;

    grid-template-columns: 140px 1fr;

    gap: 50px;

    background: var(--black);

    color: var(--background);

}


.about-number {

    font-family: "Anton", sans-serif;

    font-size: 80px;

    color: var(--lime);

}


.about .eyebrow {

    color: #aaa;

}


.about-content p:last-child {

    max-width: 650px;

    margin-top: 35px;

    color: #aaa;

    font-size: 17px;

    line-height: 1.8;

}


/* ================= ACRÍLICO ================= */

.acrylic {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9vw;

    align-items: center;

}


.acrylic-visual {

    min-height: 520px;

    background: #ddd7cb;

    display: grid;

    place-items: center;

    position: relative;

    overflow: hidden;

}


.acrylic-visual::before {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    border: 1px solid #aaa;

    border-radius: 50%;

}


.acrylic-plate {

    width: 280px;

    height: 170px;

    background: rgba(235,245,255,0.35);

    border: 2px solid rgba(30,30,30,0.6);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    transform: rotate(-7deg);

    box-shadow: 25px 30px 50px rgba(0,0,0,0.15);

    backdrop-filter: blur(4px);

}


.acrylic-plate span {

    font-size: 9px;

    letter-spacing: 4px;

}


.acrylic-plate strong {

    font-family: "Anton", sans-serif;

    font-size: 48px;

}


.acrylic-plate small {

    font-size: 8px;

    letter-spacing: 3px;

}


.acrylic-content p:not(.eyebrow) {

    max-width: 560px;

    margin-top: 30px;

    color: var(--gray);

    line-height: 1.8;

}


.text-link {

    display: inline-block;

    margin-top: 25px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    border-bottom: 1px solid var(--black);

    padding-bottom: 7px;

}


/* ================= CUSTOM ================= */

.custom {

    background: var(--lime);

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8vw;

    align-items: end;

}


.custom-content p {

    color: var(--black);

    max-width: 550px;

    line-height: 1.8;

}


.coming-soon {

    display: inline-block;

    margin-top: 20px;

    border: 1px solid var(--black);

    padding: 10px 13px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* ================= CIERRE ================= */

.closing {

    background: var(--black);

    color: var(--background);

    padding: 120px 7vw;

    text-align: center;

    overflow: hidden;

}


.closing p {

    font-size: 10px;

    letter-spacing: 4px;

}


.closing h2 {

    font-family: "Anton", sans-serif;

    font-size: clamp(100px, 22vw, 340px);

    line-height: 0.8;

    color: var(--lime);

    margin-top: 30px;

}


/* ================= FOOTER ================= */

.footer {

    padding: 30px 5vw;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 20px;

    align-items: center;

    font-size: 10px;

}


.footer-logo {

    font-family: "Anton", sans-serif;

    font-size: 25px;

}


.footer p {

    color: var(--gray);

}


.footer p:last-child {

    text-align: right;

}


/* ================= TABLET ================= */

@media (max-width: 800px) {

    .header {

        height: 66px;

    }


    .menu-button {

        display: block;

    }


    .navigation {

        display: none;

        position: absolute;

        top: 66px;

        left: 0;

        right: 0;

        padding: 25px 6vw;

        background: var(--background);

        flex-direction: column;

        gap: 20px;

        border-bottom: 1px solid var(--border);

    }


    .navigation.open {

        display: flex;

    }


    .hero {

        grid-template-columns: 1fr;

    }


    .hero-content {

        padding: 80px 7vw;

    }


    .hero-image {

        min-height: 55vh;

    }


    .products {

        grid-template-columns: repeat(2, 1fr);

    }


    .section {

        padding: 80px 6vw;

    }


    .section-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .collection-info {

        text-align: left;

    }


    .about {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .about-number {

        font-size: 55px;

    }


    .acrylic,
    .custom {

        grid-template-columns: 1fr;

    }


    .footer {

        grid-template-columns: 1fr;

    }


    .footer p:last-child {

        text-align: left;

    }

}


/* ================= CELULAR ================= */

@media (max-width: 500px) {

    .logo {

        font-size: 27px;

    }


    .hero h1 {

        font-size: 62px;

    }


    .hero-image {

        min-height: 48vh;

    }


    .products {

        grid-template-columns: 1fr;

    }


    .section h2 {

        font-size: 62px;

    }


    .acrylic-visual {

        min-height: 380px;

    }


    .acrylic-plate {

        width: 240px;

        height: 145px;

    }


    .acrylic-plate strong {

        font-size: 40px;

    }


    .closing {

        padding: 90px 5vw;

    }

}