/* ================================
GLOBAL RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f5f7fb;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1,
h2,
h3 {
    font-weight: 700;
}

section {
    padding: 70px 0;
}

/* ================================
HEADER
================================ */

.header {
    background: #0a2c55;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}
.logo a{
    color: #fff;
    text-decoration: none;
}
.menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu li {
    cursor: pointer;
    font-weight: 500;
}
.menu li a{
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;

}
.menu .login-btn{
    background: #ff6a5c;
    border: none;
    color: white;
    padding: 0 25px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.menu .login-btn:hover{
    background: #ff4c3c;
    color: #fff;
}
.menu li:hover {
    color: #ff6a5c;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================================
HERO SECTION
================================ */

/* HERO SLIDER */

.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    padding: 0;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.7s;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay */

.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 44, 85, 0.85), rgba(10, 44, 85, 0.2));
}

/* caption */

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 700px;
    width: 90%;
    z-index: 2;
}

.caption h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.caption p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    background: #ff6a5c;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #ff4b3b;
}


/* arrows */

.slider-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 3;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* dots */

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
}

.dot {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

/* responsive */

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .caption h1 {
        font-size: 36px;
    }

}



/* ================================
SEARCH SECTION
================================ */

.search-section {
    background: #123e70;
    padding: 40px 0;
    padding-bottom: 50px;
}
.search-section h2{
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 0;
}
.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
}

.search-box button {
    background: #ff6a5c;
    border: none;
    color: white;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background: #ff4c3c;
}

/* ================================
TEAMS
================================ */

.teams {
    text-align: center;
}

