/* =========================================================
   Global Reset & Base + font import
========================================================= */
@font-face {
    font-family: "Monument Extended";
    src: url("../assets/fonts/MonumentExtended-Ultrabold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Monument Extended";
    src: url("../assets/fonts/MonumentExtended-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Clash Grotesk Regular (400) */
@font-face {
    font-family: "Clash Grotesk";
    src: url("../assets/fonts/ClashGrotesk-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Clash Grotesk Extralight (200) */
@font-face {
    font-family: "Clash Grotesk";
    src: url("../assets/fonts/ClashGrotesk-Extralight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Clash Grotesk Light (300) */
@font-face {
    font-family: "Clash Grotesk";
    src: url("../assets/fonts/ClashGrotesk-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Clash Grotesk Medium (500) */
@font-face {
    font-family: "Clash Grotesk";
    src: url("../assets/fonts/ClashGrotesk-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Clash Grotesk Semibold (600) */
@font-face {
    font-family: "Clash Grotesk";
    src: url("../assets/fonts/ClashGrotesk-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Clash Grotesk Bold (700) */
@font-face {
    font-family: "Clash Grotesk";
    src: url("../assets/fonts/ClashGrotesk-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
    min-height: 100%;   
    overflow-x: hidden; 
}

html { scroll-behavior: smooth; } 

body {
    margin: 0;
    background: #000;                
    color: #f2f2f2;                   
    font-family: "Clash Grotesk";   
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(16px, 4vw, 40px);
}

/* Hide-only-for-visuals; keep for screen readers */
.sr-only {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
    border-bottom: 2px solid #333;
    position: relative;
    z-index: 9999;
}

.header-left,
.header-right {
    color: #fff;
    font-size: 40px;
    padding: 0 40px;
    cursor: pointer;
}

.header-center img {
    width: 160px;
    height: auto;
}

.burger-btn {
    background: none;
    border: none;
    z-index: 99999;  /* stays ABOVE the menu */
    color: #fff;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;                 
    background: #050505;           
    border-top: 1px solid #333;
    transform: translateY(-100%);  
    transition: transform 0.35s ease;
    z-index: 9998;
}

.nav-menu.open {
    transform: translateY(0);     
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 40px;      
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Center big menu text */
.nav-main {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.nav-main li + li {
    margin-top: 8px;
}

.nav-link {
    display: block;
    font-family: "Monument Extended", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(32px, 6vw, 64px);
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

.nav-link.active {
    color: #555555 !important;
    pointer-events: none;
}

.nav-link:hover {
  color: #82d199;
}

/* bottom row: copyright + socials */
.nav-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: "Monument Extended", sans-serif;
}

.nav-copy {
    margin: 0;
}

.nav-social {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-social-link {
    text-decoration: none;
    color: #ffffff;
}

.nav-social-link:hover {
    color: #82d199;
}

.burger-btn:hover {
    color: #82d199;
}

/* mobile tweak */
@media (max-width: 700px) {
    .nav-inner {
        padding: 100px 20px 32px;
    }

    .nav-footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================================
   CONTACT PAGE
========================================================= */
main {
    background: #111; 
    padding-top: 20px;
}

#contact-layout {
    display: flex;
    gap: clamp(24px, 5vw, 64px);
    align-items: flex-start;
}

#contact-content {
    flex: 1 1 620px;
}

#contact-art {
    padding-top: 50px;
    flex: 0 1 420px;
    display: flex;
    justify-content: center;
}

#contact-art img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,.7));
}

/* Contact Typography */
#contact-headline {
    font-weight: 500;
    font-family: "Monument Extended", sans-serif;    
    line-height: 0.95;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-size: 80px;
    text-transform: uppercase;
}

#contact-capt {
    color: #b9b9b9;
    max-width: 100%;
    margin: 0 0 28px;
    font-size: 20px;
}

.form-title {
    margin: 24px 0 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Contact Form boxes Layout */
#contact-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.two-col .field { 
    flex: 1 1 0; 
}

.field { 
    width: 100%; 
}

/* Contact Form boxes styling */
input {
    width: 100%;
    height: 60px; /* ✅ inputs tidy height */
    background: #1b1b1b;
    border: 1px solid #2a2a2a;
    color: #f2f2f2;
    padding: 16px 20px;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    font-family: "Clash Grotesk", sans-serif;
    font-size: 18px;
}

textarea {
    width: 100%;
    min-height: 200px; /* ✅ message area taller */
    background: #1b1b1b;
    border: 1px solid #2a2a2a;
    color: #f2f2f2;
    padding: 16px 20px;
    border-radius: 10px;
    outline: none;
    resize: vertical; /* allow user to expand */
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    font-family: "Clash Grotesk", sans-serif;
    font-size: 18px;
}

input::placeholder,
textarea::placeholder {
    color: #8b8b8b;
}

#message {
    min-height: 200px;  
    resize: vertical;  
}

input::placeholder,
textarea::placeholder { color: #8b8b8b; }

input:focus,
textarea:focus {
    border-color: #3a3a3a;
    box-shadow: 0 0 0 3px rgba(255,255,255,.07);
}

/* Submit button */
#submit-btn {
    width: 100%;
    height: 70px;
    background: #ffffff;
    color: #111;
    font-family: "Clash Grotesk";
    font-weight: 500;
    font-style: normal;
    font-size: 20px;    
    border: 0;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: transform .35s ease, filter .35s ease, box-shadow .35s ease;
}

#submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(.95);
    box-shadow: 0 10px 20px rgba(0,0,0,.25);

    background: #111;
    color: #f2f2f2;
    border: 2px solid #f2f2f2;
}

/* Error Prompt */
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: #ff5c7c;
    box-shadow: 0 0 0 3px rgba(255,92,124,.15);
}

.error-msg {
    color: #ff5c7c;
    font-size: 0.9rem;
    margin-top: 6px;
    display: none;                  
}

.error-msg.show { display: block; }

/* ============================
   FOOTER
============================ */
footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left side */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.logo-link img {
    display: block;
    transition: transform 0.6s ease-in-out;
}

.logo-link {
    display: inline-block;
    cursor: pointer;
}

.logo-link:hover img {
    transform: scale(1.1);
}

.footer-logo {
    width: 150px;
    height: auto;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-copy {
    font-family: "Monument Extended", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

/* Right side */
.footer-right {
    text-align: right;
}

.footer-right h3 {
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    text-decoration: underline;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-right li {
    margin-bottom: 6px;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

.back-to-top {
    font-family: "Monument Extended", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: #82d199;
}

/* =========================================================
    POP-CONFIRMATION
========================================================= */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.popup.show {
    visibility: visible;
    opacity: 1;
}

.popup-card {
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 50px 60px 0px 60px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid #82d199;
    animation: cardPop 0.4s ease;
}

@keyframes cardPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cheers-text {
    font-family: "Monument Extended", sans-serif;
    font-size: 40px;
    margin: 0;
}

.thanks-text {
    font-family: "Monument Extended", sans-serif;
    font-size: 46px;
    margin: 10px 0 20px;
    letter-spacing: 1px;
}

.popup-message {
    font-family: "Clash Grotesk", sans-serif;
    color: #b9b9b9;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.popup-image {
    width: 300px;
    margin-top: 30px;
}

#close-popup {
    display: block;
    margin: 20px auto 0;   
    background-color: #82d199;
    color: #111;
    border: none;
    border-radius: 10px;
    padding: 10px 40px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

#close-popup:hover {
    background-color: #70b786;
    transform: scale(1.05); 
}


/* =========================================================
   CONTACT PAGE — MOBILE
========================================================= */
@media (max-width: 768px) {

    #contact-headline {
        font-size: 36px !important;
        line-height: 1.05 !important;
        letter-spacing: 1px !important;
        word-break: break-word;
        text-align: left !important;
        padding: 0 16px !important;
    }

    /* Fix subtext */
    #contact-capt {
        font-size: 16px !important;
        line-height: 1.3 !important;
        padding: 0 16px !important;
    }

    /* Layout fix */
    #contact-layout {
        flex-direction: column;
        padding: 0 16px;
        gap: 32px;
    }

    #contact-art {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    #contact-art img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    /* Header fix */
       .header-left {
        display: none;
    }

    .header-center img {
        width: 120px;
        height: auto;
    }

    .site-header {
        justify-content: space-between;
        padding: 16px 16px;
    }

    .header-center {
        padding-left: 0;   
    }

    .burger-btn {
        padding-right: 0;  
    }


    /* FOOTER */
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
    }

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


