/*
 * CormackCoreWeb 2.0 - Custom Stylesheet
 * Author: Charlie - Cormack Advertising
 * Add your custom styles here
 */

/* ================================
   Global Font Setup - Sofia Sans Extra Condensed
   ================================ */

/* Base font applied to body */
body {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Heading 1 - Default and Weight Variations */
h1 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

h1.light {
    font-weight: 300;
}

h1.regular {
    font-weight: 500;
}

h1.bold {
    font-weight: 700;
}

/* Heading 2 - Default and Weight Variations */
h2 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

h2.light {
    font-weight: 300;
}

h2.regular {
    font-weight: 500;
}

h2.bold {
    font-weight: 700;
}

/* Heading 3 - Default and Weight Variations */
h3 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h3.light {
    font-weight: 300;
}

h3.regular {
    font-weight: 500;
}

h3.bold {
    font-weight: 700;
}

/* Heading 4 - Default and Weight Variations */
h4 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h4.light {
    font-weight: 300;
}

h4.regular {
    font-weight: 500;
}

h4.bold {
    font-weight: 700;
}

/* Paragraph - Default and Weight Variations */
p {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

p.light {
    font-weight: 300;
}

p.regular {
    font-weight: 400;
}

p.bold {
    font-weight: 700;
}

/* ================================
   Hero Slider Styles
   ================================ */

/* Header positioning over slider */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 10px 0;
}

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

/* Logo Styles */
.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #8c22c2;
}

/* Responsive Header */
@media (max-width: 992px) {
    .logo-img {
        height: 50px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }
}

/* Slider Wrapper */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
    z-index: 5;
    pointer-events: none;
}

/* Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Image Background */
.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0) 50%);
}

/* Slide Content */
.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 50px;
}

.hero-slide-text {
    color: #ffffff;
    max-width: 100%;
}

.hero-slide-text h1,
.hero-slide-text h2,
.hero-slide-text h3,
.hero-slide-text h4,
.hero-slide-text p {
    color: #ffffff;
    margin: 0 0 15px 0;
}

.hero-slide-text h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-slide-text h2 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-slide-text p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Highlighted Text Span */
.hero-slide-text .highlight,
.hero-slide-text span.highlight {
    background: #8c22c2;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    line-height: 1.1;
    font-weight: 100;
    font-style: italic;
}

/* Global Highlight Class (can be used anywhere) */
.highlight,
span.highlight {
    background: #8c22c2;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 100;
    font-style: italic;
}

/* Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.pagination-dot {
    min-width: 25px;
    height: 25px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.pagination-dot::before {
    content: attr(data-slide);
}

.pagination-dot:hover {
    background: rgba(140, 34, 194, 0.8);
}

.pagination-dot.active {
    background: #8c22c2;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-slide-text h1 {
        font-size: 4.5rem;
    }

    .hero-slide-text h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-text h1 {
        font-size: 4rem;
    }

    .hero-slide-text h2 {
        font-size: 3rem;
    }

    .hero-slide-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-slider-wrapper {
        height: 80vh;
    }

    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-text h1 {
        font-size: 3.5rem;
    }

    .hero-slide-text h2 {
        font-size: 2.5rem;
    }

    .hero-slide-text p {
        font-size: 1.2rem;
    }

    .hero-slide-content {
        padding: 40px;
    }

    .pagination-dot {
        min-width: 23px;
        height: 23px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-wrapper {
        height: 70vh;
    }

    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-text h1 {
        font-size: 2.8rem;
    }

    .hero-slide-text h2 {
        font-size: 2rem;
    }

    .hero-slide-text p {
        font-size: 1.1rem;
    }

    .hero-slide-content {
        padding: 30px;
    }

    .hero-slider-pagination {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }

    .pagination-dot {
        min-width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }

    .highlight,
    span.highlight,
    .hero-slide-text .highlight {
        padding: 3px 12px;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper {
        height: 60vh;
        min-height: 500px;
    }

    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-text h1 {
        font-size: 2.2rem;
    }

    .hero-slide-text h2 {
        font-size: 1.8rem;
    }

    .hero-slide-text p {
        font-size: 1rem;
    }

    .hero-slide-content {
        padding: 20px;
    }

    .pagination-dot {
        min-width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}

/* ================================
   About Us Section
   ================================ */