.team-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.team-card img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card p {
    font-weight: 600;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ================================
EVENTS
================================ */

.events {
    background: #0e3a6d;
    color: white;
    text-align: center;
}

.event-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.event-card {
    background: white;
    color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-card h3 {
    margin: 10px 0 5px;
}

.event-card p {
    font-size: 14px;
    color: #666;
}

.event-card button {
    background: #ff6a5c;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-8px);
}

/* ================================
VOUCHER SECTION
================================ */

.voucher-section {
    background: #ffffff;
    padding: 80px 5%;
}

.voucher-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.voucher-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.voucher-subtitle {
    color: #777;
    margin-bottom: 50px;
}

.voucher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.voucher-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.voucher-card:hover {
    transform: translateY(-10px);
}

.voucher-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.voucher-content {
    padding: 25px;
}

.voucher-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.voucher-content p {
    color: #666;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff6a5c;
}

.voucher-btn {
    display: inline-block;
    background: #ff6a5c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.voucher-btn:hover {
    background: #ff4b3b;
}
@media (max-width: 768px) {
    .voucher-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
TRIP BANNER
================================ */

.trip-banner {
    background: linear-gradient(90deg, #1c4c8d, #2aa9a1);
    color: white;
    text-align: center;
}

.trip-banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.trip-banner button {
    margin-top: 15px;
    padding: 14px 30px;
    border: none;
    background: #ff6a5c;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.trip-banner button:hover {
    background: #ff4c3c;
}

/* ================================
MORE EVENTS
================================ */

.more-events {
    text-align: center;
    background: #fff;
}

.more-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.more-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.more-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.more-card p {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.more-card:hover img {
    transform: scale(1.1);
}

/* ================================
TESTIMONIALS
================================ */

.review-section {
    padding: 80px 5%;
    background: #f2f7fa;
    text-align: center;
}

.review-title {
    font-size: 40px;
    margin-bottom: 40px;
}

.review-container {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.review-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.33% - 20px);
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.review-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.review-card p {
    font-size: 15px;
    color: #555;
}

@media(max-width:768px){
    .review-card{
        min-width:100%;
    }

}
/* ================================
NEWSLETTER
================================ */

.newsletter {
    background: #0a2c55;
    color: white;
    text-align: center;
}

.newsletter input {
    margin-top: 20px;
    padding: 15px;
    width: 300px;
    border: none;
    border-radius: 6px;
}

.newsletter button {
    margin-left: 10px;
    padding: 15px 25px;
    border: none;
    background: #ff6a5c;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* ================================
FOOTER
================================ */

.footer {
    background: #071b34;
    color: white;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer h3 {
    margin-bottom: 10px;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* ================================
RESPONSIVE
================================ */

@media (max-width: 1000px) {
    .team-grid,
    .event-grid,
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a2c55;
        flex-direction: column;
        padding: 20px;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
    }

    .team-grid,
    .event-grid,
    .more-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}




/* Football page css */
.subhero {
    position: relative;
    height: 350px;
    background-image: url("../images/sub-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.subhero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.subhero-content {
    position: relative;
    z-index: 2;
}

.subhero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 15px;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .subhero {
        height: 260px;
    }

    .subhero h1 {
        font-size: 28px;
    }
}

.ticket-layout {
    display: flex;
    gap: 40px;
}
.ticket-main{
    width: 70%;
}
.ticket-sidebar{
    width: 30%;
}
.ticket-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.ticket-filters select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.ticket-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ticket-date {
    background: #0d3d6b;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 70px;
}

.ticket-date span {
    font-size: 12px;
}

.ticket-info {
    flex: 1;
    margin-left: 20px;
}

.badges {
    margin-top: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.limited {
    background: #ff4d4d;
    color: white;
}

.available {
    background: #2ecc71;
    color: white;
}

.ticket-price {
    text-align: right;
}

.buy-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    background: #ff5a3c;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
}

.buy-btn:hover {
    background: #e6492c;
}

.ticket-sidebar {
    position: sticky;
    top: 100px;
    height: 100%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.ticket-sidebar h3{
    font-size: 25px;
    margin-bottom: 20px;
}
.ticket-sidebar p{
    margin-bottom: 10px;
}

.ticket-sidebar img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sidebar-btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background: #0d3d6b;
    color: white;
    border: none;
    border-radius: 6px;
}

.review-section {
    background: #f5f7fb;
    padding: 60px 20px;
    text-align: center;
}
.review-section h2{
    margin-bottom: 20px;
}

.review-carousel {
    overflow: hidden;
    max-width: 941px;
    margin: auto;
}

.review-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s;
}

.review-card {
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 900px) {
    .ticket-layout {
        display: block;
    }
    .ticket-main{
        width: 100%;
    }
    .ticket-sidebar{
        width: 100%;
    }

    .ticket-filters {
        flex-direction: column;
    }

    .ticket-card {
        align-items: flex-start;
        gap: 10px;
    }

    .ticket-price {
        text-align: left;
    }
}


/* Ticket details page */



/* EVENT HEADER */

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.event-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* DATE BOX */

.event-date {
    background: #0b2c4d;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 80px;
}

.event-date span {
    font-size: 14px;
    display: block;
}

.event-date h2 {
    font-size: 30px;
    margin: 5px 0;
}

/* EVENT CONTENT */

.event-content h1 {
    font-size: 34px;
    margin: 5px 0;
}

.league {
    color: #2b6ef2;
    font-weight: 600;
}

.event-meta {
    margin: 10px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.availability {
    background: #ffe5e5;
    color: #e63946;
    padding: 4px 10px;
    border-radius: 20px;
}

.event-description {
    color: #666;
    max-width: 500px;
}

/* EVENT IMAGE */

.event-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
}

/* MAIN LAYOUT */

.ticket-details-layout {
    display: flex;
    gap: 40px;
}
.ticket-details-layout .ticket-left{
    width: 65%;
}
.ticket-details-layout .ticket-sidebar{
    background: transparent;
    padding: 0;
    width: 35%;
}

/* PACKAGE CARD */

.package-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}
.package-card h2{
    font-size: 25px;
}
.package-price {
    font-size: 20px;
    color: #e63946;
    font-weight: 700;
    margin: 10px 0 20px;
}

.package-features {
    list-style: none;
}

.package-features li {
    margin-bottom: 10px;
    color: #444;
}

/* SEAT MAP */

.seat-map {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    text-align: center;
}

.seat-map img {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
}

/* GALLERY */

.gallery {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* BOOKING SIDEBAR */

.ticket-sidebar .booking-card {
    position: sticky;
    top: 80px;
    background: #0b2c4d;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}
.ticket-sidebar .booking-card .secure{
    text-align: center;
    font-size: 12px;
    margin-top: 6px;
}
.ticket-sidebar .booking-card .price {
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0;
}

/* QUANTITY */

.ticket-sidebar .booking-card .ticket-qty {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ticket-sidebar .booking-card .ticket-qty input {
    width: 60px;
    text-align: center;
    border: none;
    border-radius: 5px;
    margin: 0 10px;
    padding: 8px;
}

.ticket-sidebar .booking-card .qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* BUTTON */

.ticket-sidebar .booking-card .book-btn {
    width: 100%;
    padding: 16px;
    border: none;
    background: #ff5a4a;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.ticket-sidebar .booking-card .book-btn:hover {
    background: #ff3d2f;
}

/* MOBILE RESPONSIVE */

@media (max-width: 900px) {
    .ticket-layout {
        grid-template-columns: 1fr;
    }

    .event-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
