/* Track Detail Page - Modern Design */

/* Hero Section */
.track-hero {
    background: linear-gradient(135deg, #111E0A 0%, #1a2a0a 100%);
    padding: 60px 0;
    margin-bottom: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.track-hero::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 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffd700"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.track-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.track-hero-info {
    color: white;
}

.track-hero-info h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.track-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.track-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

.track-location-badge i {
    font-size: 1.3rem;
}

.track-hero-image {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.track-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(89%) sepia(22%) saturate(5939%) hue-rotate(0deg) brightness(105%) contrast(103%);
}

.track-hero-image img:hover {
    transform: scale(1.05);
}

/* Container */
.track-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e31818;
    border-radius: 2px;
}

/* Track Data Section */
.track-data-section {
    padding: 50px 0;
    background-color: #111E0A;
    margin-bottom: 30px;
    border-radius: 20px;
}

.track-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.data-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.data-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e31818 0%, #c01414 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.data-card h3 {
    margin-bottom: 10px;
    color: #ffd700;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.data-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.content-section h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-section h2 i {
    font-size: 1.4rem;
    color: #e31818;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 0;
}

/* Track Links */
.track-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.track-link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.track-link-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.track-link-button:hover::before {
    width: 300px;
    height: 300px;
}

.track-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.track-link-button i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.track-link-button span {
    position: relative;
    z-index: 1;
}

.track-link-button.website {
    background: linear-gradient(135deg, #e31818 0%, #c01414 100%);
}

.track-link-button.images {
    background: linear-gradient(135deg, #FF8C00 0%, #e67e00 100%);
}

.track-link-button.maps {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
}

.track-link-button.hotel {
    background: linear-gradient(135deg, #312E0A 0%, #1a1808 100%);
}

/* Events Section */
.events-info {
    text-align: center;
}

.events-info p {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.action-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e31818 0%, #c01414 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.action-cta-button:hover {
    background: linear-gradient(135deg, #ff2e2e 0%, #e31818 100%);
    transform: translateY(-3px);
    color: white;
}

.action-cta-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .track-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .track-hero-info h1 {
        font-size: 3rem;
    }
    
    .track-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .track-hero {
        padding: 40px 0;
    }
    
    .track-hero-info h1 {
        font-size: 2.5rem;
    }
    
    .track-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .track-data-section {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 30px 25px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .track-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .track-hero-info h1 {
        font-size: 2rem;
    }
    
    .track-data-grid {
        grid-template-columns: 1fr;
    }
    
    .data-card {
        padding: 25px;
    }
    
    .data-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 25px 20px;
    }
    
    .track-link-button {
        width: 100%;
        justify-content: center;
    }
}



