/* ============================================================
   FONTS – ITC NOVARESE (SELF-HOSTED)
   ============================================================ */

@font-face {
    font-family: 'ITC Novarese';
    src: url('/_system/assets/fonts/itc-novarese/ITC-Novarese-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Novarese';
    src: url('/_system/assets/fonts/itc-novarese/ITC-Novarese-Std-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Novarese';
    src: url('/_system/assets/fonts/itc-novarese/ITC-Novarese-Ultra.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   ROOT VARIABLES
   ============================================================ */

:root {
    --chrome-white: #f9f9f9;
    --clean-white: #ffffff;
    --deep-black: #040202;
    --asphalt-grey: #3b3331;
    --steel-grey: #918f90;
    --ember-orange: #ff6400;
    --burnt-rust: #ad452e;

    --bg-dark: var(--deep-black);
    --bg-light: #f6f4f2;

    --font-main: 'Roboto', sans-serif;
    --font-headline: 'Oswald', sans-serif;
    --font-section: 'Inter', sans-serif;
    --font-serif: 'ITC Novarese', serif;

    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.75rem;
    --fs-xxl: 2.6rem;

    --radius: 8px;
    --shadow-soft: 0 6px 20px rgba(0,0,0,0.35);

    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;

    --max-width: 1440px;
}

/* ============================================================
   RESET & GLOBAL
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: #111;
    background:
        radial-gradient(ellipse at top, rgba(239,108,60,0.10), transparent 70%),
        linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.9)),
        var(--bg-dark);
    min-height: 100vh;
}

img { max-width: 100%; display: block; }

a {
    color: var(--ember-orange);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover { color: var(--burnt-rust); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: var(--fs-xxl);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clean-white);
}

h2 {
    font-family: var(--font-section);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--ember-orange);
}

h3 {
    font-family: var(--font-section);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clean-white);
}

.brand-serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

p {
    font-size: var(--fs-md);
    margin-bottom: var(--space-4);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section {
    padding: 0px 10px;
    background: linear-gradient(to bottom, #f6f4f2, #f1efed);
}

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-5); }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--space-5); }
/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

/* ============================================================
   CONTACT HEADER (TOP STRIP)
   ============================================================ */

.contact-header {
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.95),
        rgba(20,15,14,0.95)
    );
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
}

.contact-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px var(--space-4);
}

/* LEFT SIDE */

.contact-left {
    display: flex;
    gap: 18px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--chrome-white);
    opacity: 0.85;
    transition: 0.25s ease;
    white-space: nowrap;
}

.contact-item:hover {
    color: var(--ember-orange);
    opacity: 1;
}

/* WhatsApp highlight */

.contact-item.whatsapp {
    color: #25D366;
}

/* RIGHT SIDE CTA */

.contact-right {
    display: flex;
    align-items: center;
}

.contact-cta {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: 4px;

    background: var(--ember-orange);
    color: #000 !important;

    box-shadow:
        0 0 8px rgba(239,108,60,0.35),
        0 4px 14px rgba(0,0,0,0.5);

    transition: 0.25s ease;
}

.contact-cta:hover {
    background: var(--burnt-rust);
    color: #fff !important;
}

/* ============================================================
   MOBILE BEHAVIOUR
   ============================================================ */

@media (max-width: 768px) {
    .contact-header-inner {
        flex-direction: column;
        gap: 6px;
        padding: 6px 12px;
        text-align: center;
        display: none;
        visibility: hidden;
    }

    .contact-left {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-cta {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 88px;
    margin-top: 0px;
    background: var(--bg-dark);
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo img {
    height: 156px;
    margin-top: 79px;
}

/* Desktop nav */

.desktop-nav { display: none; }

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
        padding-right: 140px;
    }

    .desktop-nav ul {
        display: flex;
        gap: var(--space-5);
        list-style: none;
    }
    

}

.desktop-nav a {
    font-family: var(--font-serif);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clean-white);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ember-orange);
    transition: width 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Mobile */

.menu-btn {
    font-size: 28px;
    color: var(--clean-white);
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-btn { display: none; }
}

 

 

 
 
/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    padding: var(--space-7) 0;
    background-color: #010101;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-6);
}

.footer-bottom {
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    text-align: center;
    
}

.footer ul, .footer ul li{list-style:none;}
.footer h4 {color: var(--ember-orange) !important; font-size: 1.1em;}
.footer p{color:#fff;font-size:0.9em !important;}
.footer-bottom p{font-size:0.8em !important;}
.footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer a:hover {
    color: var(--ember-orange);
    opacity: 1;
}
.footer a {
    position: relative;
}

.footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--ember-orange);
    transition: width 0.25s ease;
}

.footer a:hover::after {
    width: 100%;
}


.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer ul li a {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}


.footer ul li {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer ul li:last-child {
    border-bottom: none;
}
.footer ul li a::before {
    content: "›";
    margin-right: 6px;
    color: var(--ember-orange);
    opacity: 0.6;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .hero-slider { height: 380px; }
    .footer .container { grid-template-columns: 1fr; text-align: center !important; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .site-header {
    margin-top: 0px;
    }
}
/* ============================================================
   FOOTER – MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .footer {
        padding: var(--space-6) 0;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: var(--space-5);
        text-align: center !important;
        font-size: 0.9rem;
    }

    .footer h4 {
        margin-bottom: 12px;
        font-size: 1rem;
        text-align: center;
        color: var(--ember-orange) !important;
    }

    .footer ul {
        text-align: center !important;
    }

    .footer ul li {
        border-bottom: none;
        padding-bottom: 4px;
        margin-bottom: 6px;
    }

    .footer ul li a {
        letter-spacing: -0.4px;
    }

    /* Remove arrow + underline clutter on mobile */
    .footer ul li a::before {
        display: none;
    }

    .footer a::after {
        display: none;
    }

    .footer p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center !important;
    }

    .footer-bottom {
        margin-top: var(--space-5);
        padding-top: var(--space-4);
        border-top: 1px solid rgba(255,255,255,0.04);
    }

    .footer-bottom p {
        font-size: 0.75rem !important;
        opacity: 0.75;
    }
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #0e0e0e;
  color: #fff;
  width: 100%;
  max-width: 480px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

.modal-box h2 {
  margin-bottom: 10px;
}

.modal-box p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-section);
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
}

.form-success {
  display: none;
  text-align: center;
}

.form-success h3 {
  margin-bottom: 10px;
}

.form-success p {
  opacity: 0.85;
}
