/* Hero Banner Styles */
.hero-banner-container {
    position: relative;
    min-height: 600px;
    background: url('../img/background.jpg') center center no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-banner-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-banner-text {
    flex: 1;
    max-width: 50%;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-banner-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.hero-banner-logo-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: #f5f1e8;
}

.hero-banner-logo-inner {
    width: 20px;
    height: 20px;
    background: #d4a574;
    border-radius: 50%;
}

.hero-banner-brand {
    font-size: 12px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 15px 0;
    line-height: 1.1;
    font-family: 'Times New Roman', serif;
}

.hero-banner-subtitle {
    font-size: 36px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-family: 'Times New Roman', serif;
}

.hero-banner-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-banner-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hero-banner-link:hover {
    color: #d4a574;
}

.hero-banner-button {
    background: #d32f2f;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.hero-banner-button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    color: white;
    text-decoration: none;
}

.hero-banner-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Katana Styles */
.hero-banner-katana {
    position: relative;
    transform: rotate(-15deg);
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.katana-blade {
    width: 300px;
    height: 8px;
    background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 50%, #c0c0c0 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.katana-blade::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f0f0f0 0%, #ffffff 50%, #f0f0f0 100%);
    border-radius: 1px;
}

.katana-guard {
    width: 20px;
    height: 20px;
    background: #d4a574;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: -10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.katana-handle {
    width: 120px;
    height: 20px;
    background: #f8f8f8;
    position: absolute;
    top: -6px;
    left: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.katana-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #f8f8f8 0px,
        #f8f8f8 8px,
        #2c2c2c 8px,
        #2c2c2c 12px
    );
    border-radius: 10px;
}

.katana-end {
    width: 20px;
    height: 20px;
    background: #d32f2f;
    position: absolute;
    top: 0;
    right: -10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Decorative Patterns - Maintenant intégrés dans l'image de fond */
.hero-banner-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Les motifs sont maintenant dans l'image de fond, on garde juste un overlay subtil */
.hero-banner-patterns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.1) 0%, rgba(240, 235, 224, 0.1) 100%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-banner-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-banner-title {
        font-size: 36px;
    }
    
    .hero-banner-subtitle {
        font-size: 28px;
    }
    
    .hero-banner-visual {
        height: 300px;
    }
    
    .katana-blade {
        width: 200px;
    }
    
    .katana-handle {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .hero-banner-container {
        padding: 40px 0;
    }
    
    .hero-banner-title {
        font-size: 28px;
    }
    
    .hero-banner-subtitle {
        font-size: 22px;
    }
    
    .hero-banner-description {
        font-size: 12px;
    }
}
