/* Pageant-specific styles */
.award-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--accent-red);
}

.award-icon {
    transition: transform 0.3s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1);
}

.award-badge {
    font-size: 0.8rem;
}

.detail-item {
    margin-bottom: 0.5rem;
}

/* Hero image styles */
.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 991.98px) {
    .hero-image {
        max-height: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-image {
        max-height: 300px;
    }
}

/* Timeline styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item .timeline-content {
    margin-left: 3rem;
    margin-right: 3rem;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.timeline-content {
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Timeline break styles */
.timeline-break {
    position: relative;
    margin: 3rem 0;
    z-index: 3;
}

.timeline-break::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -2rem;
    bottom: -2rem;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-break::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.timeline-break em {
    background: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    max-width: 80%;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 2rem;
    }

    .timeline-item .timeline-content {
        margin-left: 4rem !important;
        margin-right: 1rem !important;
        text-align: left !important;
        max-width: none;
    }

    .timeline-marker {
        left: 2rem;
    }

    .timeline-break::before {
        left: 2rem;
    }

    .timeline-break::after {
        left: 2rem;
    }
} 