/* NFL Fan Connect - Homepage Styles */

/* Color Variables */
:root {
    --pink: #ff2d75;
    --pink-dark: #e02467;
    --gold: #ffd700;
    --gold-dark: #e6c200;
    --dark: #1a1a2e;
    --dark-light: #16213e;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 45, 117, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.text-gradient-pink {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }

/* Gradient Buttons */
.btn-pink-gradient {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 117, 0.3);
}

.btn-pink-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 117, 0.4);
    color: white;
}

.btn-gold-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #1a1a2e;
}

.btn-hover-lift {
    transition: all 0.3s ease;
}

.btn-hover-lift:hover {
    transform: translateY(-3px);
}

/* Background Gradients */
.bg-gradient-pink { background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%); }
.bg-gradient-pink-light { background: linear-gradient(135deg, #fff5f9 0%, #ffe5f0 100%); }
.bg-gradient-gold { background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%); }
.bg-gradient-dark { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.bg-gradient-dark-light { background: linear-gradient(135deg, #16213e 0%, #0f3460 100%); }
.bg-gradient-blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.bg-gradient-purple { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.bg-gradient-light { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(2) { animation-delay: 1s; }
.floating-icon:nth-child(3) { animation-delay: 2s; }
.floating-icon:nth-child(4) { animation-delay: 3s; }

/* Scoreboard Widget */
.scoreboard-widget {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
}

.score-item {
    transition: all 0.3s ease;
}

.score-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Card Styles */
.cheerleader-card, .player-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.cheerleader-card:hover, .player-card:hover {
    transform: translateY(-10px);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.cheerleader-img, .player-img, .gallery-img {
    transition: transform 0.5s ease;
}

.cheerleader-card:hover .cheerleader-img,
.player-card:hover .player-img,
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.card-overlay, .card-overlay-dark, .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cheerleader-card:hover .card-overlay,
.player-card:hover .card-overlay-dark,
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Sparkle Background */
.sparkle-bg, .sparkle-bg-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: sparkle 20s linear infinite;
    opacity: 0.3;
}

.sparkle-bg-dark {
    background-image: 
        radial-gradient(circle, rgba(255, 215, 0, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 45, 117, 0.3) 1px, transparent 1px);
}

/* Players Section */
.players-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.field-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 51px
    );
    pointer-events: none;
}

/* Experience Cards */
.experience-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border-radius: 20px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular-badge-card {
    border: 3px solid var(--gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 45, 117, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
}

/* Gallery */
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes sparkle {
    0% { background-position: 0 0, 40px 40px; }
    100% { background-position: 50px 50px, 90px 90px; }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Badge Styles */
.badge.bg-gradient-pink {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%);
}

.badge.bg-gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.bg-soft-pink { background-color: #fff5f9; }
.text-pink { color: var(--pink); }
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { min-height: auto; }
    .floating-icon { font-size: 2rem; }
    .display-2 { font-size: 2.5rem; }
    .display-3 { font-size: 2rem; }
}


/* Header Styles */
.site-name {
    font-size: 1.75rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-name:hover {
    color: var(--pink);
    text-shadow: 2px 2px 6px rgba(255, 45, 117, 0.4);
}

/* Make site name visible on light backgrounds */
.navbar.navbar-clone .site-name,
.navbar:not(.navbar-dark) .site-name {
    color: var(--dark);
    text-shadow: none;
}

.navbar.navbar-clone .site-name:hover {
    color: var(--pink);
}

/* Contact button gradient */
.btn-pink-gradient {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 117, 0.3);
}

.btn-pink-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 117, 0.4);
    color: white;
}


/* Hero Section Gradient - Consistent across all pages */
.hero-gradient-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
}

.wrapper.image-wrapper.bg-overlay {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
