/* @import fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --crimson: #a30000;
    --red: #ff0000;
    --dark-grey: #121212;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lime: #8bc34a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


/* ==========================================================================
   2. NAVIGATION & DROPDOWN (PREMIUM CENTERED DESIGN)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

:root {
    --red: #ff0000;
    --transition: all 0.3s ease;
}

.xtreme-nav-header {
    background: #000;
    padding: 10px 0;
    border-bottom: 2px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* This pushes Logo Left and Nav Right */
    max-width: 100%;
    padding: 0 50px;
}

/* Ensure the nav-section doesn't grow and push the logo off-center */
.nav-section {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-container { padding: 0 20px; }
    
    .nav-section.right {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding-bottom: 20px;
    }

    .nav-container.mobile-active .nav-section.right {
        display: flex;
    }
}
/* --- NAVIGATION LINKS --- */
.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    display: block;
}

/* RED UNDERLINE EFFECT */
.main-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px; /* Lifted slightly to look cleaner */
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav > li > a:hover::after,
.main-nav > li > a.active::after {
    transform: scaleX(1);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: var(--red);
}

/* --- LOGO STYLING --- */
.logo-horizontal {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main-row { 
    display: flex; 
    align-items: baseline; 
    gap: 4px; 
}

.gregs { 
    color: var(--red); 
    font-family: 'Times New Roman', serif; 
    font-size: 1.8rem; 
    font-weight: bold; 
}

.x-accent { 
    color: var(--red); 
    font-family: Arial, sans-serif; 
    font-size: 2.2rem; 
    font-weight: 900; 
    font-style: italic; 
    line-height: 1; 
}

.treme { 
    color: #fff; 
    font-family: 'Times New Roman', serif; 
    font-size: 1.5rem; 
    font-weight: bold; 
}

.swoosh-line { 
    width: 100%; 
    height: 3px; 
    background: #8bc34a; 
    margin: 2px 0; 
    border-radius: 10px; 
}

.logo-sub-row { 
    color: #8bc34a; 
    font-family: 'Oswald', sans-serif; 
    font-size: 0.8rem; 
    letter-spacing: 4px; 
    text-align: center; 
    font-weight: 700; 
}

/* --- DROPDOWN LOGIC --- */
.dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 90%; /* Brought closer to the nav text */
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
    border-top: 3px solid var(--red);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
    z-index: 2100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    padding: 12px 25px;
    font-size: 13px;
    color: #bbb;
    display: block;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    transition: 0.3s;
    text-transform: uppercase;
}

.dropdown-menu a:hover {
    background: #111;
    color: var(--red);
    padding-left: 35px; /* Slide effect on hover */
}

/* This creates an invisible bridge between the link and the menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px; /* This covers the gap above the menu */
    left: 0;
    right: 0;
    height: 20px;
    background: transparent; /* Invisible to the user */
}


/* --- DESKTOP VIEW (Default) --- */
@media (min-width: 993px) {
    .mobile-menu-btn { display: none !important; }
    .nav-section.right { display: flex !important; position: static !important; }
}

/* --- MOBILE VIEW --- */
@media (max-width: 992px) {
    /* Explicitly override to show the button */
    .mobile-menu-btn {
        display: block !important; 
        color: white;
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
        z-index: 99999;
        position: relative;
    }

    .nav-section.right {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-top: 2px solid var(--red);
        z-index: 9999;
    }

    .nav-container.mobile-active .nav-section.right {
        display: flex !important;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
    }
}


/*=================================================================
CONTACT  FORM
==================================================================*/

.contact-hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(163, 0, 0, 0.08), transparent 50%),
                radial-gradient(circle at bottom left, rgba(139, 195, 74, 0.05), transparent 40%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    margin-bottom: 50px;
}

.header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.header-content h1 span {
    color: var(--crimson);
    position: relative;
    text-shadow: 0 0 30px rgba(163, 0, 0, 0.3);
}

.header-content p {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* This switches the layout to one column */
        gap: 20px; /* Reduces the gap for mobile to save space */
    }
}

.glass-form {
    background: rgba(10, 10, 10, 0.6);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.glass-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: var(--crimson);
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 24px;
    position: relative;
}

label {
    display: block;
    font-family: 'Oswald', sans-serif;
    color: #888;
    margin-bottom: 8px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.input-group:focus-within label {
    color: var(--crimson);
}

input, select, textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
    font-family: 'Inter', sans-serif;
}

input::placeholder, textarea::placeholder {
    color: #555;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--crimson);
    outline: none;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 0 4px rgba(163, 0, 0, 0.15), inset 0 2px 4px rgba(0,0,0,0.5);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a30000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 48px;
}

/* Glowing Form Button */
.glow-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--crimson) 0%, #7d0000 100%);
    color: #fff;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(163, 0, 0, 0.3);
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
    z-index: -1;
}

.glow-btn:hover::before {
    left: 100%;
}

.glow-btn:hover {
    box-shadow: 0 15px 35px rgba(163, 0, 0, 0.5), 0 0 10px rgba(163, 0, 0, 0.3);
    transform: translateY(-2px);
}

.glow-btn:active {
    transform: translateY(1px);
}

