/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Le Jour Serif', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    animation: fadeIn 0.8s ease-in-out;
}

* {
    font-family: 'Le Jour Serif', serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page transition animations */
.page-transition {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Color Variables */
:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --black: #000000;
    --dark-gray: #1f1f1f;
    --silver: #c0c0c0;
    --light-silver: #e5e5e5;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    --gradient-dark: linear-gradient(135deg, var(--black), var(--dark-gray));
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 0.8rem 0; /* Reduced from 1.5rem */
    transition: all 0.3s ease;
}

/* Add scrolled state for navbar */
.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0; /* Even smaller padding when scrolled */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.nav-logo span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo span:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover {
    color: var(--primary-red);
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.1);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    filter: blur(8px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(220,38,38,0.4));
    z-index: -1;
}

.hero-content {
    text-align: right;
    color: var(--white);
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    margin-right: 5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220,38,38,0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220,38,38,0.5);
    background: linear-gradient(135deg, #ff6b6b 0%, var(--primary-red) 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #1a1a1a;
    position: relative;
    z-index: 2;
}

.about .section-header h2 {
    color: var(--white);
}

.about .section-header p {
    color: #ccc;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-gallery {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    text-align: center;
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

.about-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-red);
}

.about-signature p {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Teaching Section */
.teaching {
    padding: 8rem 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.teaching::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23991b1b" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.teaching-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.teaching-left {
    flex: 1.5;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(153, 27, 27, 0.4);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.card-icon:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(153, 27, 27, 0.5);
}

.teaching-left h3 {
    color: #e5e7eb;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.teaching-left p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #f1f5f9;
    max-width: 500px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.teaching-right {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.teaching-video {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: rotate(3deg);
    transition: all 0.4s ease;
}

.teaching-video:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.teaching-video::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #991b1b, #b91c1c, #991b1b);
    border-radius: 27px;
    z-index: -1;
    opacity: 0.8;
}

.teaching-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}



.teaching-cta {
    margin-top: 0;
}

.teaching-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.4);
    background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.teaching-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.teaching-cta .btn:hover::before {
    left: 100%;
}

.teaching-cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(153, 27, 27, 0.5);
}

/* Merch Section */
.merch {
    padding: 8rem 0;
    background: #262626;
}

/* Merch Cards Layout */
.merch-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.merch-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 400px;
    border: 2px solid var(--primary-red); /* Thin red border */
}

.merch-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--dark-red); /* Darker red on hover */
}

.merch-card .card-image {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.merch-card .card-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.merch-card:hover .card-image img {
    transform: scale(1.05);
}

/* Single CTA Button */
.merch-cta {
    text-align: center;
    margin-top: 3rem;
}

.merch-btn-main {
    padding: 20px 40px;
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 200px;
}

.merch-btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.merch-btn-main:hover {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4);
    color: var(--black);
    text-decoration: none;
}

.merch-btn-main:hover::before {
    left: 100%;
}

.merch-btn-main:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-image {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-details {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.product-price {
    margin-bottom: 1rem;
}

.price-range {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-red);
}

.product-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-style: italic;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-label {
    font-weight: 600;
    color: var(--black);
    font-size: 1.2rem;
}

.size-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.product-select {
    padding: 16px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.product-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.size-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.size-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: #374151;
    transition: color 0.3s ease;
}

.size-option:hover {
    color: var(--black);
}

.size-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.size-option input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.size-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.quantity-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: var(--white);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

#quantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.subtotal {
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.subtotal-label {
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
}

.subtotal-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0.5rem 0 0 0;
}

.checkout-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1rem auto 0 auto;
    position: relative;
    overflow: hidden;
    display: block;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
    color: var(--black);
}

.checkout-btn:hover::before {
    left: 100%;
}

.checkout-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Reels Section */
.reels {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
}

.reels .section-header h2 {
    color: var(--white);
}

.reels .section-header p {
    color: var(--silver);
}

