/* =========================
   MN COFFEE
   DARK PREMIUM DESIGN
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0907;
    color: #f5eee5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}


/* =========================
   COLORS
========================= */

:root {
    --black: #0b0907;
    --dark: #120e0a;
    --brown: #21150e;
    --gold: #c88b48;
    --gold-light: #e4b66d;
    --cream: #f5eee5;
    --muted: #aaa096;
    --border: rgba(228, 182, 109, 0.2);
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background: rgba(11, 9, 7, 0.88);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid var(--border);

    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo > span {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);

    color: var(--gold-light);

    font-weight: 800;
    font-size: 17px;
}

.logo div {
    display: flex;
    flex-direction: column;
}

.logo strong {
    font-size: 17px;
    letter-spacing: 1px;
}

.logo small {
    font-size: 8px;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    font-size: 14px;
    color: #d0c8c0;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--gold-light);
}

.nav-order {
    padding: 12px 20px;
    background: var(--gold);
    color: #100b07 !important;
    border-radius: 5px;
    font-weight: 700;
}

.menu-btn {
    display: none;

    background: none;
    border: 0;

    color: white;
    font-size: 25px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 140px 6% 40px;

    background:
        linear-gradient(
            90deg,
            rgba(8, 6, 4, .96) 0%,
            rgba(8, 6, 4, .75) 45%,
            rgba(8, 6, 4, .25) 100%
        ),
        url("images/image.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.small-title,
.eyebrow {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.small-title i {
    margin-right: 8px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h1 span,
h2 span {
    color: var(--gold-light);
}

.hero-text {
    max-width: 610px;
    color: #c9c0b7;
    font-size: 17px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 25px;

    border-radius: 4px;

    font-weight: 700;
    font-size: 13px;

    transition: .3s;
}

.primary {
    background: var(--gold);
    color: #100b07;
}

.primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid var(--gold);
    color: white;
}

.secondary:hover {
    background: rgba(200, 139, 72, .12);
}


/* =========================
   HERO FEATURES
========================= */

.hero-features {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 80px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px 18px;

    border-right: 1px solid var(--border);
}

.feature:last-child {
    border-right: 0;
}

.feature i {
    color: var(--gold-light);
    font-size: 25px;
}

.feature h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.feature p {
    color: var(--muted);
    font-size: 11px;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 110px 6%;
}

.products {
    background: #eee7dd;
    color: #15100c;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

h2 {
    font-family: Georgia, serif;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.1;
}

.products h2 span {
    display: block;
}


/* =========================
   OUTLINE BUTTON
========================= */

.outline-btn {
    border: 1px solid #6f4b2d;
    padding: 12px 18px;

    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

.outline-btn:hover {
    background: #21150e;
    color: white;
}


/* =========================
   PRODUCTS
========================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================
   PREMIUM PRODUCT CARD
========================= */

.product-card {
    position: relative;

    background: #f8f2e9;

    border: 1px solid #d9cbbb;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* GOLD BOTTOM LINE */

.product-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #8b572a,
        #e4b66d,
        #8b572a
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.4s ease;
}


/* CARD HOVER */

.product-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.18);
}

.product-card:hover::after {
    transform: scaleX(1);
}


/* =========================
   PRODUCT IMAGE
========================= */

.product-image {
    position: relative;

    height: 300px;

    overflow: hidden;
}


/* DARK IMAGE OVERLAY */

.product-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        transparent 55%
    );

    pointer-events: none;
}


/* IMAGE */

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


/* IMAGE ZOOM */

.product-card:hover .product-image img {
    transform: scale(1.08);
}


/* =========================
   PRODUCT INFORMATION
========================= */

.product-info {
    position: relative;

    padding: 28px;
}


/* PRODUCT NUMBER */

.product-number {
    color: #a76c31;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* PRODUCT NAME */

.product-info h3 {
    color: #17100b;

    font-family: Georgia, serif;

    font-size: 26px;

    line-height: 1.2;

    margin: 8px 0 12px;
}


/* DESCRIPTION */

.product-info p:not(.product-number) {
    color: #665b52;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 23px;
}


/* =========================
   PRODUCT BUTTON
========================= */

.product-info a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #7b4b25;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}


/* BUTTON HOVER */

.product-info a:hover {
    gap: 15px;

    color: #a76c31;
}


/* =========================
   QUALITY
========================= */

.quality {
    background:
        radial-gradient(
            circle at center,
            #25170d,
            #0d0a07 65%
        );

    text-align: center;
}

.quality-heading {
    max-width: 700px;
    margin: auto;
}

.quality-heading > p:last-child {
    color: var(--muted);
    margin-top: 20px;
}

.quality-grid {
    max-width: 1100px;
    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quality-card {
    padding: 35px 25px;
    border-right: 1px solid var(--border);
}

.quality-card:last-child {
    border: 0;
}

.quality-card i {
    color: var(--gold-light);
    font-size: 32px;
    margin-bottom: 20px;
}

.quality-card h3 {
    margin-bottom: 10px;
}

.quality-card p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================
   ABOUT
========================= */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: #f0e9df;
    color: #15100c;
}

.about-image {
    height: 550px;
    overflow: hidden;
}

.about-image img {
    height: 100%;
    object-fit: cover;
}

.about-content {
    max-width: 560px;
}

.about-content > p:not(.eyebrow) {
    color: #645a51;
    margin-top: 22px;
}

.about-content .btn {
    margin-top: 25px;
}


/* =========================
   CONTACT
========================= */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    background: #0b0907;
}

.contact-intro {
    max-width: 550px;
}

.contact-intro > p:not(.eyebrow) {
    color: var(--muted);
    margin-top: 25px;
}

.contact-details {
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 15px;

    color: #ddd3ca;
}

.contact-details i {
    color: var(--gold-light);
    width: 20px;
}

.contact-form {
    padding: 35px;

    background: #15100c;

    border: 1px solid var(--border);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #cfc3b9;
    font-size: 12px;
    margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
    width: 100%;

    border: 1px solid rgba(255,255,255,.1);

    background: #0d0a08;

    color: white;

    padding: 14px;

    outline: none;

    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--gold);
}

