/*
Theme Name: Burning Station
Theme URI: https://burningstation.com
Description: WordPress theme for Burning Station shop - 24/7 Rock & Metal Universe
Version: 1.0
Author: Fabrice
Text Domain: burning-station
*/

/* === CUSTOM FONT - CAPTURE IT === */
@font-face {
    font-family: 'Capture It';
    src: url('fonts/Capture_it.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Appliquer Capture It aux titres et textes orange */
h1, h2, h3, 
.hero-title,
.section-title,
.cta-button,
.product-title,
.footer-heading,
.nav-menu a {
    font-family: 'Capture It', sans-serif !important;
    text-transform: uppercase;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #ff4500;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff3a20;
}

img {
    max-width: 100%;
    height: auto;
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 58, 32, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-logo img {
    max-height: 80px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #e0e0e0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background-color: #ff3a20;
    color: #fff;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), 
                url('images/hero-bg.jpg') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    color: #ff4500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: 'Capture It', sans-serif;
    font-weight: bold;
    
    /* Ombre subtile pour la profondeur */
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff3a20, #ff4500);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 30px rgba(255, 58, 32, 0.5);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 58, 32, 0.7);
}

/* === CONTENT SECTIONS === */
.content-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #ff4500;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff3a20, #ff4500);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* === WOOCOMMERCE === */
.woocommerce ul.products li.product {
    background-color: #1a1a1a;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    border-color: #ff4500;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 58, 32, 0.3);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #ff4500;
    font-size: 1.2rem;
}

.woocommerce ul.products li.product .price {
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: bold;
}

.woocommerce .button {
    background: linear-gradient(135deg, #ff3a20, #ff4500);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.woocommerce .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 58, 32, 0.5);
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #b0b0b0;
    padding: 60px 20px 20px;
    margin-top: 100px;
    border-top: 3px solid #ff3a20;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ff4500;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d2d2d;
    color: #808080;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* === MOBILE MENU BURGER === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ff4500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Afficher sur mobile UNIQUEMENT */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    }
    
    .main-navigation.mobile-active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* FORCER CACHE SUR DESKTOP */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
}

.nav-menu a {
    color: #ffaa00 !important;
    font-size: 20px !important;
}

/* === FIX WOOCOMMERCE PRODUCT GRID === */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

.woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    word-break: normal !important;
    white-space: normal !important;
    writing-mode: horizontal-tb !important;
    hyphens: none !important;
}