.info-card {
    background: linear-gradient(145deg, #0f0f0f 0%, #060606 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--crimson);
    transform: scaleY(0.3);
    transform-origin: bottom;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(163, 0, 0, 0.2);
    box-shadow: 0 20px 45px rgba(163, 0, 0, 0.1);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    color: #fff;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    color: var(--crimson);
    font-size: 1.1rem;
}

.info-card p, .info-card a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight {
    color: #fff !important;
    font-weight: 600;
}

/* Interactive Map Box */
.map-container {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(100%) invert(90%) contrast(100%);
    transition: var(--transition);
}

.map-container:hover {
    filter: none;
    border-color: var(--crimson);
}

.status-badge {
    float: right;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.status-badge.open {
    color: #4cbb17;
    background: rgba(76, 187, 23, 0.1);
    border-color: rgba(76, 187, 23, 0.3);
    text-shadow: 0 0 10px rgba(76, 187, 23, 0.2);
}

.status-badge.closed {
    color: #ff3333;
    background: rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
    display: inline-block;
}

.status-badge.open .status-dot {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 187, 23, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(76, 187, 23, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 187, 23, 0); }
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 8px 0;
    margin: 0;
}

.hours-list p:last-child {
    border-bottom: none;
}

.hours-list p span:first-child {
    color: #888;
    font-weight: 500;
}

.hours-list p span:last-child {
    color: #fff;
    font-weight: 600;
}

.hours-list p.highlight-day span:first-child {
    color: var(--crimson);
}

/* XTREME INDUSTRIAL FOOTER */
.xtreme-footer {
    background: #000;
    position: relative;
    padding-top: 20px; /* Reduced from 60px */
    margin-top: 90px;  /* Brought closer to the section above */
    color: #fff;
}

/* The aggressive diagonal top edge - Made slightly shallower */
.footer-top-slant {
    position: absolute;
    top: -30px; /* Reduced from -40px */
    left: 0;
    width: 100%;
    height: 60px; /* Reduced from 80px */
    background: #000;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    border-top: 4px solid #d90000;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px; /* Thinner padding */
    margin-top: 60px;
}

.footer-main {
    text-align: center;
    padding-bottom: 20px; /* Reduced from 40px */
}

/* Big Bold Branding - PULLED UP HIGHER */
.footer-logo-section {
    margin-top: -60px; /* This pulls the logo UP into the slant */
    position: relative;
    z-index: 5;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem; /* Made slightly bigger since it's the hero now */
    letter-spacing: -1px;
    margin-bottom: 0px; 
}

.footer-logo span {
    color: #d90000;
    -webkit-text-stroke: 1px #d90000;
}

.footer-logo-section p {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px; /* Reduced from 30px */
}

.footer-divider {
    width: 40px; /* Smaller divider */
    height: 3px;
    background: #d90000;
    margin: 0 auto 30px; /* Reduced from 50px */
}

/* 3-Column Info Grid - MORE COMPACT */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; /* Reduced from 40px */
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 20px; /* Reduced from 40px */
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #d90000;
    margin-bottom: 10px;
}

.footer-col p, .footer-col a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; /* Slightly smaller text */
    color: #aaa;
    text-decoration: none;
    line-height: 1.4;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    padding: 15px 0; /* Reduced from 30px */
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 1px;
    margin: 0;
}

.footer-map {
    margin-top: 15px;
    border: 1px solid #1d1b1b; /* Dark border to match theme */
    border-radius: 4px;
    overflow: hidden;
    filter: grayscale(100%) invert(90%) contrast(100%); /* Optional: Makes the map dark-themed */
    transition: 0.3s;
}

.footer-map:hover {
    filter: none; /* Map turns to full color on hover */
}

.footer-map iframe {
    display: block;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #111; /* Dark background */
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-socials svg {
    width: 18px; /* Perfectly sized inside the circle */
    height: 18px;
    fill: #fff; /* Icons start as white */
    transition: fill 0.3s ease;
}

.footer-socials a:hover {
    background: #000;
    border-color: #d90000; /* Red border on hover */
    transform: translateY(-3px);
}

.footer-socials a:hover svg {
    fill: #d90000; /* Icons turn red on hover */
}

/* Clean Alignment for Hours Column */
.hours-wrap p {
    display: flex;
    justify-content: space-between; /* Pushes time to the right */
    border-bottom: 1px solid #111; /* Subtle divider */
    padding-bottom: 5px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.hours-wrap p span:first-child {
    color: #d90000; /* Red days */
    font-weight: bold;
}

/* Ensure social icons are aligned left under the title */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: center; /* Center them for the main-section feel */
}

/* Make sure the grid handles the center column correctly */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
    }
}

/* ==========================================================================
   8. UTILITIES & ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 768px) {
    .origin-container { flex-direction: column; text-align: center; }
    .hero-content-cool h1 { font-size: 3.5rem; }
    .card-stack { width: 280px; height: 400px; }
    .pos-2 { transform: translate3d(40%, 0, -200px) scale(0.7); }
    .pos-3 { transform: translate3d(-40%, 0, -200px) scale(0.7); }
}



/* Form notifications alerts */
.notification-box {
    display: none;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid;
    animation: fadeIn 0.4s ease-out forwards;
}

.notification-box.success {
    background: rgba(76, 187, 23, 0.1);
    border-color: rgba(76, 187, 23, 0.3);
    color: #4cbb17;
}

.notification-box.error {
    background: rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.3);
    color: #ff3333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .glass-form {
        padding: 25px;
    }
}

