/* =========================================
   1. FONTS & RESET
   ========================================= */

/* Default Font (Times) */
@font-face {
  font-family: 'Times';
  src: url('fonts/Times.ttc') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Custom Condensed Font */
@font-face {
    font-family: 'ABCSocialCondensed';
    src: url('fonts/ABCSocialCondensed-Book-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --white: #ffffff;
}

body {
    font-family: 'Times', 'Times New Roman', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

ul {
    list-style: none;
}

/* =========================================
   2. HEADER (CLEAN & BLACK)
   ========================================= */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
    
    /* FORCE BLACK TEXT & NO BLENDING */
    color: #000000 !important; 
    mix-blend-mode: normal !important; 
}

/* Scrolled State: Adds white blur background */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(20px);         
    -webkit-backdrop-filter: blur(20px); 
    padding: 15px 40px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORCE LOGO TO BE NORMAL (NO INVERTING) */
.header-center .logo img {
    height: 30px; 
    width: auto;
    display: block;
    filter: none !important; 
    opacity: 1 !important;
}

.header-right {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-left: auto; 
}

.header-right .stock-ticker {
    margin: 0;
    font-size: 0.8rem;
    color: inherit;
}

/* =========================================
   3. HERO SECTIONS (GENERAL)
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-section.half-height {
    height: 80vh;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: -1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.project-media-x {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-media-x video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logohover {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    padding: 0 20px;
}

.logohover img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'ABCSocialCondensed', 'Helvetica Neue', sans-serif !important;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: 1px solid white;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: white;
    color: black;
}

.btn-white {
    background: white;
    color: black;
    border: 1px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: simpleFadeIn 2s forwards 0.2s;
}

@keyframes simpleFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   HELPER: BLACK TEXT FOR HERO
   ========================================= */
.hero-content.text-black h1,
.hero-content.text-black h2,
.hero-content.text-black .hero-subtitle {
    color: #000000 !important;
    text-shadow: none !important; 
}
.hero-content.text-black .btn {
    border-color: #000000;
    color: #000000;
}
.hero-content.text-black .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* =========================================
   4. SPECIAL LAYOUT: BOLD SECTION
   ========================================= */
.bold-layout h2 {
    font-family: 'Times', 'Times New Roman', serif;
    font-size: 2rem;       
    margin-bottom: 5px;    
    line-height: 1;
}

.bold-layout h1 {
    font-family: 'ABCSocialCondensed', sans-serif !important; 
    font-size: 1.2rem;       
    font-weight: 400;
    margin-top: 0;         
    margin-bottom: 50px;   
    text-transform: uppercase; 
    letter-spacing: 2px;
}

/* Updated Buttons: Small & Rounded */
.bold-layout .btn {
    font-family: 'ABCSocialCondensed', sans-serif !important; 
    font-size: 0.8rem;      
    letter-spacing: 2px;
    padding: 12px 28px;     
    border: 1px solid #fff;
    text-transform: uppercase;
    margin: 0 10px;
    border-radius: 50px;    /* Full Round */
    transition: all 0.3s ease;
}

.bold-layout .btn:hover {
    background: #fff;
    color: #000;
}

/* =========================================
   5. PRODUCT SECTION
   ========================================= */
.product-section {
    padding: 60px 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #f4f4f4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    color: #000;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.product-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.product-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.product-price {
    color: #666;
}

/* =========================================
   6. PRE-ORDER SECTION (FIXED FONTS)
   ========================================= */
.preorder-section {
    background-color: #f8f8f8;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preorder-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.preorder-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'Times', 'Times New Roman', serif;
}

.preorder-text p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 40px;
    font-family: 'Times', 'Times New Roman', serif;
}

.preorder-form {
    width: 100%;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

/* Input Text Style */
.input-group input {
    width: 100%;
    padding: 10px 0;
    /* Force custom font */
    font-family: 'ABCSocialCondensed', sans-serif !important; 
    font-size: 0.8rem;
    color: #000;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    transform: uppercase;
}

.input-group input:focus {
    border-bottom: 1px solid #000;
}

/* Label Style */
.input-group label {
    /* Force custom font */
    font-family: 'ABCSocialCondensed', sans-serif !important; 
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.8rem;
    color: #000;
    font-weight: 600;
}

/* Submit Button Style */
.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #000;
    color: #fff;
    border: none;
    /* Force custom font */
    font-family: 'ABCSocialCondensed', sans-serif !important; 
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 2px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #333;
}

.form-feedback {
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    min-height: 20px;
    font-family: 'ABCSocialCondensed', sans-serif;
}

/* Stock Ticker */
.preorder-text .stock-ticker {
    margin: 20px 0 40px 0;
    font-size: 0.8rem;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ticker-label {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.ticker-bar-bg {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.ticker-bar-fill {
    height: 100%;
    background-color: #000;
    width: 0%;
    transition: width 1s ease-in-out;
}

.ticker-count {
    align-self: flex-end;
    font-weight: 600;
}

/* =========================================
   7. FOOTER
   ========================================= */
.site-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 40px 40px; 
    border-top: 0px solid #333;
    font-family: 'ABCSocialCondensed', 'Helvetica Neue', Helvetica, sans-serif;
}

.site-footer h4,
.site-footer a,
.site-footer li,
.site-footer p,
.site-footer span {
    font-family: 'ABCSocialCondensed', 'Helvetica Neue', Helvetica, sans-serif !important;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 0.8rem; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: normal;
}

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

.footer-col a {
    color: #999;
    font-weight: 400;
    text-transform: none;
    font-size: 0.8rem; 
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #5c5c5c;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    border-top: 0px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;         
}

/* Logo Styling */
.footer-logo img {
    height: 20px; 
    width: auto;
    display: block; 
}

/* Mobile Adjustment for Footer Logo */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column-reverse; 
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}

/* =========================================
   8. RESPONSIVE DESIGN (GENERAL)
   ========================================= */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   9. NEW PRODUCT PAGE LAYOUT (FIXED SLIDER)
   ========================================= */

.product-page-main {
    padding-top: 80px; 
}

.product-split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

/* --- LEFT: VISUALS --- */
.product-visuals {
    width: 50%;
    height: calc(100vh - 80px); /* Fill screen height minus header */
    position: sticky;
    top: 80px;
    background-color: #f4f4f4;
    overflow: hidden;
}

/* SLIDER CONTAINER: Vertical Layout (Image Top, Thumbs Bottom) */
.product-slider {
    display: flex;
    flex-direction: column; /* Stack vertically */
    height: 100%;
    width: 100%;
}

/* MAIN IMAGE: Fills remaining space */
.slider-main-image {
    flex-grow: 1; /* Takes all available height */
    position: relative;
    overflow: hidden;
    margin: 0; 
    padding: 0;
}

.slider-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Removes bottom whitespace */
}

/* THUMBNAILS: Row at Bottom, Aligned Right */
.slider-thumbnails {
    display: flex;
    flex-direction: row;      
    justify-content: flex-end; /* Push to right */
    width: 100%;
    height: auto;             
    background: #fff;
    padding: 0;
    margin: 0;
    gap: 0; 
}

.slider-thumb {
    width: 100px;      /* Set the size */
    height: auto;
    
    /* --- CHANGE TO SQUARE --- */
    aspect-ratio: 1 / 1; 
    
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: none;
    margin: 0;
    display: block;
}

.slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills square without stretching */
    display: block;
}

