/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c0392b;
    --accent-color: #e74c3c;
    --rose-color: #d4526e;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.club-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--rose-color);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.instagram-link:hover {
    background-color: var(--rose-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 82, 110, 0.3);
}

/* Hero Section - Jumbotron Style */
.hero {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 4rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--rose-color);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.usaw-badge {
    background: linear-gradient(135deg, var(--rose-color), var(--secondary-color));
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 82, 110, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--background);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--rose-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Champions Section */
.champions {
    padding: 4rem 0;
    background-color: var(--background-alt);
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.champions-note {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 2rem auto 0;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Instagram Section */
.instagram-feed {
    padding: 4rem 0;
    background-color: var(--background);
}

.feed-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.instagram-cta {
    text-align: center;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--rose-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 82, 110, 0.3);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 82, 110, 0.4);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.footer-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--rose-color);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* Responsive Design */
/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 0.75rem 0;
    }

    .nav .container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .club-name {
        font-size: 1.2rem;
    }

    .instagram-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        gap: 0.3rem;
    }

    .instagram-link svg {
        width: 18px;
        height: 18px;
    }

    /* Hero adjustments */
    .hero {
        padding: 2.5rem 0;
    }

    .hero-logo {
        max-width: 320px;
    }

    .hero-tagline {
        font-size: 1.8rem;
    }

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

    .usaw-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    /* Section adjustments */
    .about, .champions, .instagram-feed {
        padding: 3rem 0;
    }

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

    /* Achievements grid */
    .achievements {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .achievement-card {
        padding: 1.5rem;
    }

    .achievement-icon {
        font-size: 2rem;
    }

    .achievement-title {
        font-size: 1.2rem;
    }

    /* Instagram section */
    .feed-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .instagram-button {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Header */
    .nav .container {
        flex-direction: column;
        text-align: center;
    }

    .club-name {
        font-size: 1.1rem;
    }

    .instagram-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }

    /* Hero */
    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-logo {
        max-width: 280px;
    }

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

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

    .usaw-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Sections */
    .about, .champions, .instagram-feed {
        padding: 2rem 0;
    }

    .container {
        padding: 0 15px;
    }

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

    .intro-text {
        font-size: 1rem;
    }

    /* Achievement cards */
    .achievement-card {
        padding: 1.25rem;
    }

    .achievement-icon {
        font-size: 1.75rem;
    }

    .achievement-title {
        font-size: 1.1rem;
    }

    .achievement-description {
        font-size: 0.9rem;
    }

    /* Instagram section */
    .feed-subtitle {
        font-size: 0.95rem;
    }

    .instagram-button {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .footer {
        padding: 1.25rem 0;
    }

    .footer-content {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-logo {
        max-width: 240px;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

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

    .instagram-button {
        max-width: 240px;
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }
}