.reel-carousel {
    max-width: 400px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.3);
    background: var(--black);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.reel-item {
    min-width: 100%;
    position: relative;
    aspect-ratio: 9/16;
    background: var(--black);
}

.reel-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-item:hover .reel-overlay {
    opacity: 1;
}

.reel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reel-link:hover {
    color: var(--primary-red);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 20, 60, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-red);
    transform: scale(1.2);
}

.reel-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.btn-view-all:hover {
    background: var(--silver);
    color: var(--black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(192, 192, 192, 0.4);
}

.btn-view-all i {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(220,38,38,0.3);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #1f1f1f;
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .section-header p {
    color: #ccc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: #333;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: border-color 0.3s ease;
    backdrop-filter: blur(50px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.6);
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ccc;
    margin: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: var(--silver);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

body.menu-open {
    overflow: hidden;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    backdrop-filter: blur(50px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease;
    backdrop-filter: blur(50px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--light-silver);
}

.modal-header h2 {
    margin: 0;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    color: #666;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-body p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal .form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white);
    backdrop-filter: blur(50px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.modal .form-group select option {
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 0.5rem;
}

.modal .form-group select:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.6);
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.modal .btn {
    min-width: 150px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        justify-content: center;
    }
    
    .hero-content {
        margin-right: 2rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo span {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        height: 100vh;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        margin-right: 0;
        margin-left: 0;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .teaching {
        padding: 4rem 0;
    }
    
    .teaching-content {
        flex-direction: column;
        gap: 2rem;
        margin: 0 1rem;
        padding: 0 1rem;
    }
    
    .teaching-left {
        padding: 1rem;
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto 2rem;
        transform: rotate(0deg);
    }
    
    .teaching-left h3 {
        font-size: 2rem;
    }
    
    .teaching-left p {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .teaching-right {
        max-width: 100%;
    }
    
    .teaching-video {
        transform: rotate(0deg);
        border-radius: 20px;
    }
    
    .teaching-video::before {
        border-radius: 22px;
    }
    
    .teaching-cta .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .merch-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .merch-card {
        height: 300px;
        width: 300px;
    }
    
    .merch-btn-main {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .merch {
        padding: 4rem 0;
    }
    
    .merch-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .merch-card {
        height: auto;
        min-height: 300px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .merch-card .card-image {
        padding: 1rem;
    }
    
    .merch-card .card-image img {
        border-radius: 15px;
        max-height: 280px;
        object-fit: cover;
    }
    
    .merch-btn-main {
        padding: 16px 32px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.3rem 0;
    }
    
    .hero {
        height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .teaching-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .product-image {
        padding: 2rem;
    }
    
    .product-details {
        padding: 2rem;
    }
    
    .merch {
        padding: 3rem 0;
    }
    
    .merch-cards {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .merch-card {
        min-height: 250px;
        max-width: 100%;
        margin: 0;
    }
    
    .merch-card .card-image {
        padding: 0.5rem;
    }
    
    .merch-card .card-image img {
        max-height: 220px;
        border-radius: 12px;
    }
    
    .merch-btn-main {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 180px;
        width: 90%;
        max-width: 280px;
    }
    
    .merch-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .price-range {
        font-size: 1.5rem;
    }
    
    .size-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .quantity-group {
        justify-content: center;
    }
    
    .reels {
        padding: 3rem 0;
    }
    
    .reel-carousel {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .reel-overlay {
        padding: 0.5rem;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image img {
        width: 200px;
        height: 200px;
    }
    
    .teaching-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .teaching-left {
        padding: 2rem 1rem;
        min-height: auto;
        text-align: center;
    }
    
    .teaching-left h3 {
        font-size: 1.8rem;
    }
    
    .teaching-left p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .teaching-video {
        margin-top: 1rem;
    }
}

@media (max-width: 360px) {
    .merch-card {
        min-height: 200px;
    }
    
    .merch-card .card-image img {
        max-height: 180px;
    }
    
    .merch-btn-main {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 95%;
    }
}
