/* --- 1. SETTINGS & VARIABLES --- */
:root {
    --accent-orange: #ff6b00; 
    --deep-black: #0f0f0f;
    --soft-black: #1a1a1a;
    --text-gray: #b0b0b0;
    --transition: 0.3s ease;
}

/* --- 2. RESET & BASE --- */
body { 
    font-family: 'Roboto', sans-serif; 
    background-color: var(--deep-black); 
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .nav-link, .btn-orange, .navbar-brand { 
    font-family: 'Bebas Neue', 'Times New Roman', serif; /* Changed cursive to serif */
    letter-spacing: 1.5px; 
    text-transform: uppercase;
}

.text-orange, .orange-glow { color: var(--accent-orange) !important; }
.orange-glow { text-shadow: 0 0 20px rgba(255, 107, 0, 0.4); }

/* --- 3. NAVIGATION --- */
.navbar {
    background-color: rgba(15, 15, 15, 0.95) !important;
    border-bottom: 1px solid #333;
    padding: 15px 0;
}

.nav-link { 
    color: white !important; 
    font-size: 1.1rem; 
    transition: var(--transition); 
}

.nav-link:hover { color: var(--accent-orange) !important; }

/* --- 4. HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--accent-orange);
}

/* --- 5. BENTO & GALLERY --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.bento-item, .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.gallery-item { height: 250px; }

.bento-item img, .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover img, .gallery-item:hover img { transform: scale(1.1); }

/* Bento Positioning */
.item-1 { grid-column: 1 / 3; }
.item-2 { grid-column: 3 / 5; grid-row: 1 / 3; }
.item-3 { grid-column: 1 / 2; }
.item-4 { grid-column: 2 / 3; }

/* --- 6. COMPONENTS --- */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.coach-card {
    background: var(--soft-black);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
}

.coach-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid var(--accent-orange);
}

.info-card-mini {
    background: rgba(255, 107, 0, 0.1);
    border-left: 3px solid var(--accent-orange);
    padding: 15px;
    border-radius: 0 12px 12px 0;
}

.about-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

/* --- 7. BUTTONS --- */
.btn-orange {
    background-color: var(--accent-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-orange:hover {
    background-color: #e65a00;
    transform: translateY(-2px);
    color: white;
}

/* --- 8. RESPONSIVE --- */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto; /* Let content dictate height on mobile */
    }
    .item-1 { grid-column: 1 / 3; }
    .item-2 { grid-column: 1 / 2; grid-row: 2 / 4; }
    .item-3, .item-4 { grid-column: 2 / 3; }
    
    .hero-section { height: 60vh; }
}