/* =====================================================
   AR VISUALS - PRODUCTS PAGE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #f8f5ef;
    color: #071a3b;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --navy: #031737;
    --gold: #d99b32;
    --cream: #f8f5ef;
    --white: #ffffff;
    --text: #071a3b;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 100%;
    height: 170px;

    background: var(--navy);

    display: flex;
    align-items: center;

    padding: 5px 4.5% 0;

    gap: 30px;

    position: relative;
    z-index: 20;
}


/* LOGO */

.logo {
    width: 280px;
    min-width: 280px;
    height: 112px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    line-height: 1;
}

.crown {
    font-size: 28px;
    height: 29px;
    line-height: 29px;
}

.ar {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
}

.visuals {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    letter-spacing: 8px;
    margin-left: 7px;
}

.logo-line {
    color: white;
    font-size: 9px;
    letter-spacing: 1.1px;
    margin-top: 8px;
}


/* NAVIGATION */

.nav-links {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 40px;
}

.nav-links a {
    color: white;

    font-size: 14px;
    font-weight: 500;

    padding: 10px 0;

    position: relative;

    white-space: nowrap;

    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: var(--gold);
}


/* QUOTE */

.quote-btn {
    min-width: 185px;

    border: 1px solid var(--gold);

    color: var(--gold);

    padding: 15px 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    font-size: 14px;

    transition: 0.3s;
}

.quote-btn:hover {
    background: var(--gold);
    color: var(--navy);
}


/* MOBILE */

.menu-btn {
    display: none;

    background: transparent;
    border: none;

    color: var(--gold);

    font-size: 25px;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    display: none;
}


/* =====================================================
   PRODUCTS HERO
===================================================== */

.products-hero {

    height: 270px;

    position: relative;

    background:
        linear-gradient(
            rgba(3,23,55,0.91),
            rgba(3,23,55,0.91)
        ),
        url("images/light.png");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.products-hero-content {

    color: white;

}

.products-hero-content > p {

    color: var(--gold);

    letter-spacing: 3px;

    font-size: 12px;

    margin-bottom: 8px;

}

.products-hero-content h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;

    font-weight: 600;

    letter-spacing: 2px;

}

.breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin-top: 8px;

    font-size: 12px;

}

.breadcrumb a {
    color: white;
}

.breadcrumb span:last-child {
    color: var(--gold);
}


/* =====================================================
   INTRO
===================================================== */

.products-intro {

    padding: 80px 7% 55px;

    text-align: center;

    background: var(--cream);
}

.section-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-label span {

    width: 42px;

    height: 1px;

    background: var(--gold);
}

.products-intro h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 52px;

    line-height: 1;

    color: var(--text);

    margin-bottom: 20px;
}

.products-intro h2 span {
    color: var(--gold);
}

.products-intro > p {

    max-width: 650px;

    margin: auto;

    font-size: 13px;

    line-height: 1.8;

    color: #666;
}


/* =====================================================
   PRODUCTS SECTION
===================================================== */

.products-section {

    padding: 20px 7% 90px;

    background: var(--cream);
}


/* PRODUCT CARD */

.product-card {

    max-width: 1150px;

    margin: 0 auto 70px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: white;

    min-height: 430px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.06);
}

.product-card.reverse {
    direction: rtl;
}

.product-card.reverse .product-content {
    direction: ltr;
}


/* PRODUCT IMAGE */

.product-image {

    position: relative;

    height: 430px;

    overflow: hidden;

    background: #ddd;
}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.product-card:hover .product-image img {

    transform: scale(1.04);
}


/* NUMBER */

.product-number {

    position: absolute;

    top: 20px;

    left: 20px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: var(--navy);

    border: 1px solid var(--gold);

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;
}


/* PRODUCT CONTENT */

.product-content {

    padding: 65px 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.product-content > span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.product-content h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 46px;

    color: var(--text);

    margin-bottom: 18px;
}

.product-content p {

    color: #666;

    font-size: 13px;

    line-height: 1.8;

    max-width: 430px;

    margin-bottom: 25px;
}


/* PRODUCT BUTTON */

.product-btn {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 13px 22px;

    border: 1px solid var(--gold);

    background: var(--navy);

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 0.5px;

    transition: 0.3s;
}

.product-btn:hover {

    background: var(--gold);

    color: var(--navy);
}


/* =====================================================
   CTA
===================================================== */

