/* =========================================================
   AR VISUALS
   PREMIUM EVENT RENTAL WEBSITE
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #f8f5ef;
    color: #071a3b;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   COLORS
========================================================= */

:root {

    --navy: #031737;

    --navy-light: #071e45;

    --gold: #d99b32;

    --gold-light: #efbd62;

    --cream: #f8f5ef;

    --white: #ffffff;

    --text: #071a3b;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    width: 100%;

    min-height: 118px;

    background: var(--navy);

    display: flex;

    align-items: center;

    padding: 5px 4.5% 0;

    position: relative;

    z-index: 100;

    gap: 30px;

}



/* =========================================================
   LOGO
========================================================= */

.logo {

    width: 280px;

    min-width: 280px;

    height: 112px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--gold);

    line-height: 1;

    flex-shrink: 0;

    padding-top: 118px;

}


/* CROWN */

.crown {

    font-size: 28px;

    height: 29px;

    line-height: 29px;

    margin-bottom: 3px;

    color: var(--gold);

}


/* AR */

.ar {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 58px;

    font-weight: 600;

    letter-spacing: -4px;

    line-height: 0.8;

}


/* VISUALS */

.visuals {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

    letter-spacing: 8px;

    margin-left: 7px;

    line-height: 1;

}


/* LOGO TAGLINE */

.logo-line {

    color: white;

    font-size: 9px;

    letter-spacing: 1.1px;

    margin-top: 8px;

    white-space: nowrap;

}


/* =========================================================
   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;

    position: relative;

    padding: 10px 0;

    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 BUTTON
========================================================= */

.quote-btn {

    border: 1px solid var(--gold);

    color: var(--gold);

    padding: 15px 25px;

    min-width: 185px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    white-space: nowrap;

    transition: 0.3s;

}


.quote-btn:hover {

    background: var(--gold);

    color: var(--navy);

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-btn {

    display: none;

    background: transparent;

    border: none;

    color: var(--gold);

    font-size: 25px;

    cursor: pointer;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    width: 100%;

    height: 450px;

    min-height: 450px;

    display: grid;

    grid-template-columns: 43% 57%;

    background: var(--navy);

    overflow: hidden;

    position: relative;

}


/* =========================================================
   HERO LEFT
========================================================= */

.hero-content {

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 25px 6%;

    color: white;

    overflow: hidden;

}


/* GOLD CURVE */

.hero-content::before {

    content: "";

    position: absolute;

    left: -210px;

    top: -130px;

    width: 430px;

    height: 690px;

    border-radius: 50%;

    border: 1px solid
        rgba(217, 155, 50, 0.18);

    transform: rotate(16deg);

    pointer-events: none;

}


/* DECORATIVE DOTS */

.hero-content::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 220px;

    height: 420px;

    background:
        radial-gradient(
            circle,
            rgba(217, 155, 50, 0.13) 1px,
            transparent 1px
        );

    background-size: 14px 14px;

    opacity: 0.5;

    pointer-events: none;

}


/* =========================================================
   HERO ORNAMENT
========================================================= */

.ornament {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 290px;

    margin-bottom: 8px;

    position: relative;

    z-index: 5;

}


.ornament span:not(.ornament-crown) {

    width: 70px;

    height: 1px;

    background: var(--gold);

}


.ornament-crown {

    color: var(--gold);

    font-size: 20px;

}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {

    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 7px;

    position: relative;

    z-index: 5;

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(
        45px,
        4.2vw,
        63px
    );

    line-height: 0.94;

    font-weight: 600;

    color: white;

    position: relative;

    z-index: 5;

}


.hero h1 span {

    color: var(--gold);

}


/* =========================================================
   GOLD DIVIDER
========================================================= */

.gold-divider {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 13px 0;

    position: relative;

    z-index: 5;

}


.gold-divider span {

    width: 55px;

    height: 1px;

    background: var(--gold);

}


.gold-divider i {

    color: var(--gold);

    font-size: 8px;

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 470px;

    font-size: 14px;

    line-height: 1.7;

    color: #f0f0f0;

    position: relative;

    z-index: 5;

}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-btn {

    margin-top: 17px;

    border: 1px solid var(--gold);

    color: var(--gold);

    padding: 12px 20px;

    font-size: 13px;

    display: inline-flex;

    align-items: center;

    gap: 20px;

    transition: 0.3s;

    position: relative;

    z-index: 10;

}


.hero-btn:hover {

    background: var(--gold);

    color: var(--navy);

}


.hero-btn i {

    transition: 0.3s;

}


