/* =========================
   GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #080808;
    color: #ffffff;
    overflow-x: hidden;
}

body::before {
    content: "QWESI_BUTIC™";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 9vw, 150px);
    font-weight: 800;
    letter-spacing: 8px;
    opacity: 0.035;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-22deg);
    white-space: nowrap;
}

h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.6);

    font-family: "Montserrat";
    font-weight: 700;
    font-size: 13px;
}

.official-logo {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border: 1px solid rgba(255,255,255,0.35);
    object-fit: contain;
    background: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-family: "Montserrat";
    font-size: 16px;
    letter-spacing: 2px;
}

.logo-text span {
    font-size: 8px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);

    transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: white;
}

.nav-button {
    border: 1px solid rgba(255,255,255,0.5);
    padding: 13px 20px;

    font-size: 10px;
    letter-spacing: 1px;

    transition: 0.3s;
}

.nav-admin-button {
    border: 1px solid rgba(245, 180, 0, 0.9);
    background: rgba(245, 180, 0, 0.12);
    padding: 13px 18px;

    font-size: 10px;
    letter-spacing: 1px;
    color: #f5b400;

    transition: 0.3s;
}

.nav-button:hover {
    background: white;
    color: black;
}

.nav-admin-button:hover {
    background: #f5b400;
    color: #111111;
}

.menu-button {
    display: none;

    background: none;
    border: none;
    color: white;

    font-size: 25px;
}


/* =========================
   HERO
========================= */

.hero {
    height: 100vh;
    min-height: 700px;

    position: relative;

    display: flex;
    align-items: center;

    background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2000&q=90");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.2)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 750px;

    margin-left: 10%;
    padding-top: 80px;
}

.small-heading,
.section-label {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.65;
}

.hero h1 {
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
}

.hero h1 span,
h2 span {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.hero-description {
    max-width: 500px;

    margin-top: 35px;

    color: rgba(255,255,255,0.7);

    line-height: 1.8;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 40px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 25px;

    font-size: 10px;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.primary-button {
    background: white;
    color: black;
}

.primary-button:hover {
    transform: translateY(-3px);
    background: #ddd;
}

.secondary-button {
    border: 1px solid rgba(255,255,255,0.5);
}

.secondary-button:hover {
    background: white;
    color: black;
}

.scroll-indicator {
    position: absolute;

    bottom: 35px;
    right: 6%;

    font-size: 8px;
    letter-spacing: 2px;

    opacity: 0.6;

    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    width: 35px;
    height: 1px;
    background: white;
}


/* =========================
   INTRO
========================= */

.intro {
    padding: 140px 10%;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    background: #0b0b0b;
}

.intro h2 {
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1;
}

.intro-description {
    display: flex;
    align-items: flex-end;
}

.intro-description p {
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    font-size: 14px;
}


/* =========================
   PRODUCTS
========================= */

.products-section {
    padding: 120px 6%;
    background: #080808;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1;
}

.view-all {
    font-size: 10px;
    letter-spacing: 1px;

    border-bottom: 1px solid rgba(255,255,255,0.4);

    padding-bottom: 8px;
}

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.product-card {
    height: 430px;

    position: relative;

    overflow: hidden;

    background: #151515;
}

.large-card {
    grid-row: span 2;
    height: 875px;
}

.product-card img {
    height: 100%;
    object-fit: cover;

    transition: 0.8s;
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0,0,0,0.85)
        );
}

.product-overlay p {
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.product-overlay h3 {
    font-size: 25px;
    line-height: 1;

    margin: 12px 0 25px;
}

.product-overlay a {
    font-size: 9px;
    letter-spacing: 1px;
}


/* =========================
   SERVICES
========================= */

.services {
    padding: 130px 10%;
    background: #eeeeee;
    color: #090909;
}

.services-heading {
    max-width: 800px;
    margin-bottom: 80px;
}

.services h2 {
    font-size: clamp(40px, 6vw, 75px);
    line-height: 0.95;
}

.services h2 span {
    -webkit-text-stroke: 1px #090909;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(0,0,0,0.2);
}

.service {
    min-height: 320px;

    padding: 30px;

    border-right: 1px solid rgba(0,0,0,0.2);

    position: relative;

    transition: 0.4s;
}

.service:hover {
    background: #dddddd;
}

.service-number {
    font-size: 10px;
    opacity: 0.5;
}

.service h3 {
    margin-top: 80px;

    font-size: 24px;
}

.service p {
    margin-top: 15px;

    font-size: 13px;
    line-height: 1.7;

    opacity: 0.6;
}

.service-arrow {
    position: absolute;

    right: 25px;
    bottom: 25px;

    font-size: 25px;
}


/* =========================
   ABOUT
========================= */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 700px;
}

.about-image {
    min-height: 600px;
}

.about-image img {
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 100px 10%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #111111;
}

.about-content h2 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 0.95;
}

.about-content > p:not(.section-label) {
    margin-top: 30px;

    color: rgba(255,255,255,0.6);

    line-height: 1.8;
    font-size: 14px;
}

.about-content .primary-button {
    align-self: flex-start;
    margin-top: 35px;
}


/* =========================
   CTA
========================= */

.value-section {
    padding: 120px 10%;

    display: grid;
    grid-template-columns: minmax(230px, 0.75fr) 1.25fr;
    gap: 90px;

    background: #151719;
    color: #ffffff;
}

.value-section .section-label,
.event-types .section-label {
    color: #926900;
    opacity: 1;
}

.value-section h2,
.event-types h2 {
    font-size: clamp(36px, 5vw, 68px);
    line-height: 0.95;
}