.products-cta {

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            rgba(3,23,55,0.91),
            rgba(3,23,55,0.91)
        ),
        url("images/light.png");

    background-size: cover;

    background-position: center;
}

.products-cta p {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.products-cta h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 48px;

    margin-bottom: 20px;
}

.products-cta h2 span {

    color: var(--gold);
}

.products-cta a {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 13px 25px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 12px;

    transition: 0.3s;
}

.products-cta a:hover {

    background: var(--gold);

    color: var(--navy);
}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: #02122c;

    color: white;

    padding: 55px 8% 40px;

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1.2fr;

    gap: 50px;
}

.footer-brand {
    color: var(--gold);
}

.footer-ar {

    font-family: "Cormorant Garamond", serif;

    font-size: 55px;
}

.footer-visuals {

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;

    letter-spacing: 8px;
}

.footer-brand p {

    color: white;

    font-size: 9px;

    letter-spacing: 1px;

    margin-top: 7px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {

    font-family: "Cormorant Garamond", serif;

    color: var(--gold);

    font-size: 19px;

    margin-bottom: 5px;
}

.footer-column a,
.footer-column p {

    font-size: 11px;

    color: #ccc;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-column p {

    display: flex;

    align-items: center;

    gap: 9px;
}

.footer-column i {
    color: var(--gold);
}


/* =====================================================
   COPYRIGHT
===================================================== */

.copyright {

    background: #010e25;

    color: #999;

    text-align: center;

    font-size: 10px;

    padding: 14px;

    border-top:
        1px solid
        rgba(217,155,50,0.2);
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 31px;

    z-index: 9999;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .logo {
        width: 230px;
        min-width: 230px;
    }

    .quote-btn {
        min-width: 150px;
    }

}


@media (max-width: 950px) {

    .navbar {

        height: 90px;

        min-height: 90px;

        padding: 0 5%;
    }

    .logo {

        width: 210px;

        min-width: 210px;

        height: 85px;

        align-items: flex-start;

        text-align: left;
    }

    .crown {
        display: none;
    }

    .ar {
        font-size: 47px;
    }

    .visuals {

        font-size: 23px;

        letter-spacing: 6px;

        margin-left: 2px;
    }

    .logo-line {

        font-size: 8px;

        margin-left: 2px;
    }

    .nav-links,
    .quote-btn {
        display: none;
    }

    .menu-btn {

        display: block;

        margin-left: auto;
    }


    /* PRODUCTS */

    .product-card {

        grid-template-columns: 1fr;

    }

    .product-card.reverse {

        direction: ltr;
    }

    .product-image {

        height: 350px;
    }

    .product-content {

        padding: 50px;
    }


    footer {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .navbar {

        height: 80px;

        min-height: 80px;
    }

    .logo {

        width: 180px;

        min-width: 180px;

        height: 70px;
    }

    .ar {
        font-size: 40px;
    }

    .visuals {

        font-size: 20px;

        letter-spacing: 5px;
    }

    .logo-line {
        display: none;
    }


    /* HERO */

    .products-hero {

        height: 220px;
    }

    .products-hero-content h1 {

        font-size: 45px;
    }


    /* INTRO */

    .products-intro {

        padding: 60px 7% 40px;
    }

    .products-intro h2 {

        font-size: 42px;
    }


    /* PRODUCTS */

    .products-section {

        padding: 10px 5% 60px;
    }

    .product-card {

        margin-bottom: 45px;
    }

    .product-image {

        height: 260px;
    }

    .product-content {

        padding: 40px 28px;
    }

    .product-content h2 {

        font-size: 38px;
    }

    .product-content p {

        font-size: 12px;
    }


    /* CTA */

    .products-cta {

        min-height: 270px;

        padding: 40px 20px;
    }

    .products-cta h2 {

        font-size: 38px;
    }


    /* FOOTER */

    footer {

        grid-template-columns: 1fr;

        gap: 30px;

        padding: 45px 10%;
    }


    /* WHATSAPP */

    .whatsapp-float {

        right: 18px;

        bottom: 18px;

        width: 52px;

        height: 52px;

        font-size: 28px;
    }

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    top: 80px;

    left: 0;

    width: 100%;

    background: var(--navy);

    z-index: 15;

    padding: 20px 25px;

    flex-direction: column;

    gap: 15px;

    border-top:
        1px solid
        rgba(217,155,50,0.3);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {

    color: white;

    padding: 10px 0;

    font-size: 13px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);
}

.mobile-menu a:hover {
    color: var(--gold);
}