.hero-btn:hover i {

    transform: translateX(5px);

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {

    position: relative;

    overflow: hidden;

    height: 100%;

}



/* IMAGE */

.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


/* =========================================================
   FEATURES
========================================================= */

.features {

    background: var(--cream);

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    min-height: 112px;

    border-bottom:
        1px solid #ddd7cd;

    padding: 15px 5%;

}


.feature {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    padding: 8px 28px;

    border-right:
        1px solid #d9caa9;

}


.feature:last-child {

    border-right: none;

}


/* FEATURE ICON */

.feature-icon {

    width: 65px;

    height: 65px;

    min-width: 65px;

    border-radius: 50%;

    border:
        2px solid var(--gold);

    background: var(--navy);

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--gold);

    font-size: 22px;

}


.feature h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;

    margin-bottom: 3px;

    color: var(--text);

}


.feature p {

    font-size: 12px;

    line-height: 1.5;

    color: #333;

    max-width: 180px;

}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    background: var(--cream);

    padding: 35px 3.5% 45px;

}


.section-heading {

    text-align: center;

    margin-bottom: 25px;

}


.small-ornament {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-bottom: 5px;

}


.small-ornament span {

    height: 1px;

    width: 55px;

    background: var(--gold);

}


.small-ornament i {

    color: var(--gold);

    font-style: normal;

}


.section-heading h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 35px;

    letter-spacing: 2px;

    color: var(--text);

}


.section-heading p {

    font-size: 12px;

    color: #555;

    margin-top: 3px;

}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 20px;

    max-width: 1450px;

    margin: auto;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

    background: var(--navy);

    border: 1px solid var(--gold);

    overflow: hidden;

    box-shadow:
        0 7px 15px rgba(0,0,0,0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.product-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 25px
        rgba(0,0,0,0.22);

}


/* PRODUCT IMAGE */

.product-image {

    height: 155px;

    overflow: hidden;

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}


.product-card:hover
.product-image img {

    transform: scale(1.07);

}


/* PRODUCT INFO */

.product-info {

    min-height: 76px;

    padding: 9px 10px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    border-top:
        1px solid var(--gold);

}


.product-icon {

    width: 39px;

    height: 39px;

    min-width: 39px;

    border-radius: 50%;

    border:
        1px solid var(--gold);

    color: var(--gold);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 15px;

}


.product-info h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    color: var(--gold);

    font-size: 18px;

    letter-spacing: 0.5px;

}


.product-info p {

    color: white;

    font-size: 10px;

    margin-top: 3px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    padding: 90px 9%;

    background: white;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


.about-image {

    height: 430px;

    overflow: hidden;

}


.about-image img {

    height: 100%;

    object-fit: cover;

}


.section-label {

    color: var(--gold);

    letter-spacing: 2px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 12px;

}


.about-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 52px;

    line-height: 1;

    color: var(--text);

    margin-bottom: 25px;

}


.about-content h2 span {

    color: var(--gold);

}


.about-content > p:not(.section-label) {

    color: #555;

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 15px;

}


.dark-btn {

    display: inline-flex;

    gap: 20px;

    align-items: center;

    background: var(--navy);

    color: var(--gold);

    padding: 14px 25px;

    margin-top: 15px;

    font-size: 12px;

    border: 1px solid var(--gold);

    transition: 0.3s;

}


.dark-btn:hover {

    background: var(--gold);

    color: var(--navy);

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {

    background: var(--cream);

    padding: 70px 5%;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    max-width: 1400px;

    margin: auto;

}


.gallery-item {

    height: 230px;

    overflow: hidden;

    border:
        1px solid var(--gold);

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}


.gallery-item:hover img {

    transform: scale(1.06);

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(3,23,55,0.94),
            rgba(3,23,55,0.94)
        ),
        url("images/hero.jpg");

    background-size: cover;

    background-position: center;

    text-align: center;

    color: white;

}


.cta-content > p {

    color: var(--gold);

    letter-spacing: 2px;

    font-size: 12px;

    margin-bottom: 12px;

}


.cta-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 48px;

    margin-bottom: 25px;

}


.cta-content h2 span {

    color: var(--gold);

}


.cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 30px;

    border:
        1px solid var(--gold);

    color: var(--gold);

    font-size: 13px;

    transition: 0.3s;

}


.cta-btn:hover {

    background: var(--gold);

    color: var(--navy);

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    background: var(--navy);

    color: white;

    padding: 60px 8% 45px;

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1.2fr;

    gap: 50px;

}


.footer-logo {

    color: var(--gold);

}


.footer-ar {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 58px;

}


.footer-visuals {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    letter-spacing: 8px;

}


.footer-logo p {

    font-size: 10px;

    color: white;

    margin-top: 8px;

    letter-spacing: 1px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h3 {

    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    margin-bottom: 5px;

}


.footer-column a,
.footer-column p {

    color: #ddd;

    font-size: 12px;

    transition: 0.3s;



}


.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 11px;
    margin-top: -5px;
    transition: 0.3s;
}

.map-link:hover {
    color: white;
}