/* Active State */
.slider-thumb.active {
    opacity: 1;
    z-index: 2;
    /* Optional: Inner black border to show selection */
    box-shadow: inset 0 0 0 2px #000;
}

.slider-thumb:hover {
    opacity: 1;
}

/* --- RIGHT: SIDEBAR DETAILS (TOP ALIGNED) --- */
.product-details-sidebar {
    width: 50%;
    /* REMOVED TOP PADDING (was 60px) to align content with Navbar/Image */
    padding: 0 80px 60px 80px; 
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Typography & Form */
.p-title {
    font-family: 'Times', 'Times New Roman', serif;
    font-size: 3.5rem;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
}

.p-price {
    font-family: 'ABCSocialCondensed', sans-serif !important;
    font-size: 1.5rem;
    color: #666;
    margin-top: 10px;
    display: block;
}

.p-description {
    margin-top: 30px;
    margin-bottom: 40px;
    font-family: 'Times', serif;
    font-size: 1rem;
    line-height: 1.2;
    color: #333;
}

.stock-ticker-mini { margin-bottom: 20px; }
.stock-ticker-mini .ticker-label { font-size: 0.7rem; color: #000; }
.stock-ticker-mini .ticker-bar-bg { height: 2px; background: #eee; margin-top: 5px; }
.stock-ticker-mini .ticker-bar-fill { height: 100%; background: #000; width: 0%; }
.product-btn { width: 100%; margin-top: 20px; }

/* --- ACCORDIONS (FIXED: NO ARROWS) --- */
.product-accordions { 
    margin-top: 60px; 
    border-top: 1px solid #ddd; 
}

details { 
    border-bottom: 1px solid #ddd; 
    padding: 20px 0; 
    cursor: pointer; 
}

summary {
    list-style: none; /* Hide default marker (Firefox/Chrome) */
    font-family: 'ABCSocialCondensed', sans-serif !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

/* CRITICAL FIX FOR SAFARI / IPHONE */
summary::-webkit-details-marker {
    display: none; 
}

summary::after { 
    content: '+'; 
    font-size: 1.2rem; 
    font-weight: 400; 
}

details[open] summary::after { 
    content: '-'; 
}

.accordion-content { 
    margin-top: 15px; 
    font-family: 'Times', serif; 
    font-size: 0.9rem; 
    color: #555; 
    line-height: 1.5; 
}

/* --- MOBILE RESPONSIVENESS (PRODUCT PAGE) --- */
@media (max-width: 1024px) {
    .product-details-sidebar { padding: 0 40px 40px 40px; }
}

/* =========================================
   10. MOBILE HAMBURGER MENU & OVERLAY
   ========================================= */

/* Default Button Style */
.mobile-menu-btn {
    display: none; /* Hidden by default (Desktop) */
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px; /* Space between lines */
    z-index: 1005; /* Above menu overlay */
    padding: 8px;
    width: 40px; /* Touch target */
    height: 40px;
    position: relative; /* Crucial for absolute active state */
}

.mobile-menu-btn span {
    display: block;
    width: 20px; /* Small width */
    height: 1px; /* Thin line */
    background-color: #000 !important; /* ALWAYS BLACK */
    transition: all 0.3s ease;
    position: relative;
}

/* Force Black lines on Light Theme or Scrolled Header */
body.light-theme .mobile-menu-btn span,
.site-header.scrolled .mobile-menu-btn span {
    background-color: #000 !important;
}

/* Active State (Perfect X - using absolute positioning) */
.mobile-menu-btn.active span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0; /* Remove gap effect */
}

.mobile-menu-btn.active span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0; /* Remove gap effect */
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;          
    height: 100vh;
    background-color: #ffffff;
    z-index: 1001;       
    transform: translateX(-100%); /* Hidden by default */
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1); 
    padding: 100px 40px; 
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
}

.mobile-nav-list a {
    font-family: 'ABCSocialCondensed', sans-serif !important;
    font-size: 1.5rem;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

/* --- MOBILE SPECIFIC LOGIC (ALL MOBILE RULES HERE) --- */
@media (max-width: 768px) {
    /* 1. Hide Desktop Nav */
    .desktop-nav {
        display: none;
    }

    /* 2. Header Container Adjustment */
    .site-header {
        padding: 15px 20px;
        justify-content: center; /* Center items for absolute positioning */
    }
    
    .logohover {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* 3. Hamburger Button (Absolute Left) */
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        left: 15px; /* Pinned to left edge */
        top: 50%;
        transform: translateY(-50%);
    }

    /* 4. Center Logo (Absolute Center) */
    .header-center {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
        width: auto;
    }

    /* 5. Ticker Count (Absolute Right) - FIXED */
    .header-right {
        position: absolute;
        right: 20px; /* Pinned to right edge (matches padding) */
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        width: auto;
        justify-content: flex-end;
    }

    .header-right .stock-ticker {
        text-align: right;
        white-space: nowrap; 
        font-size: 0.75rem;
    }

    /* 6. Product Grid Padding Fix (15px) */
    .product-section {
        padding: 40px 15px; /* Reduced from 40px */
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px; 
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* 7. Product Page Visuals on Mobile */
    /* Remove padding to fix gap */
    .product-page-main {
        padding-top: 30px; /* Adjusted to sit right below header */
    }

    .product-split-container { 
        flex-direction: column; 
    }

    .product-visuals {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
    }
    
    .slider-main-image {
        height: 60vh; 
    }

    .slider-thumbnails {
        justify-content: flex-start; 
        overflow-x: auto;
    }
    
    .slider-thumb {
        width: 80px; 
    }

    .product-details-sidebar { 
        width: 100%; 
        padding: 20px 20px 40px 20px; 
    }
    
    .p-title { 
        font-size: 2.5rem; 
    }

    /* 8. Bold Layout Mobile adjustments */
    .bold-layout h2 {
        font-size: 3rem;
    }
    .bold-layout h1 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .bold-layout .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* 9. Remove Ticker Animation on Mobile */
    .stock-ticker .ticker-count,
    .stock-ticker .ticker-label,
    .stock-ticker .ticker-bar-bg {
        animation: none !important;
        transition: none !important;
    }
}

/* --- DESKTOP SAFETY FIX (Hide Mobile Elements) --- */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* =========================================
   11. TEXT PAGE LAYOUT (Technology/About)
   ========================================= */

.text-page-main {
    padding-top: 150px; /* Clear the header */
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-container {
    max-width: 1000px;
    text-align: center;
}

/* Big Headline */
.text-container h1 {
    font-family: 'Times', 'Times New Roman', serif;
    font-size: 5rem; /* Massive size */
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 60px;
    color: #000;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Description Paragraph */
.text-container p {
    font-family: 'ABCSocialCondensed', sans-serif !important;
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto 80px auto; 
    color: #333;
    text-transform: uppercase;
}

/* Secondary Headline */
.text-container h2 {
    font-family: 'Times', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    color: #000;
}

/* Optional Delays for the fade-in animation */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* --- RESPONSIVE FOR TEXT PAGE --- */
@media (max-width: 768px) {
    .text-page-main {
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: left; 
    }

    .text-container {
        text-align: left;
    }

    .text-container h1 {
        font-size: 3rem; 
        margin-bottom: 40px;
    }

    .text-container p {
        font-size: 1.1rem;
        margin-bottom: 60px;
        margin-left: 0;
    }

    .text-container h2 {
        font-size: 2rem;
    }
}