/* --- MASTER SITE STYLESHEET: xSevernxPrint --- */

:root {
    --accent-blue: #00d2ff;
    --dark-bg: #050505;
}

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

body { 
    background: var(--dark-bg); 
    color: white; 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
}

/* --- SHARED NAVBAR --- */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.2rem 5%; 
    background: #000; 
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    align-items: center; 
}

.nav-links li a { 
    text-decoration: none; 
    color: #fff; 
    margin-left: 2rem; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    transition: 0.3s; 
}

.nav-links li a.active { color: var(--accent-blue); }

/* --- AMAZING CREATIVE STUDIO LINK --- */
.btn-studio {
    position: relative;
    background: rgba(0, 210, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-blue) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    color: var(--accent-blue) !important;
    font-weight: 900 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    transition: 0.5s all ease;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.btn-studio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn-studio:hover {
    background: var(--accent-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
    transform: scale(1.05);
}

/* --- HOMEPAGE SPLIT HERO --- */
.split-hero {
    display: flex;
    height: calc(100vh - 85px);
    overflow: hidden;
    position: relative;
}

.hero-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: flex 0.7s ease-in-out;
    overflow: hidden;
}

.hero-side:hover { flex: 1.5; }

.hero-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: pro-zoom 20s infinite alternate ease-in-out;
}

.embroidery-side::before { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/thread-texture.jpg'); }
.printing-side::before { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/vinyl-texture.jpg'); animation-delay: -5s; }

@keyframes pro-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

/* --- CONTENT BOXES --- */
.content-box { text-align: center; z-index: 5; padding: 20px; }
.content-box h2 { font-size: 3.5rem; font-weight: 900; text-transform: uppercase; margin: 10px 0; line-height: 1; }
.content-box p { font-size: 1rem; letter-spacing: 1px; color: rgba(255,255,255,0.8); margin-bottom: 20px; }

.tag {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 20px;
}

.btn-industrial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.4s;
    display: inline-block;
    margin-top: 25px;
}

.btn-industrial:hover {
    background: var(--accent-blue);
    color: black;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* --- BRAND LOGO --- */
.main-logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; color: #ffffff; text-transform: uppercase; }
.main-logo span { color: var(--accent-blue); }
.sub-logo { font-size: 0.7rem; letter-spacing: 4px; color: #666; margin-top: -5px; text-transform: uppercase; }

/* --- HAMBURGER MENU --- */
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 3px; background-color: white; transition: 0.3s; }

/* --- FOOTER & FORM --- */
.form-section { padding: 80px 5%; background: #000; display: flex; justify-content: center; }
.glass-panel { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 60px; width: 100%; max-width: 1000px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.quote-form textarea { grid-column: span 2; height: 120px; }
.glass-btn { grid-column: span 2; background: var(--accent-blue); color: #000; padding: 20px; border-radius: 8px; font-weight: 900; text-transform: uppercase; cursor: pointer; border: none; }

.pro-footer { background: #000; padding: 80px 10% 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #999; text-decoration: none; font-size: 0.85rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 40px; margin-top: 40px; border-top: 1px solid #111; font-size: 0.65rem; color: #444; }

/* --- COMPREHENSIVE MOBILE OVERRIDE --- */
@media screen and (max-width: 768px) {

    /* 1. Mobile Navigation */
    .menu-toggle { display: flex; z-index: 1100; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        width: 80%;
        height: 100vh;
        transition: 0.5s;
        padding-top: 100px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; width: 100%; text-align: center; }
    .nav-links li a { margin: 0; font-size: 1.2rem; }

    /* 2. Homepage Stacking Fix */
    .split-hero {
        flex-direction: column !important;
        height: auto !important;
        display: flex !important;
    }
    .hero-side {
        width: 100% !important;
        height: 60vh !important; /* Defined height for each half */
        flex: none !important;
    }

    /* 3. Text Scaling */
    .content-box h2 {
        font-size: 2.4rem !important; 
        line-height: 1.1;
    }
    .main-logo { font-size: 1.2rem !important; }
    .sub-logo { font-size: 0.6rem !important; }

    /* 4. Quote Form Cleanup */
    .quote-form {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .quote-form textarea, .glass-btn { grid-column: auto; }
    .glass-panel { padding: 40px 20px !important; margin: 0 10px; width: auto !important; }

    /* 5. Footer Stacking */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}


/* --- PRODUCTION LINE (RESTORED) --- */
.production-line-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.95);
    z-index: 50;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.production-svg { 
    width: 100%; 
    height: 100%; 
}

.stitch-trace { 
    fill: none; 
    stroke: var(--accent-blue); 
    stroke-width: 3; 
    stroke-dasharray: 10, 10; 
    animation: sew-horizontal 15s linear infinite; 
}

@keyframes sew-horizontal { 
    from { stroke-dashoffset: 2000; } 
    to { stroke-dashoffset: 0; } 
}

.stitching-status {
    position: absolute;
    right: 30px;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
}