/* gameday.css - Custom styles for the game day media page */

/* Dramatic Hero Section */
.dramatic-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 0 !important;
}

/* Ensure main has no spacing */
main {
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Blurred background for large screens */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/gameday/_Z635466.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.3);
    z-index: 1;
    display: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    animation: heroZoom 20s ease-in-out infinite alternate;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
    position: relative;
    z-index: 2;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 4rem;
    align-self: flex-end;
    margin-bottom: 7rem;
}

/* Large screen treatment with blurred background */
@media screen and (min-aspect-ratio: 4/3) and (min-width: 768px) {
    .dramatic-hero {
        margin-top: 0;
        padding-top: 80px;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    /* Show blurred background */
    .hero-background::before {
        display: block;
    }
    
    /* Make main image fit vertically and center horizontally */
    .hero-image {
        width: auto;
        height: calc(100% - 80px);
        max-width: 100%;
        object-fit: contain;
        object-position: center center;
        margin: 80px auto 0;
        display: block;
    }
    
    /* Adjust hero background container */
    .hero-background {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-line-1 {
    display: block;
    color: var(--accent-color);
    animation: slideInLeft 1s ease-out;
}

.hero-line-2 {
    display: block;
    color: white;
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 153, 79, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 79, 0.6);
    background: linear-gradient(45deg, #ff6b35, var(--accent-color));
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

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

/* Impact Statement Section */
.impact-statement {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.impact-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 153, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(106, 138, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.impact-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 4rem 4rem 2rem 4rem;
}

.impact-title {
    margin-top: 0;
}

.impact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 153, 79, 0.5);
}

.impact-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.impact-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 153, 79, 0.3);
}

.metric-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Warrior Quote Section */
.warrior-quote-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.warrior-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 153, 79, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(106, 138, 115, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.warrior-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.warrior-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.warrior-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
}

.warrior-visual:hover .warrior-image {
    transform: scale(1.05);
}

.warrior-text {
    padding-left: 2rem;
}

.warrior-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.warrior-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

.warrior-stats {
    display: flex;
    gap: 3rem;
}

.warrior-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 153, 79, 0.3);
}

.stat-desc {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Power Statement Section */
.power-statement {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
}

.power-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.power-text {
    padding-right: 2rem;
}

.power-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.power-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.power-signature {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.power-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.power-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
}

.power-visual:hover .power-image {
    transform: scale(1.05);
}

/* Final Impact CTA Section */
.final-impact-cta {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: contrast(1.1) brightness(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 153, 79, 0.6);
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 153, 79, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 79, 0.6);
    background: linear-gradient(45deg, #ff6b35, var(--accent-color));
}

.btn-secondary-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary-cta:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.cta-guarantee i {
    font-size: 1.2rem;
}

.cta-pricing-note {
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pricing-note p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
}

/* Game Day Gallery Section */
.gameday-gallery-section {
    padding: 8rem 0;
    background: var(--light-color);
    position: relative;
}

.gameday-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(106, 138, 115, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 153, 79, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Gallery Filter Removed - Pure Focus on Images */

/* Gallery Grid Styling - Pure Focus on Dramatic Images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    background-color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
}

/* Vertical gallery item styling - Enhanced for Drama */
.gallery-item.vertical {
    grid-row: span 2;
}

.gallery-item.vertical img {
    height: 100%;
    min-height: 500px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
}

.gallery-item:hover img {
    transform: scale(1.08);
}





/* Game Day Process Section */
.gameday-process-section {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
}

.process-content {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.process-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
}

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

.process-info {
    flex: 1.5;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-feature {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(255, 153, 79, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content p {
    margin: 0;
    line-height: 1.6;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .process-content {
        flex-direction: column;
        align-items: center;
    }
    
    .process-image {
        max-width: 100%;
    }
    
    
    .impact-metrics {
        gap: 2rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .power-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .power-text {
        padding-right: 0;
        text-align: center;
    }
    
    .warrior-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .warrior-text {
        padding-left: 0;
        text-align: center;
    }
    
    .warrior-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .gameday-gallery-section,
    .gameday-process-section,
    .impact-statement,
    .power-statement,
    .warrior-quote-section {
        padding: 4rem 0;
    }
    
    
    
    .process-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-content {
        width: 100%;
    }
    
    
    .hero-content {
        padding: 0 1rem;
        margin-bottom: 10rem;
    }
    
    .impact-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dramatic-hero {
        min-height: 70vh;
    }
    
    .final-impact-cta {
        min-height: 60vh;
    }
    
}

@media screen and (max-width: 576px) {
    
    
    .lightbox-img {
        max-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-text {
        font-size: 1.1rem;
    }
    
    .power-title {
        font-size: 1.8rem;
    }
    
    .power-quote {
        font-size: 1.1rem;
    }
    
    .warrior-title {
        font-size: 1.8rem;
    }
    
    .warrior-quote {
        font-size: 1.1rem;
    }
    
    .warrior-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}