.about-us-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
        background: linear-gradient(135deg, rgba(140, 34, 194, 0.95) 0%, rgba(111, 26, 154, 0.95) 100%), url(../images/pattern.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-us-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.about-us-headline-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.about-us-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.about-us-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-us-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 auto;
    max-width: 1200px;
    font-weight: 400;
}

/* Responsive About Us Section */
@media (max-width: 1400px) {
    .about-us-headline-overlay {
        font-size: 6rem;
    }

    .about-us-headline {
        font-size: 3.5rem;
    }

    .about-us-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 1200px) {
    .about-us-section {
        padding: 80px 40px;
    }

    .about-us-headline-overlay {
        font-size: 5.5rem;
    }

    .about-us-headline {
        font-size: 3rem;
    }

    .about-us-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .about-us-section {
        min-height: 40vh;
        padding: 60px 40px;
    }

    .about-us-headline-overlay {
        font-size: 5rem;
    }

    .about-us-headline {
        font-size: 2.5rem;
    }

    .about-us-text {
        font-size: 1.2rem;
    }

    .about-us-headline-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 30px;
    }

    .about-us-headline-overlay {
        font-size: 4rem;
    }

    .about-us-headline {
        font-size: 2rem;
    }

    .about-us-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-us-headline-wrapper {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 40px 20px;
        min-height: 35vh;
    }

    .about-us-headline-overlay {
        font-size: 2.5rem;
    }

    .about-us-headline {
        font-size: 1.8rem;
    }

    .about-us-text {
        font-size: 1rem;
    }

    .about-us-headline-wrapper {
        margin-bottom: 20px;
    }
}

/* ================================
   Team Carousel Section
   ================================ */

.team-carousel-section {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    padding: 100px 0;
    overflow: hidden;
}

.team-carousel-container {
    position: relative;
    width: 100%;
}

/* Headline wrapper with overlay */
.team-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 100px;
}

.team-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: #dfdfdf;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
    text-transform: uppercase;
}

