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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    opacity: 1;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 120px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5530;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-color: #2c5530;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
                      url('images/Youth-GAA-Header-Image-02.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline-translation {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #a61323;
    color: white;
    border-color: #a61323;
}

.btn-primary:hover {
    background: #8a0f1c;
    border-color: #8a0f1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 19, 35, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5530;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5530;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Sports Section */
.sports {
    position: relative;
    background-color: #2c5530;
    background-image: url('images/Youth-GAA-Header-Image-04.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sports .section-title {
    color: #ffffff;
}

.sports .container {
    position: relative;
    z-index: 1;
}

.sports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sport-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #2c5530;
    position: relative;
    overflow: hidden;
}

.sport-card:first-child {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%),
                url('images/Youth-GAA-Header-Image-01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sport-card:last-child {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%),
                url('images/Youth-GAA-Header-Image-03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sport-card h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.sport-card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.sport-card ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.sport-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    z-index: 1;
}

.sport-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Methodology Section */
.methodology {
    background: #f8f9fa;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.methodology-text h3,
.methodology-principles h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.methodology-text ul {
    list-style: none;
}

.methodology-text li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.principle {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.principle h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle p {
    color: #666;
    font-size: 0.95rem;
}

/* Sessions Section */
.sessions {
    position: relative;
    background-color: #2c5530;
    background-image: url('images/Youth-GAA-Header-Image-05.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sessions .container {
    position: relative;
    z-index: 1;
}

.sessions-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.session-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #2c5530;
}

.session-card.featured {
    border-color: #a61323;
    position: relative;
}

.session-card.featured:before {
    content: "Next Series";
    position: absolute;
    top: -15px;
    left: 30px;
    background: #a61323;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.session-card h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.session-details p {
    margin-bottom: 0.8rem;
    color: #555;
}

.session-details a {
    color: #2c5530;
    font-weight: 600;
    text-decoration: none;
}

.session-details a:hover {
    text-decoration: underline;
}

.session-description {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.session-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.session-info h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.session-info ul {
    list-style: none;
}

.session-info li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.session-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Sponsorship Section */
.sponsorship {
    background: #f8f9fa;
}

.sponsor-thank-you {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sponsor-thank-you h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sponsor-thank-you > p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    min-height: 100px;
}

.sponsor-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.sponsor-logo-img {
    display: block;
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.sponsor-logo-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #2c5530;
    font-weight: 600;
}

.sponsorship-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.sponsorship-levels {
    width: 100%;
}

.sponsorship-text h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sponsorship-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.sponsorship-benefits h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sponsorship-benefits ul {
    list-style: none;
}

.sponsorship-benefits li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.sponsorship-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.level {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #2c5530;
    min-height: 100%;
}

.level h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a61323;
    margin-bottom: 1rem;
}

.level ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.level li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.level li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-logo {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.contact-logo-img {
    max-width: 200px;
    height: auto;
    width: 100%;
}

.contact-item {
    width: 100%;
    text-align: left;
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #555;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.contact-form h3 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c5530;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

/* Registration Page */
.registration-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: #f8f9fa;
}

.registration-intro {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.registration-form-wrapper {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.registration-form-wrapper h3 {
    font-size: 1.35rem;
    color: #2c5530;
    margin: 2rem 0 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.registration-form-wrapper h3:first-of-type {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.radio-label input {
    width: auto;
}

.label-hint {
    font-weight: 400;
    color: #888;
    font-size: 0.9rem;
}

.optional {
    font-weight: 400;
    color: #888;
    font-size: 0.95rem;
}

.payment-section {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.payment-section .section-title {
    margin-bottom: 0.5rem;
}

.payment-intro {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.btn-payment {
    font-size: 1.1rem;
    padding: 14px 28px;
}

@media (max-width: 768px) {
    .registration-page {
        padding: 120px 0 60px;
    }
    .registration-form-wrapper {
        padding: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a7c59;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
        height: 90px;
    }

    .logo-img {
        height: 70px;
        max-width: 200px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 110px 0 60px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .methodology-content,
    .sessions-content,
    .sponsorship-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-logo-img {
        max-width: 150px;
    }


    .sports-grid {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .sport-card,
    .session-card,
    .contact-form {
        padding: 2rem;
    }
}




