/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), 
                url('../images/hero-page.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* ===================================
   CONTENT WRAPPER
   =================================== */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   TIMELINE
   =================================== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 50px;
    margin-right: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 50px;
    margin-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--bg-light);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* ===================================
   VISION & MISSION BOXES
   =================================== */
.vision-mission-box {
    background: rgba(255,255,255,0.08);
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.vision-mission-box:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
}

.vision-mission-box h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.vision-mission-box p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

/* ===================================
   COACHES GRID
   =================================== */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.coach-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.coach-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    border: 4px solid var(--bg-light);
}

.coach-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 4rem;
    color: var(--white);
    border: 5px solid var(--bg-light);
}

.coach-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.coach-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.coach-country {
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.coach-specialty {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.coach-days {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.day-tag {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #ddd;
}

.coach-calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: auto;
    text-decoration: none;
}

.coach-calendar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
    color: var(--white);
}

.coach-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: var(--text-light);
    font-weight: 600;
}

/* ===================================
   LESSON INFO SECTION
   =================================== */
.lesson-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 25px;
}

.lesson-info-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--secondary-color);
}

.lesson-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.lesson-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
}

.lesson-info-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 8px;
}

.lesson-info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lesson-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 5px solid #ff6b35;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #856404;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
}

.lesson-notice i {
    color: #ff6b35;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===================================
   INFO BOXES
   =================================== */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.bg-light {
    background: var(--bg-light);
}

/* ===================================
   WEAPON CARDS
   =================================== */
.weapon-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.weapon-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.weapon-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.weapon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.weapon-header h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.weapon-body {
    padding: 30px;
}

.weapon-body h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.weapon-body p, .weapon-body ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.weapon-body ul {
    list-style: disc;
    padding-left: 25px;
}

.weapon-body ul li {
    margin-bottom: 8px;
}

/* ===================================
   ACHIEVEMENTS
   =================================== */
.achievements-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.year-section {
    margin-bottom: 60px;
}

.year-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    color: var(--white);
}

.year-header h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-color);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.achievement-medal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.medal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.medal-gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #b8860b;
}

.medal-silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #707070;
}

.medal-bronze {
    background: linear-gradient(135deg, #cd7f32, #e6a157);
    color: #704214;
}

.achievement-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.achievement-category {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.achievement-details {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.achievement-details p {
    margin-bottom: 8px;
}

/* ===================================
   STATISTICS
   =================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* ===================================
   REGULATIONS PAGE
   =================================== */
.regulations-content {
    max-width: 900px;
    margin: 0 auto;
}

.regulation-section {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.regulation-section h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
}

.regulation-section h4 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.regulation-section p, .regulation-section ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.regulation-section ul {
    list-style: disc;
    padding-left: 30px;
}

.regulation-section ul li {
    margin-bottom: 10px;
}

.download-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ===================================
   BOOKING PAGE
   =================================== */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.step-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.time-slot {
    padding: 15px 10px;
    background: var(--bg-light);
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.time-slot.available:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.time-slot.selected {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.time-slot.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

.selected-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--secondary-color);
}

.selected-info p {
    margin-bottom: 10px;
    color: var(--text-color);
}

#confirm-booking {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

#confirm-booking:hover:not(:disabled) {
    background: var(--accent-color);
    transform: translateY(-2px);
}

#confirm-booking:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* ===================================
   HISTORY PAGE
   =================================== */
.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-section {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.history-section h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.history-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.history-image {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===================================
   RESPONSIVE - PAGES
   =================================== */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero-content p {
        font-size: 1.1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding-left: 60px;
        padding-right: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-marker {
        left: 20px;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
    }

    .lesson-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regulation-section {
        padding: 25px;
    }

    .booking-form {
        padding: 25px;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .tournament-tradition-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tradition-features {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   TOURNAMENT TRADITION SECTION
   =================================== */
.tournament-tradition-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(245, 166, 35, 0.2);
}

.tradition-content {
    text-align: center;
}

.tradition-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tradition-content h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.tradition-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

.tradition-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.tradition-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.tradition-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.tradition-feature:hover {
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-5px);
}

.tradition-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.tradition-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.tradition-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tradition-stat-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(245, 166, 35, 0.2);
    transition: var(--transition);
}

.tradition-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
    transform: translateX(-5px);
}

.tradition-stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.tradition-stat-card h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tradition-stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}