/* Label above headline */
.team-section-label {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #8c22c2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

/* Main headline */
.team-main-headline {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Purple strip containing jerseys - full width with pattern background */
.team-purple-strip {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(140, 34, 194, 0.95) 0%, rgba(111, 26, 154, 0.95) 100%), url('../images/pattern.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    padding: 80px 0 0 0;
    margin-bottom: 80px;
}

.team-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.team-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    perspective: 1500px;
}

.team-slide {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform-origin: center bottom;
}

.team-slide img {
    width: auto;
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.team-slide.active {
    z-index: 5;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.team-slide.left-1 {
    z-index: 4;
    opacity: 0.85;
    transform: translateX(-65%) scale(0.75);
}

.team-slide.left-2 {
    z-index: 3;
    opacity: 0.6;
    transform: translateX(-120%) scale(0.55);
}

.team-slide.right-1 {
    z-index: 4;
    opacity: 0.85;
    transform: translateX(65%) scale(0.75);
}

.team-slide.right-2 {
    z-index: 3;
    opacity: 0.6;
    transform: translateX(120%) scale(0.55);
}

/* Player details wrapper with navigation arrows */
.player-details-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Navigation arrows next to player details */
.carousel-nav {
    position: relative;
    top: auto;
    transform: none;
    z-index: 10;
    background-color: #ffffff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 15px;
    font-size: 0;
    background-size: 30px 30px;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-prev {
    background-image: url('../images/arrow-left.svg');
}

.carousel-next {
    background-image: url('../images/arrow-right.svg');
}

.carousel-nav:hover {
    opacity: 0.8;
}

/* Player details below purple strip */
.player-details {
    position: relative;
    text-align: center;
    padding: 0 20px;
    flex: 1;
    max-width: 600px;
}

/* Player number overlay behind details */
.player-number-overlay {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(140, 34, 194, 0.08);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.player-name {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.player-position {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666666;
    margin: 0 0 60px 0;
}

.player-position span {
    font-weight: 700;
    color: #8c22c2;
}

.player-full-info {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 45px;
    background: #8c22c2;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border: none;
}

.player-full-info::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.player-full-info:hover {
    background: #6f1a9a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 34, 194, 0.3);
}

/* Responsive Team Carousel */
@media (max-width: 1400px) {
    .team-headline-overlay {
        font-size: 6rem;
    }

    .team-main-headline {
        font-size: 3.5rem;
    }

    .team-slide img {
        height: 570px;
    }

    .team-carousel-wrapper {
        height: 440px;
    }

    .player-number-overlay {
        font-size: 13rem;
    }

    .player-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .team-carousel-section {
        padding: 80px 0;
    }

    .team-headline-wrapper {
        margin-bottom: 50px;
    }

    .team-headline-overlay {
        font-size: 5.5rem;
    }

    .team-main-headline {
        font-size: 3rem;
    }

    .team-slide img {
        height: 340px;
    }

    .team-carousel-wrapper {
        height: 440px;
    }

    .player-details-wrapper {
        padding: 0 60px;
        gap: 40px;
    }

    .player-number-overlay {
        font-size: 11rem;
    }

    .player-name {
        font-size: 2rem;
    }

    .player-position {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .team-carousel-section {
        padding: 60px 0;
    }

    .team-headline-overlay {
        font-size: 5rem;
    }

    .team-main-headline {
        font-size: 2.5rem;
    }

    .team-slide img {
        height: 300px;
    }

    .team-carousel-wrapper {
        height: 400px;
    }

    .team-slide.left-2,
    .team-slide.right-2 {
        opacity: 0;
        pointer-events: none;
    }

    .player-details-wrapper {
        padding: 0 40px;
        gap: 30px;
    }

    .player-number-overlay {
        font-size: 9rem;
    }

    .player-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .team-carousel-section {
        padding: 50px 0;
    }

    .team-headline-wrapper {
        margin-bottom: 40px;
    }

    .team-headline-overlay {
        font-size: 4rem;
    }

    .team-section-label {
        font-size: 0.9rem;
    }

    .team-main-headline {
        font-size: 2rem;
    }

    .team-purple-strip {
        padding: 60px 0 0 0;
        margin-bottom: 50px;
    }

    .team-slide img {
        height: 280px;
    }

    .team-carousel-wrapper {
        height: 380px;
    }

    .player-details-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .player-number-overlay {
        font-size: 10rem;
    }

    .player-name {
        font-size: 1.6rem;
    }

    .player-position {
        font-size: 1rem;
    }

    .player-full-info {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .team-carousel-section {
        padding: 40px 0;
    }

    .team-headline-wrapper {
        margin-bottom: 30px;
    }

    .team-headline-overlay {
        font-size: 2.5rem;
    }

    .team-section-label {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .team-main-headline {
        font-size: 1.6rem;
    }

    .team-purple-strip {
        padding: 40px 0 0 0;
        margin-bottom: 40px;
    }

    .team-slide img {
        height: 250px;
    }

    .team-carousel-wrapper {
        height: 350px;
    }

    .team-slide.left-1,
    .team-slide.right-1 {
        opacity: 0.4;
    }

    .player-details-wrapper {
        padding: 0 20px;
        gap: 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .player-number-overlay {
        font-size: 5rem;
    }

    .player-name {
        font-size: 1.4rem;
    }

    .player-position {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .player-full-info {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ================================
   Sponsors Section
   ================================ */

.sponsors-section {
    padding: 100px 50px;
    background: #ffffff;
}

.sponsors-container {
    max-width: 1600px;
    margin: 0 auto;
}

.sponsors-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

.sponsors-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: #f5f5f5;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
    text-transform: uppercase;
}

.sponsors-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sponsors-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

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

/* Responsive Sponsors Section */
@media (max-width: 1400px) {
    .sponsors-headline-overlay {
        font-size: 6rem;
    }

    .sponsors-headline {
        font-size: 3.5rem;
    }

    .sponsor-logo img {
        max-width: 220px;
        max-height: 110px;
    }
}

@media (max-width: 1200px) {
    .sponsors-section {
        padding: 80px 40px;
    }

    .sponsors-headline-overlay {
        font-size: 5.5rem;
    }

    .sponsors-headline {
        font-size: 3rem;
    }

    .sponsors-headline-wrapper {
        margin-bottom: 60px;
    }

    .sponsors-logos {
        gap: 60px;
    }

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

@media (max-width: 992px) {
    .sponsors-section {
        padding: 60px 40px;
    }

    .sponsors-headline-overlay {
        font-size: 5rem;
    }

    .sponsors-headline {
        font-size: 2.5rem;
    }

    .sponsors-logos {
        gap: 50px;
    }

    .sponsor-logo img {
        max-width: 180px;
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 50px 30px;
    }

    .sponsors-headline-overlay {
        font-size: 4rem;
    }

    .sponsors-headline {
        font-size: 2rem;
    }

    .sponsors-headline-wrapper {
        margin-bottom: 50px;
    }

    .sponsors-logos {
        gap: 40px;
        flex-direction: column;
    }

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

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

    .sponsors-headline-overlay {
        font-size: 2.5rem;
    }

    .sponsors-headline {
        font-size: 1.6rem;
    }

    .sponsors-headline-wrapper {
        margin-bottom: 40px;
    }

    .sponsors-logos {
        gap: 30px;
    }

    .sponsor-logo img {
        max-width: 180px;
        max-height: 90px;
    }
}

/* ================================
   Recent News Section
   ================================ */

.recent-news-section {
    padding: 100px 50px;
    background: #ffffff;
}

.recent-news-container {
    max-width: 1600px;
    margin: 0 auto;
}

.news-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.news-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: #f5f5f5;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.news-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Featured News (Left Column) */
.news-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-featured-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-date {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.news-featured .news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.news-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.news-read-more {
    display: inline-block;
    padding: 12px 30px;
    background: #8c22c2;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.news-read-more:hover {
    background: #6f1a9a;
}

/* News Grid (Right Column) */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-grid-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-grid-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-grid-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.news-grid-image:hover img {
    transform: scale(1.05);
}

.news-grid-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-grid-item .news-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.news-grid-item .news-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-grid-item .news-title a:hover {
    color: #8c22c2;
}

/* Responsive Recent News */
@media (max-width: 1400px) {
    .news-headline-overlay {
        font-size: 6rem;
    }

    .news-headline {
        font-size: 3.5rem;
    }

    .news-featured .news-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .recent-news-section {
        padding: 80px 40px;
    }

    .news-headline-overlay {
        font-size: 5.5rem;
    }

    .news-headline {
        font-size: 3rem;
    }

    .news-featured .news-title {
        font-size: 2rem;
    }

    .news-grid-item .news-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .recent-news-section {
        padding: 60px 40px;
    }

    .news-headline-overlay {
        font-size: 5rem;
    }

    .news-headline {
        font-size: 2.5rem;
    }

    .news-headline-wrapper {
        margin-bottom: 40px;
    }

    .news-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .news-featured-image {
        height: 350px;
    }

    .news-featured .news-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .recent-news-section {
        padding: 50px 30px;
    }

    .news-headline-overlay {
        font-size: 4rem;
    }

    .news-headline {
        font-size: 2rem;
    }

    .news-headline-wrapper {
        margin-bottom: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-featured-image {
        height: 300px;
    }

    .news-featured .news-title {
        font-size: 1.6rem;
    }

    .news-grid-item .news-title {
        font-size: 1.1rem;
    }

    .news-excerpt {
        font-size: 1rem;
    }
}

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

    .news-headline-overlay {
        font-size: 2.5rem;
    }

    .news-headline {
        font-size: 1.8rem;
    }

    .news-featured-image {
        height: 250px;
    }

    .news-grid-image {
        height: 180px;
    }

    .news-featured .news-title {
        font-size: 1.4rem;
    }

    .news-grid-item .news-title {
        font-size: 1rem;
    }
}

/* ================================
   Footer Section
   ================================ */

.site-footer {
    background: #152527;
    padding: 40px 50px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo a {
    display: block;
    line-height: 0;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

.footer-copyright a {
    color: #8c22c2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #a855f7;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logo img {
        height: 50px;
        margin: 0 auto;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-copyright p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 20px;
    }

    .footer-container {
        gap: 25px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}

/* Brochure Banner Styles */
.brochure-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.brochure-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brochure-banner-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 10px;
}

.brochure-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brochure-link svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brochure-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .brochure-banner-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .brochure-links {
        justify-content: center;
    }

    .brochure-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ===================================
   Player Modal Styles
   =================================== */

.player-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.player-modal.active {
    display: block;
}

.player-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
}

.player-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
    background: url('../images/player-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 10002;
    padding: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: stretch;
    min-height: 450px;
}

.player-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #8c22c2;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10003;
    line-height: 1;
    padding: 0;
}

.player-modal-close:hover {
    background: #6f1a9a;
}

/* Left column - Jersey image */
.player-modal-image {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.player-modal-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
}

/* Right column - Player info */
.player-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    gap: 25px;
}

/* Header with number and name on one line */
.player-modal-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.player-modal-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin: 0;
    font-family: 'Sofia Sans', sans-serif;
}

.player-modal-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Sofia Sans', sans-serif;
}

.player-modal-position {
    font-size: 1rem;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-family: 'Open Sans', sans-serif;
}

.player-modal-position span {
    color: #8c22c2;
    font-weight: 600;
}

.player-modal-description p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 20px 0;
    font-family: 'Open Sans', sans-serif;
}

.player-modal-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 55px;
    background: #8c22c2;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
    align-self: flex-start;
    font-family: 'Sofia Sans', sans-serif;
}

.player-modal-contact::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.player-modal-contact:hover {
    background: #6f1a9a;
}

/* Modal Responsive Styles */
@media (max-width: 992px) {
    .player-modal-content {
        flex-direction: column;
        max-width: 600px;
    }

    .player-modal-image {
        flex: 0 0 auto;
        padding: 40px;
    }

    .player-modal-image img {
        max-width: 250px;
    }

    .player-modal-info {
        flex: 0 0 auto;
        padding: 40px;
    }

    .player-modal-number {
        font-size: 3rem;
    }

    .player-modal-name {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .player-modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .player-modal-close {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .player-modal-image {
        padding: 30px;
    }

    .player-modal-image img {
        max-width: 200px;
    }

    .player-modal-info {
        padding: 30px;
    }

    .player-modal-number {
        font-size: 2.5rem;
    }

    .player-modal-name {
        font-size: 2.5rem;
    }

    .player-modal-position {
        font-size: 0.9rem;
    }

    .player-modal-description p {
        font-size: 0.9rem;
    }

    .player-modal-contact {
        padding: 12px 45px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .player-modal-image {
        padding: 25px;
    }

    .player-modal-image img {
        max-width: 180px;
    }

    .player-modal-info {
        padding: 25px;
    }

    .player-modal-header {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .player-modal-number {
        font-size: 2rem;
    }

    .player-modal-name {
        font-size: 2rem;
    }

    .player-modal-position {
        font-size: 0.85rem;
    }

    .player-modal-description p {
        font-size: 0.85rem;
    }

    .player-modal-contact {
        padding: 10px 35px;
        font-size: 0.8rem;
    }
}