.send-btn {
    border: 0;
    cursor: pointer;
    width: 100%;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 45px 6% 25px;

    background: #070605;

    border-top: 1px solid var(--border);

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 35px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo strong {
    color: var(--gold-light);
    letter-spacing: 1px;
}

.footer-logo span {
    color: #777;
    font-size: 9px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-left: auto;
}

.footer-links a {
    color: #aaa;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    color: #bbb;

    transition: .3s;
}

.socials a:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}

.copyright {
    width: 100%;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.07);

    color: #666;
    font-size: 11px;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;
    color: white;

    font-size: 27px;

    z-index: 900;

    box-shadow: 0 10px 30px rgba(0,0,0,.4);

    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .navbar {
        position: absolute;

        top: 82px;
        right: 0;

        width: 100%;

        padding: 25px;

        background: #0d0a08;

        display: none;
        flex-direction: column;

        align-items: stretch;

        border-bottom: 1px solid var(--border);
    }

    .navbar.show {
        display: flex;
    }

    .navbar a {
        padding: 12px;
    }

    .menu-btn {
        display: block;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quality-card:nth-child(2) {
        border-right: 0;
    }

    .quality-card {
        border-bottom: 1px solid var(--border);
    }

    .about,
    .contact {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 450px;
    }

    .footer-links {
        margin-left: 0;
    }
}


@media (max-width: 600px) {

    .header {
        padding: 0 5%;
    }

    .hero {
        padding: 130px 5% 30px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        margin-top: 60px;
    }

    .feature {
        padding: 18px 8px;
        border-right: 1px solid var(--border);
    }

    .feature i {
        font-size: 19px;
    }

    .section {
        padding: 75px 5%;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 260px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-card {
        border-right: 0;
    }

    .about-image {
        height: 350px;
    }

    .contact-form {
        padding: 22px;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
    }

}
/* =========================
   SCROLL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* Product animation delay */

.product-card:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card:nth-child(2) {
    transition-delay: 0.2s;
}

.product-card:nth-child(3) {
    transition-delay: 0.3s;
}


/* Quality animation delay */

.quality-card:nth-child(1) {
    transition-delay: 0.1s;
}

.quality-card:nth-child(2) {
    transition-delay: 0.2s;
}

.quality-card:nth-child(3) {
    transition-delay: 0.3s;
}

.quality-card:nth-child(4) {
    transition-delay: 0.4s;
}
/* =========================
   LANGUAGE SELECTOR
========================= */

.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 10px 13px;

    background: transparent;

    border: 1px solid var(--border);

    color: #ddd3ca;

    cursor: pointer;

    font-size: 12px;

    border-radius: 4px;
}

