/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}



/* Header Styles */
.header {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

/* Header background states */
.header.hero-background {
    background-color: transparent;
    backdrop-filter: none;
}

.header.content-background {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.visible {
    opacity: 1;
    visibility: visible;
}

.header-container {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
}

/* Centered Logo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

/* Logo colors for different backgrounds */
.header.hero-background .logo-img {
    filter: brightness(0) invert(1); /* Make logo white */
}

.header.content-background .logo-img {
    filter: none; /* Keep logo original colors */
}

.logo:hover .logo-img {
    transform: scale(1.05);
}









/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.header-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2); /* Barely visible white line */
    opacity: 0.9;
    transition: background-color 0.8s ease;
}

/* Bottom line colors for different backgrounds */
.header.hero-background .header-container::after {
    background-color: rgba(255, 255, 255, 0.2);
}

.header.content-background .header-container::after {
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Navigation link colors for different backgrounds */
.header.hero-background .nav-link {
    color: #ffffff;
}

.header.content-background .nav-link {
    color: #333333;
}

.nav-link:hover {
    color: #12ad5f;
    transform: translateY(-2px);
}

/* Hover effects for different backgrounds */
.header.hero-background .nav-link:hover {
    color: #12ad5f;
}

.header.content-background .nav-link:hover {
    color: #12ad5f;
}

.nav-link i {
    font-size: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover i {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #12ad5f, #01d566);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}



/* Right Group: Icons - Hidden for centered design */
.right-group {
    display: none; /* Hidden for centered header design */
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    padding-right: 20px;
    margin-left: auto;
}

.search-icon,
.user-icon,
.cart-icon {
    width: 32px; /* Reduced from 40px */
    height: 32px; /* Reduced from 40px */
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    border: none; /* Removed the border */
}

/* Icon colors for different backgrounds */
.header.hero-background .search-icon,
.header.hero-background .user-icon,
.header.hero-background .cart-icon {
    color: #ffffff;
}

.header.content-background .search-icon,
.header.content-background .user-icon,
.header.content-background .cart-icon {
    color: #333333;
}

.search-icon:hover,
.user-icon:hover,
.cart-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #12ad5f;
    backdrop-filter: blur(10px);
    transform: translateY(-2px) scale(1.1);
}

/* Icon hover effects for different backgrounds */
.header.hero-background .search-icon:hover,
.header.hero-background .user-icon:hover,
.header.hero-background .cart-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header.content-background .search-icon:hover,
.header.content-background .user-icon:hover,
.header.content-background .cart-icon:hover {
    background-color: rgba(0, 0, 0, 0.1);
}





/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        top: 0;
    }
    
    .header-container {
        padding: 0 15px;
        height: 80px;
        flex-direction: column;
    }
    
    .logo-img {
        height: 30px;
        margin-bottom: 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .right-group {
        gap: 15px;
    }
    
    .search-icon,
    .user-icon,
    .cart-icon {
        width: 28px; /* Reduced from 35px */
        height: 28px; /* Reduced from 35px */
    }
    
    .search-icon i,
    .user-icon i,
    .cart-icon i {
        font-size: 14px;
    }
}

/* Main content padding to account for fixed header */
main {
    padding-top: 120px; /* 120px header */
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    main {
        padding-top: 60px; /* 60px header */
        min-height: calc(100vh - 60px - 200px);
    }
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1002;
    max-width: 400px;
}

.flash-message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flash-success {
    background-color: #28a745;
}

.flash-danger {
    background-color: #dc3545;
}

.flash-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.footer-section h5 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section p {
    margin: 0;
    opacity: 0.8;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
}

.footer-section .social-links a {
    color: #ffffff;
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section .social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #555555;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-section .social-links {
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    background: #000000;
    color: #ffffff;
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -120px; /* Compensate for header height to make video truly fullscreen */
}

/* Page transition curtain effect */
.page-transition-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    background: #f8f9fa;
    will-change: transform;
}

/* Smoke effect for header */
.smoke-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1001;
    filter: blur(1px);
}

/* Transition progress indicator */
.transition-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(18, 173, 95, 0.3);
    z-index: 10000;
    pointer-events: none;
}

.transition-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #12ad5f, #01d566);
    width: 0%;
    transition: width 0.1s ease;
}

/* Page transition markers */
.page-marker {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    z-index: 10001;
}

.page-marker::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Hero Left Side */
.hero-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-right: 60px;
    padding-top: 40px;
}

.hero-content {
    width: 100%;
}

/* Video Preview Styles */
.video-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.play-button:hover {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.play-button i {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.video-info {
    color: #333;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #333;
}

.video-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.publish-date {
    color: #999;
    font-weight: 500;
}

.watch-full {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.watch-full:hover {
    color: #cc0000;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: #666;
    font-size: 1rem;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle i {
    color: #12ad5f;
    font-size: 16px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #333;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Right Side */
.hero-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: 40px;
}

.hero-photo {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 4;
}

.hero-photo:hover {
    transform: translateY(-10px);
}

.hero-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #333;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary i {
    color: #ff6b35;
}

.btn-secondary {
    background-color: #ffd700;
    color: #333;
}

.btn-secondary:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary i {
    color: #333;
}

/* Content Section */
.content-section {
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Make sections more visually distinct */
.content-section-2 {
    background: #e9ecef;
}

.content-section-3 {
    background: #dee2e6;
}

.content-section-4 {
    background: #ced4da;
}

.content-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.content-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333333;
}

.content-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666666;
}

.content-container ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-container li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #666666;
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Jackets Grid */
.jackets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.jacket-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jacket-placeholder {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Content */
.text-content {
    text-align: center;
    margin-bottom: 40px;
}

.casual-text {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.style-quote {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Shop Button */
.shop-btn {
    background: #ff6b35;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    align-self: center;
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.shop-text {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-btn i {
    color: #ffffff;
    font-size: 16px;
    margin-top: 5px;
}



/* Section Text Styling */
.section-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.section-text h2 {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #333333;
}

.section-text p {
    font-size: 18px;
    color: #666666;
    max-width: 400px;
    line-height: 1.6;
}

/* Additional Content Sections */
.content-section-2 {
    padding: 0;
    background: #e9ecef;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    scroll-margin-top: 80px; /* Account for fixed header */
}

.content-section-3 {
    padding: 0;
    background: #dee2e6;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

.content-section-4 {
    padding: 0;
    background: #ced4da;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    right: 30px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nav-arrow:hover {
    transform: scale(1.2);
}

.nav-arrow i {
    font-size: 32px;
    background: linear-gradient(to bottom, #12ad5f, #01d566);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(18, 173, 95, 0.3);
    filter: drop-shadow(0 4px 8px rgba(1, 213, 102, 0.2));
}

.nav-arrow-up {
    top: 100px;
}

.nav-arrow-down {
    bottom: 100px;
}

/* Mobile responsive hero */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px;
    }
    
    .hero-left {
        align-items: center;
        gap: 20px;
    }
    
    .video-preview {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-description {
        font-size: 0.8rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .hero-photo {
        max-width: 300px;
    }
    
    .youtube-section {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
    }
    
    .youtube-card {
        width: 100%;
    }
    
    .channel-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image i {
        font-size: 10rem;
    }
    

    
    .content-container h2 {
        font-size: 2rem;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    
    .nav-arrow i {
        font-size: 24px;
    }
    
    /* Mobile responsive content sections */
    .hero-section {
        margin-top: -80px; /* Compensate for mobile header height */
    }
    
    .hero-section,
    .content-section,
    .content-section-2,
    .content-section-3,
    .content-section-4 {
        min-height: 100vh;
        height: 100vh;
    }
}
