/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background-color: #050505; 
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 2.2rem; 
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 40px;
    font-size: 1.1rem; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

.parallax-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?q=80&w=2070&auto=format&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Coming Soon Banner */
.coming-soon-banner {
    position: absolute;
    top: 110px; 
    width: 100%;
    text-align: center;
    font-family: 'Syncopate', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 700;
    color: #f39c12; 
    letter-spacing: 8px;
    z-index: 10;
}

/* Uniform Section Titles (Hero & About Us) */
.hero-content h1, 
.about-text h3 {
    font-size: clamp(3rem, 5vw, 5.5rem); 
    font-weight: 900;
    line-height: 1.1; 
    margin-bottom: 25px;
    letter-spacing: -2px;
    background: linear-gradient(to right, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; 
}

.hero-content h1 {
    white-space: nowrap; 
}

/* Uniform Paragraphs (Hero & About Us) */
.hero-content p,
.about-text p {
    font-size: 1.6rem; 
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Hero Section Specifics */
.hero {
    height: 100vh;
    padding-top: 80px; 
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1600px; 
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px; 
    padding: 0 50px;
}

.hero-content {
    flex: 1.2; 
    max-width: 850px; 
    z-index: 2;
}

.hero-image-container {
    flex: 0.8; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-cutout {
    max-width: 100%; 
    max-height: 70vh; 
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.9));
}

/* About Us Section Specifics */
.about {
    padding: 150px 50px;
    background-color: #0a0a0a;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text { flex: 1; }
.about-text h2 { font-size: 1.5rem; color: #f39c12; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; } 
.about-media { flex: 1; position: relative; }
.about-image { width: 100%; border-radius: 8px; box-shadow: 0 30px 60px rgba(0,0,0,0.8); } 

.video-wrapper { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    border-radius: 8px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6); 
    border: 1px solid rgba(255,255,255,0.05); 
}
.video-wrapper iframe { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; 
    height: 100%; 
    border: none; 
}

/* Certified Badass Mailing List Section */
.subscribe { 
    background-color: #050505; 
    padding: 120px 20px; 
    display: flex;
    justify-content: center;
}

.subscribe-container { 
    background-color: #9e0b0e; 
    max-width: 1100px; 
    width: 100%;
    margin: 0 auto; 
    padding: 80px 40px 100px 40px; 
    text-align: center; 
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9); 
    border-radius: 6px; 
    border-bottom: 15px solid #9e0b0e; 
    overflow: hidden; 
}

.subscribe-container::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.badass-sign {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.sign-text-small {
    font-family: 'Montserrat', sans-serif; 
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 15px 0;
}

.sign-text-medium {
    font-family: 'Syncopate', sans-serif; 
    color: #fff;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 12px; 
    margin: 5px 0;
}

.sign-text-large {
    font-family: 'Syncopate', sans-serif; 
    color: #050505;
    font-size: 8.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    margin: 15px 0;
}

.subscribe-form { 
    display: flex; 
    gap: 15px; 
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form input { 
    flex: 1; 
    background: #fff; 
    border: 2px solid #000; 
    color: #000; 
    padding: 20px; 
    border-radius: 4px; 
    font-family: inherit; 
    font-size: 1.2rem; 
    font-weight: 600;
    /* Removed width: 100% so flex: 1 can do its job naturally */
}

.subscribe-form input:focus { 
    outline: none; 
    border-color: #000; 
    box-shadow: 0 0 15px rgba(0,0,0,0.5); 
}

.form-btn {
    background-color: #000;
    color: #fff;
    padding: 18px 45px;
    font-size: 1.2rem; 
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Removed width: 100% so it stops crushing the input box */
}

.form-btn:hover {
    background-color: #222;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Footer */
footer { text-align: center; padding: 50px; background: #000; color: #555; font-size: 1rem; font-weight: 600; letter-spacing: 1px; }

/* ==========================================
   CUSTOM THEME NOTIFICATION (TOAST)
   ========================================== */
.custom-notification {
    position: fixed;
    top: -100px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #111; 
    border-left: 5px solid #9e0b0e; 
    color: #fff;
    padding: 20px 40px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3000;
    transition: top 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    text-align: center;
}

.custom-notification.show {
    top: 120px; 
}

.custom-notification.error {
    border-left: 5px solid #f39c12; 
}


/* ==========================================
   RESPONSIVE ADJUSTMENTS (MOBILE & TABLET)
   ========================================== */

/* TABLETS & SMALL DESKTOPS */
@media (max-width: 1000px) {
    .hero-container { flex-direction: column; justify-content: center; text-align: center; gap: 20px; }
    .hero-content { max-width: 100%; margin-top: 40px; }
    .hero-content h1 { font-size: 4.5rem; white-space: normal; } 
    .hero-image-container { display: none; } 
    
    .about-container { flex-direction: column; text-align: center; }
    .nav-links { display: none; }
    
    .coming-soon-banner { font-size: 1.2rem; letter-spacing: 4px; } 
    .sign-text-large { font-size: 4.5rem; letter-spacing: 2px; }
    .sign-text-medium { font-size: 1.8rem; letter-spacing: 6px;}
    .sign-text-small { font-size: 1rem; letter-spacing: 2px; }
    .subscribe-form { flex-direction: column; }
}

/* iPHONES & SMALL MOBILE DEVICES */
@media (max-width: 600px) {
    /* Shrink massive desktop padding */
    .hero { padding-top: 100px; height: auto; padding-bottom: 80px; }
    .about { padding: 80px 20px; }
    .subscribe { padding: 60px 15px; }
    .hero-container { padding: 0 20px; }
    
    /* Center Navbar Logo since links are hidden */
    .navbar { padding: 15px 20px; justify-content: center; }
    .logo { font-size: 1.6rem; }
    
    .coming-soon-banner { top: 80px; font-size: 0.9rem; letter-spacing: 2px; }
    
    /* Typography Scale Down */
    .hero-content h1, .about-text h3 { font-size: 2.5rem; }
    .hero-content p, .about-text p { font-size: 1.15rem; }
    .about-text h2 { font-size: 1rem; }
    
    /* Compress the Business Card to fit screen */
    .subscribe-container { padding: 40px 20px 60px 20px; border-bottom: 8px solid #9e0b0e; }
    .subscribe-container::after { height: 4px; border-top: 2px solid #fff; border-bottom: 2px solid #fff; bottom: 6px; }
    
    /* Shrink Business Card Font */
    .sign-text-large { font-size: 2.2rem; letter-spacing: 0px; margin: 10px 0; }
    .sign-text-medium { font-size: 1rem; letter-spacing: 2px; margin: 5px 0;}
    .sign-text-small { font-size: 0.7rem; letter-spacing: 1px; margin: 10px 0;}
    
    /* Custom Toast adjustment for small screens */
    .custom-notification { min-width: 90%; font-size: 0.9rem; padding: 15px 20px; }
    .custom-notification.show { top: 90px; }
}