.language-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.language-menu {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 145px;

    padding: 6px;

    background: #15100c;

    border: 1px solid var(--border);

    box-shadow: 0 15px 40px rgba(0,0,0,.4);

    display: none;

    z-index: 2000;
}

.language-menu.show {
    display: block;
}

.language-menu button {
    width: 100%;

    padding: 11px;

    border: 0;

    background: transparent;

    color: #ddd3ca;

    text-align: left;

    cursor: pointer;

    font-size: 12px;
}

.language-menu button:hover {
    background: rgba(200,139,72,.12);
    color: var(--gold-light);
}


/* =========================
   PHONE
========================= */

@media (max-width: 900px) {

    .navbar {
        max-height: calc(100vh - 82px);
        overflow-y: auto;
    }

    .language-selector {
        width: 100%;
        margin-top: 5px;
    }

    .language-btn {
        width: 100%;
        justify-content: space-between;
    }

    .language-menu {
        position: static;

        width: 100%;

        margin-top: 5px;
    }

}
/* =================================
   PREMIUM MOBILE EXPERIENCE
================================= */

@media (max-width: 600px) {

    body {
        overflow-x: hidden;
    }

    /* HEADER */

    .header {
        height: 70px;
        padding: 0 18px;
    }

    .logo > span {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .logo strong {
        font-size: 14px;
    }

    .logo small {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .menu-btn {
        font-size: 22px;
    }


    /* MOBILE NAVIGATION */

    .navbar {
        top: 70px;
        padding: 18px;
        gap: 5px;
    }

    .navbar a {
        padding: 13px 10px;
        font-size: 14px;
    }

    .nav-order {
        text-align: center;
        margin-top: 5px;
    }


    /* LANGUAGE */

    .language-btn {
        padding: 13px;
    }


    /* HERO */

    .hero {
        min-height: 100svh;

        padding:
            120px
            18px
            25px;

        background-position: 62% center;
    }

    .hero-content {
        max-width: 100%;
    }

    .small-title {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 56px);
        line-height: 1.03;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 27px;
    }


    /* HERO BUTTONS */

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 50px;
    }


    /* FEATURES */

    .hero-features {
        grid-template-columns: 1fr 1fr;

        margin-top: 45px;
    }

    .feature {
        min-height: 85px;
        padding: 15px 8px;

        gap: 9px;
    }

    .feature i {
        font-size: 18px;
    }

    .feature h3 {
        font-size: 9px;
        line-height: 1.3;
    }

    .feature p {
        font-size: 9px;
        line-height: 1.3;
    }


    /* SECTIONS */

    .section {
        padding: 70px 18px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    h2 {
        font-size: 36px;
        line-height: 1.1;
    }


    /* SECTION HEADING */

    .section-heading {
        gap: 22px;
        margin-bottom: 30px;
    }

    .outline-btn {
        width: 100%;
        text-align: center;
    }


    /* PRODUCTS */

    .product-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        width: 100%;
    }

    .product-image {
        height: 230px;
    }

    .product-info {
        padding: 21px;
    }

    .product-info h3 {
        font-size: 23px;
    }

    .product-info p:not(.product-number) {
        font-size: 13px;
    }


    /* QUALITY */

    .quality {
        padding-left: 18px;
        padding-right: 18px;
    }

    .quality-heading {
        text-align: left;
    }

    .quality-grid {
        margin-top: 35px;

        display: grid;
        grid-template-columns: 1fr;
    }

    .quality-card {
        padding: 28px 5px;
        text-align: left;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .quality-card:last-child {
        border-bottom: 0;
    }


    /* ABOUT */

    .about {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .about-image {
        width: 100%;
        height: 330px;
    }

    .about-content {
        width: 100%;
    }

    .about-content .btn {
        width: 100%;
    }


    /* CONTACT */

    .contact {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 16px;
    }


    /* FOOTER */

    footer {
        padding: 40px 18px 25px;
        gap: 25px;
    }

    .footer-links {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .socials {
        width: 100%;
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 16px;

        font-size: 25px;
    }

}