/* Tour de Roar Shared Styles */
.roar-orange { color: #FF6B1A; }
.roar-red { color: #E53E3E; }
.roar-purple { color: #805AD5; }
.roar-blue { color: #3182CE; }
.roar-green { color: #68D391; }
.roar-yellow { color: #F6E05E; }

.nav-link:hover { 
    color: #FF6B1A !important; 
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #FF6B1A !important;
    font-weight: bold;
}

.brand-gradient { 
    background: linear-gradient(135deg, #FF6B1A 0%, #E53E3E 25%, #805AD5 50%, #3182CE 75%, #68D391 100%);
}

.brand-gradient-alt {
    background: linear-gradient(45deg, #3182CE 0%, #805AD5 30%, #FF6B1A 70%, #F6E05E 100%);
}

.logo-colors {
    background: linear-gradient(90deg, #FF6B1A, #E53E3E, #805AD5, #3182CE, #68D391, #F6E05E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.lion-logo {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.sponsorship-tier {
    transition: all 0.3s ease;
}

.sponsorship-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover { 
    color: black; 
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #FF6B1A 0%, #E53E3E 25%, #805AD5 50%, #3182CE 75%, #68D391 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.hero-section {
    background: linear-gradient(135deg, #FF6B1A 0%, #E53E3E 25%, #805AD5 50%, #3182CE 75%, #68D391 100%);
}

.content-section {
    padding: 4rem 0;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design improvements */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(45deg, #FF6B1A, #E53E3E);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FF6B1A;
    color: #FF6B1A;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #FF6B1A;
    color: white;
    text-decoration: none;
}