/* --- PROFESSIONAL TACTICAL TYPOGRAPHY --- */

/* --- 2. NAVIGATION & DROPDOWN --- */
nav {
    border-bottom: 1px solid rgba(10, 22, 40, 0.08) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02) !important;
    background: white;
}

.nav-item { position: relative; height: 100%; display: flex; align-items: center; }

.mega-menu {
    position: absolute; 
    top: 100%; 
    left: 0; 
    min-width: 280px;
    background: white; 
    border-top: 3px solid #e61e2a; 
    padding: 5px 0; 
    box-shadow: 0 15px 35px rgba(10, 22, 40, 0.2); 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(0); 
    transition: all 0.3s ease-in-out; 
    z-index: 100;
}

.nav-item:hover .mega-menu { opacity: 1; visibility: visible; }

.dropdown-link { 
    padding: 12px 20px; 
    display: block; 
    text-decoration: none; 
    transition: background 0.2s ease; 
    border-bottom: 1px solid #f8fafc; 
}

.dropdown-link .line-small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0 !important; /* ?????????????????? ?????? ????????? */
    line-height: 1.2;
}

.dropdown-link .line-main {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 0 !important; /* */
    line-height: 1.1;
    margin: 1px 0;
}

.dropdown-link:hover { background-color: #e61e2a !important; }
.dropdown-link:hover .line-main, .dropdown-link:hover .line-small { color: #ffffff !important; }



body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: #0a1628@important;
}
.text-gray-500{color: #0a1628 @important;}
/* Headings: Bold, Compact, High-Impact */
.t-heading {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em; /* Tight letter spacing for impact */
    line-height: 0.95;
}

/* Labels: Small, Spaced-out, Modern */
.t-label, .label-wide {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em; /* Breathing room for small text */
    display: inline-block;
}

/* Sub-headings */
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Body Text */
p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* --- ANIMATIONS --- */
@keyframes fadeCycle {
    0%, 45%, 100% { opacity: 1; z-index: 10; }
    50%, 95% { opacity: 0; z-index: 0; }
}

@keyframes fadeCycleDelayed {
    0%, 45%, 100% { opacity: 0; z-index: 0; }
    50%, 95% { opacity: 1; z-index: 10; }
}

.fade-layer-1 {
    animation: fadeCycle 6s infinite ease-in-out;
}

.fade-layer-2 {
    animation: fadeCycleDelayed 6s infinite ease-in-out;
}

/* --- MISC UI --- */
.hero-grid {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 10% 100%;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #e61e2a; }

/* Aspect Ratio Fixes */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }/* Layout & Typography */
.header-tight {
    letter-spacing: -0.04em;
}

.label-wide {
    letter-spacing: 0.2em;
}

.hero-grid {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 10% 100%;
}

/* Slider/Carousel */
.slide {
    opacity: 0;
    transition: all 0.8s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Form Styling */
.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0;
    color: white;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #e61e2a;
}

.form-input::placeholder {
    color: #4b5563;
}

/* Modal Animation */
.modal {
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #e61e2a;
}

/* Logo responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure the navbar doesn't feel cramped on mobile */
@media (max-width: 768px) {
    .label-wide {
        letter-spacing: 0.1em; /* Slightly tighter for mobile screens */
    }
}

/* Simple fade for mobile menu */
#mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Slider visibility */
.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.02);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Ensure background image covers the area properly */
.bg-cover {
    background-size: cover;
    background-position: center;
}

/* Specific adjustment for your main banner to keep the people on the right visible */
.bg-right {
    background-position: right center;
}

/* --- Desktop & Laptop Typography (Default) --- */
.hero-primary {
    font-size: 3.5em;
    font-weight: 900  !important;
}

.hero-secondary {
    font-size: 1.5em;
     font-weight: 700  !important;
   
}

.hero-tertiary {
    font-size: 3em;
    letter-spacing: 0.05em;

}

.text-brand-red1 {
    color: white;
    font-weight: 900;
   
}

/* --- Responsive Scaling for Tablets --- */
@media (max-width: 1200px) {
    .hero-primary { font-size: 3.5em; }
    .hero-secondary { font-size: 2.8em; }
    .hero-tertiary { font-size: 2em; }
}

/* --- Responsive Scaling for Mobile (below 768px) --- */
@media (max-width: 768px) {
    .hero-primary { 
        font-size: 2.2em; 
        line-height: 1.1;
    }
    .hero-secondary { 
        font-size: 1em; 
        margin-bottom: 1.5rem;
    }
    .hero-tertiary { 
        font-size: 1em; 
    }
    
    /* Ensure the content is visible on mobile */
    .max-w-4xl {
        max-width: 100%;
    }
}
/* Product Frame Styling */
.product-frame {
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: box-shadow 0.4s ease;
    box-shadow: 0 25px 50px -12px rgba(10, 22, 40, 0.15);
}

.group:hover .product-frame {
    box-shadow: 0 35px 60px -22px rgba(20, 32, 50, 0.35);
}

/* Typography spacing */
.product-frame + h3 {
    transition: color 0.3s ease;
}

.group:hover h3 {
    color: #e61e2a; /* brand-red */
}

/* Ensure the list looks clean on all devices */
.flex-col.md\:flex-row {
    min-height: 350px; /* Limits the vertical space taken */
}

.group:hover {
    border-color: rgba(230, 30, 42, 0.3); /* Subtle red border on hover */
}

/* Paragraph styling for better legibility */
.text-gray-500 {
    max-width: 500px; /* Prevents text from stretching too wide on large monitors */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .flex-col.md\:flex-row {
        min-height: auto;
    }
    .aspect-\[4\/5\] {
        aspect-ratio: 16 / 9; /* Wider image for mobile thumb-scrolling */
    }
}
/* --- MAXIMUM IMPACT PRODUCT CSS --- */

/* Taller container to maximize vertical uniform shape */
.aspect-\[4\/5\] {
    aspect-ratio: 4 / 5 !important;
    max-height: 420px; /* Increased height for larger visual impact */
    background-color: #f8f9fb;
    border-radius: 0.75rem;
}

/* Force image to fill the entire container width and height */
.aspect-\[4\/5\] img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain; /* Keeps the jacket proportional */
    padding: 0 !important; /* Removes internal padding to make image 'Bigger' */
    transform: scale(1.05); /* Slight default zoom */
}