.value-section h2 span,
.event-types h2 span {
    color: transparent;
}

.value-section h2 span {
    -webkit-text-stroke: 1px #ffffff;
}

.event-types h2 span {
    -webkit-text-stroke: 1px #101112;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-item {
    min-height: 245px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.value-number {
    color: #a87900;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.value-item h3 {
    margin-top: 55px;
    font-size: 19px;
    line-height: 1.15;
}

.value-item p {
    margin-top: 15px;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
    line-height: 1.7;
}

.event-types {
    padding: 110px 10%;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;

    color: #101112;
    background: #f2f0ea;
}

.event-type-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.event-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 18px 20px;
    border: 1px solid rgba(16,17,18,0.24);
    color: #101112;
    background: transparent;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    text-align: left;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.event-type span {
    color: #f5b400;
    font-size: 18px;
}

.event-type:hover {
    color: #101112;
    background: #f5b400;
    transform: translateY(-3px);
}

.event-type:hover span {
    color: #101112;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;

    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px 8px 8px;
    border-radius: 40px;
    color: #ffffff;
    background: #20bd5a;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    font-size: 10px;
    font-weight: 700;
    transition: transform 0.25s, background 0.25s;
}

.whatsapp-float span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    color: #20bd5a;
    background: #ffffff;
    font-size: 9px;
    letter-spacing: 0.5px;
}

.whatsapp-float:hover {
    background: #159c49;
    transform: translateY(-4px);
}

.gallery-section {
    padding: 110px 10%;
    background: #101112;
}

.gallery-section .section-heading {
    align-items: end;
}

.gallery-intro {
    max-width: 280px;
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.gallery-item {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    background: #202224;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.gallery-item-overlay h3 {
    font-size: 17px;
}

.gallery-item-overlay p {
    margin-top: 7px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    line-height: 1.5;
}

.cta {
    padding: 120px 10%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #050505;

    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cta h2 {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 130px 10%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.97) 0%,
            rgba(5,5,5,0.88) 42%,
            rgba(5,5,5,0.72) 100%
        ),
        url("https://images.unsplash.com/photo-1501386761578-eac5c94b800?auto=format&fit=crop&w=2200&q=85");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact h2 {
    font-size: clamp(40px, 5vw, 65px);
    line-height: 0.95;
}

.contact-info > p:not(.section-label) {
    max-width: 450px;

    margin-top: 30px;

    color: rgba(255,255,255,0.6);

    font-size: 14px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 50px;

    display: flex;
    flex-direction: column;

    gap: 25px;
}

.contact-details small {
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 0.5;
}

.contact-details p {
    margin-top: 6px;
    font-size: 14px;
}

.contact-form {
    padding: 42px;

    display: flex;
    flex-direction: column;

    gap: 15px;

    background: rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow: 18px 18px 0 rgba(255,255,255,0.025);
}

.quote-form-heading {
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.form-success {
    padding: 13px 15px;

    color: #0b0b0b;
    background: #ffffff;

    font-size: 12px;
    line-height: 1.5;
}

.quote-form-heading .section-label {
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
}

.quote-form-heading h3 {
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1;
}

.quote-form-heading h3 span {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.quote-form-heading > p:last-child {
    max-width: 400px;
    margin-top: 15px;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.7;
}

.event-guidance {
    margin-top: 20px;
    padding: 13px 15px;
    border-left: 3px solid #f5b400;
    color: rgba(255,255,255,0.7);
    background: rgba(245,180,0,0.08);
    font-size: 12px;
    line-height: 1.6;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 17px 18px;

    background: rgba(0,0,0,0.28);

    border: 1px solid rgba(255,255,255,0.12);

    color: white;

    font-family: "Inter";

    font-size: 13px;

    outline: none;

    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.7);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

.contact-form select option {
    background: #111111;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;

    width: 100%;
    margin-top: 12px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 60px 6% 30px;

    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.footer-logo strong {
    font-family: "Montserrat";
    font-size: 20px;
    letter-spacing: 3px;
}

.footer-logo span {
    font-size: 8px;
    letter-spacing: 3px;
    opacity: 0.5;
}

footer > p {
    margin-top: 15px;

    font-size: 11px;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    justify-content: center;

    gap: 25px;

    margin-top: 30px;
}

.footer-links a {
    font-size: 10px;
    opacity: 0.6;
}

.footer-links a:hover {
    opacity: 1;
}

.tiktok-link {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.75);
    font-size: 11px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.tiktok-link:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.copyright {
    margin-top: 60px !important;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .navbar nav,
    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .navbar nav.mobile-menu {
        position: absolute;
        top: 90px;
        left: 5%;
        right: 5%;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(8,8,8,0.97);
    }

    .navbar nav.mobile-menu a {
        display: block;
        padding: 14px 18px;
    }

    .hero-content {
        margin-left: 7%;
        margin-right: 7%;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .large-card {
        grid-row: span 1;
        height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 500px;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .value-section,
    .event-types {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        box-shadow: 10px 10px 0 rgba(255,255,255,0.025);
    }
}


@media (max-width: 600px) {

    .navbar {
        padding: 0 5%;
    }

    .official-logo {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro,
    .products-section,
    .services,
    .contact {
        padding: 90px 7%;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .value-section,
    .event-types {
        padding: 90px 7%;
    }

    .value-grid,
    .event-type-list,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        min-height: auto;
    }

    .value-item h3 {
        margin-top: 28px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float strong {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .large-card {
        height: 450px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }

    .footer-links {
        flex-wrap: wrap;
    }

}