* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

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

.logo h1 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.tagline {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    font-size: 15px;
}

.nav a:hover,
.nav a.active {
    opacity: 0.7;
}

/* Hero Section */
.hero {
      background-image: url("sunset.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;

    
       color: black;
    padding: 120px 40px;
    text-align: center; 
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 16px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #f39c12;
    font-weight: 700;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.stat h3 {
    font-size: 36px;
    color: #f39c12;
    margin-bottom: 10px;
    font-weight: 700;
}

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

/* Tournaments Section */
.tournaments {
    padding: 80px 20px;
}

.tournaments h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #f39c12;
    font-weight: 700;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tournament-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #f39c12;
}

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

.tournament-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f39c12;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tournament-card h3 {
    color: #e67e22;
    margin: 20px 0 15px 0;
    font-size: 20px;
    font-weight: 700;
}

.tournament-card p {
    margin-bottom: 12px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.tournament-card strong {
    color: #f39c12;
    font-weight: 600;
}

/* Registration Section */
.registration {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.registration h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #f39c12;
    font-weight: 700;
}

.registration-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.form-container {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.form-container iframe {
    border-radius: 5px;
    display: block;
}

/* Hide Google Form header with account info */
.form-container iframe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    z-index: 10;
}

/* Alternative method - hide via iframe content */
@supports (clip-path: polygon(0 60px, 100% 60px, 100% 100%, 0 100%)) {
    .form-container iframe {
        clip-path: inset(60px 0 0 0);
        margin-top: -60px;
        height: calc(1200px + 60px);
    }
}

.registration-info {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.registration-info h3 {
    text-align: center;
    font-size: 28px;
    color: #f39c12;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item h4 {
    color: #e67e22;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

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

.info-item li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.info-item li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #f39c12;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.contact-item p {
    color: #666;
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-item a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f39c12;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #f39c12;
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.footer p {
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav ul {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    .nav a {
        font-size: 14px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .about h2,
    .tournaments h2,
    .registration h2,
    .contact h2 {
        font-size: 32px;
    }

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

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

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

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

    .registration-info {
        padding: 25px;
    }

    @supports (clip-path: polygon(0 60px, 100% 60px, 100% 100%, 0 100%)) {
        .form-container iframe {
            height: calc(1000px + 60px);
        }
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .tagline {
        font-size: 12px;
    }

    .about-content p {
        font-size: 15px;
    }

    .stat h3 {
        font-size: 28px;
    }

    .tournament-card h3 {
        font-size: 18px;
    }

    @supports (clip-path: polygon(0 60px, 100% 60px, 100% 100%, 0 100%)) {
        .form-container iframe {
            height: calc(900px + 60px);
        }
    }
}
