/* Custom Styles for Himalayan Hawks Website */

/* Color Variables */
:root {
    --primary-blue: #1a365d;
    --secondary-blue: #2563eb;
    --accent-red: #dc2626;
    --light-blue: #3b82f6;
    --dark-red: #991b1b;
    --text-light: #ffffff;
    --text-dark: #1f2937;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
    --gradient-secondary: linear-gradient(135deg, var(--accent-red), var(--primary-blue));
}

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background: #b3d8fd;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    background: rgba(220, 38, 38, 0.85) !important;
    backdrop-filter: blur(10px);
    padding: 0.25rem 0;
    min-height: 40px;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light) !important;
}

.navbar-brand img {
    max-height: 60px;
    height: 60px;
}

.navbar-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--text-light) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('images/himalayan-range.svg') no-repeat bottom center, #b3d8fd;
    background-size: cover;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 24px #1a365d, 0 2px 8px #000, 0 0px 2px #fff;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Stat Boxes */
.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--gradient-secondary);
}

.about-content {
    padding-right: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature p {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.about-image img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
}

/* Matches Section */
.matches-section {
    padding: 8rem 0;
    background: var(--gradient-secondary);
}

.match-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.match-header {
    text-align: center;
    margin-bottom: 3rem;
}

.match-date {
    display: block;
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-top: 1rem;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.team {
    text-align: center;
}

.team-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.vs {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--gradient-secondary);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--text-light);
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background: var(--text-light);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    padding: 4rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.footer-text {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.1rem;
}

.footer-copyright {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-primary);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-light);
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Quick Stats Section */
.quick-stats {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
    margin: 1rem 0;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Team Overview Section */
.team-overview {
    background-color: #ffffff;
    padding: 5rem 0;
}

.team-overview h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-overview .lead {
    color: #34495e;
    font-size: 1.2rem;
    line-height: 1.8;
}

.team-overview ul li {
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 0.5rem 0;
}

.team-overview .position-relative {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-overview .position-absolute {
    background-color: rgba(13, 110, 253, 0.9);
    padding: 1rem;
    border-top-left-radius: 10px;
}

/* Featured Players Section */
.featured-players {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.player-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.player-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.player-info {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

.player-info h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.player-role {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 500;
}

.player-stats {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
}

/* Enhanced Hero Section */
.hero-section .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.hero-section .btn-outline-light:hover {
    background-color: #fff;
    color: #0d6efd;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .match-teams {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-overview {
        padding: 3rem 0;
    }
    
    .team-overview h2 {
        font-size: 2rem;
    }

    .player-image {
        height: 300px;
    }
    
    .player-info h3 {
        font-size: 1.75rem;
    }
    
    .player-role {
        font-size: 1.1rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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