.map-link i {
    color: var(--gold);
    font-size: 13px;
}


.footer-column a:hover {

    color: var(--gold);

}


.footer-column p {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-column i {

    color: var(--gold);

}


/* =========================================================
   COPYRIGHT
========================================================= */

.copyright {

    background: #02122c;

    border-top:
        1px solid
        rgba(217,155,50,0.25);

    color: #aaa;

    text-align: center;

    padding: 15px;

    font-size: 11px;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: fixed;

    top: 80px;

    left: 0;

    width: 100%;

    background: var(--navy);

    z-index: 99;

    padding: 20px 25px;

    flex-direction: column;

    gap: 20px;

    border-top:
        1px solid
        rgba(217,155,50,0.3);

}


.mobile-menu.show {

    display: flex;

}


.mobile-menu a {

    color: white;

    font-size: 14px;

    padding: 10px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);

}


.mobile-menu a:hover {

    color: var(--gold);

}


.mobile-quote {

    border:
        1px solid var(--gold);

    color: var(--gold) !important;

    text-align: center;

}


/* =========================================================
   RESPONSIVE - 1200
========================================================= */

@media (max-width: 1200px) {

    .navbar {

        gap: 18px;

    }


    .logo {

        width: 235px;

        min-width: 235px;

    }


    .nav-links {

        gap: 22px;

    }


    .nav-links a {

        font-size: 12px;

    }


    .quote-btn {

        min-width: 160px;

        padding: 14px 15px;

        font-size: 12px;

    }


    .products-grid {

        gap: 12px;

    }

}


/* =========================================================
   RESPONSIVE - 1000
========================================================= */

@media (max-width: 1000px) {

    .navbar {

        min-height: 90px;

        height: 90px;

        padding:
            0 5%;

    }


    .logo {

        width: 220px;

        min-width: 220px;

        height: 85px;

        align-items: flex-start;

        text-align: left;

    }


    .crown {

        display: none;

    }


    .ar {

        font-size: 48px;

    }


    .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;

    }


    .hero {

        height: auto;

        min-height: 650px;

        grid-template-columns: 1fr;

    }


    .hero-content {

        min-height: 430px;

        padding: 50px 25px;

    }


    .hero-image {

        height: 400px;

    }


    .features {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .feature:nth-child(2) {

        border-right: none;

    }


    .feature:nth-child(1),
    .feature:nth-child(2) {

        border-bottom:
            1px solid #d9caa9;

    }


    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);

        max-width: 700px;

    }


    .about-section {

        grid-template-columns: 1fr;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    footer {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE - 600
========================================================= */

@media (max-width: 600px) {

    .navbar {

        height: 80px;

        min-height: 80px;

        padding: 0 5%;

    }


    .logo {

        width: 180px;

        min-width: 180px;

        height: 70px;

        justify-content: center;

    }


    .ar {

        font-size: 40px;

    }


    .visuals {

        font-size: 20px;

        letter-spacing: 5px;

    }


    .logo-line {

        display: none;

    }


    .hero {

        min-height: auto;

    }


    .hero-content {

        min-height: 470px;

        padding:
            45px 20px;

    }


    .hero h1 {

        font-size: 43px;

    }


    .hero-description {

        font-size: 13px;

        max-width: 350px;

    }


    .hero-image {

        height: 330px;

    }


    .features {

        grid-template-columns: 1fr;

        padding: 10px 20px;

    }


    .feature {

        border-right: none;

        border-bottom:
            1px solid #d9caa9;

        justify-content: flex-start;

        padding: 15px 5px;

    }


    .feature:last-child {

        border-bottom: none;

    }


    .products-grid {

        grid-template-columns: 1fr;

        max-width: 380px;

    }


    .product-image {

        height: 200px;

    }


    .section-heading h2 {

        font-size: 29px;

    }


    .about-section {

        padding: 60px 7%;

        gap: 35px;

    }


    .about-image {

        height: 300px;

    }


    .about-content h2 {

        font-size: 42px;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

    }


    .gallery-item {

        height: 250px;

    }


    .cta-content h2 {

        font-size: 38px;

    }


    footer {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 10%;

    }

}



/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.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);
}

/* MOBILE */
@media (max-width: 600px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 28px;
    }

}


/* =========================================================
   FOOTER INFORMATION
========================================================= */

.footer-info {
    background: #010e25;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 25px 8% 20px;
}

.footer-info-inner {
    max-width: 1200px;
    margin: auto;
}

.footer-info-title {
    color: #bbb !important;
    font-size: 10px !important;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.footer-info p {
    color: #777;
    font-size: 9px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 10px;
}

.footer-info-links a {
    color: #777;
    font-size: 9px;
    transition: 0.3s;
}

.footer-info-links a:hover {
    color: var(--gold);
}