/* --- General Setup --- */
:root {
    --white: #FFFFFF;
    --yellow: #FFD700; /* Gold Yellow */
    --black: #000000;
    --gray: #f4f4f4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--white);
    color: var(--black);
}

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--white);
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .logo {
    display: flex;
    align-items: center;
}

.main-header .logo img {
    height: 50px;
    margin-right: 15px;
}

.team-name-link {
    text-decoration: none;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

.main-nav a:hover {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

/* --- Main Content & Sections --- */
.content-section {
    padding: 4rem 2rem;
    text-align: center;
}

.content-section:nth-of-type(odd) {
    background-color: var(--gray);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://via.placeholder.com/1920x1080/DDDDDD/FFFFFF?text=Soccer+Field') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--black);
}

.hero-content .main-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--yellow);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
}

.hero-content p {
    font-size: 1.5rem;
}

/* News Section */
.news-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.news-box {
    background: var(--white);
    border: 1px solid #ddd;
    border-left: 5px solid var(--yellow);
    padding: 1.5rem;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news-box h3 {
    margin-bottom: 0.5rem;
}

.news-date {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #777;
}

/* Players Section */
.players-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.player-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.player-card:hover {
    transform: translateY(-5px);
}

.player-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.player-card h3 {
    margin: 1rem 0 0.5rem;
}

.player-card ul {
    list-style: none;
    padding: 0 1rem 1rem;
    text-align: left;
}

/* Store Section */
.store-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.product-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    width: 300px;
}

.product-item img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-item .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.product-item button, .contact-form button {
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

.product-item button:hover, .contact-form button:hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

/* Social Media Section */
.social-media-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-media-container img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-media-container a:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 2rem;
}