/* Hover effect: Subtle zoom to show detail */
.group:hover .aspect-\[4\/5\] img {
    transform: scale(1.15);
}

/* Tightening text further to allow for the larger image above */
.product-info-compact {
    margin-top: 0.25rem;
}

.product-info-compact h3 {
    font-size: 1.25rem; /* Larger title for balance */
    line-height: 1;
}

@media (max-height: 850px) {
    .aspect-\[4\/5\] {
        max-height: 300px; /* Adjusts for smaller laptop screens */
    }
}
/* Red Jacket Gradient */
.bg-gradient-red {
    background: linear-gradient(135deg, #d21212 0%, #8b0c0c 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

/* Light Studio Gradient (Best for grey/navy jackets) */
.bg-gradient-studio {
    background: radial-gradient(circle at center, #ffffff 0%, #f1f3f6 100%);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

/* Add a drop shadow to the jacket image to make it float */
.product-image-shadow {
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

@keyframes simple-fade {
    0%, 100% { opacity: 1; }
    45%, 55% { opacity: 0; }
}

@keyframes simple-fade-delayed {
    0%, 100% { opacity: 0; }
    45%, 55% { opacity: 1; }
}

.fade-layer-1 {
    animation: simple-fade 10s infinite ease-in-out;
}

.fade-layer-2 {
    animation: simple-fade-delayed 10s infinite ease-in-out;
}