/* ===== Import Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* ===== Base Styles ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    color: #111;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ===== Header Styling ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Header Container ===== */
header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ===== Top Bar ===== */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 12px 30px;
    border-bottom: 3px solid #4CAF50;
}

/* ===== Logo + Team Name ===== */
.left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 80px;
    height: auto;
}

.team-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
}

/* ===== Right Navigation ===== */
.right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right a {
    font-size: 1rem;
    font-weight: 500;
    color: #2E7D32;
    transition: color 0.3s ease;
}

.right a:hover {
    color: #388e3c;
}

.divider {
    font-size: 1.2rem;
    color: #4CAF50;
}

/* ===== Nav Bar ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 12px 30px;
}

/* ===== Nav Links ===== */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #4CAF50;
}

/* ===== Menu Toggle (Mobile Hamburger) ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* ===== Language Icon (if present) ===== */
.language-icon {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.language-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* ===== Responsive Header ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: black;
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }
}

/* ===== Background Blur ===== */
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/d2gv8Gd.jpeg') no-repeat center center;
    background-size: cover;
    filter: blur(6px);
    z-index: -1;
}

/* ===== Main Container & Hero Featured ===== */
.main-container,
.hero-featured-container {
    background-color: rgba(255, 255, 255, 0.85);
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-featured-container {
    background: url('https://img.freepik.com/free-vector/white-gray-abstract-gradient-background_69286-550.jpg');
    background-size: cover;
    background-position: center;
}

/* ===== Hero Section ===== */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    color: #000;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== Search Bar ===== */
.search-bar {
    display: flex;
    justify-content: center;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-wrapper input {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background-color: #fff;
    color: #181818;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.search-wrapper input:focus {
    outline: 2px solid #2e7d32; /* Green outline on focus */
    outline-offset: 2px; /* Adds a small gap between the input and the outline */
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
    color: #181818;
    pointer-events: none;
}

/* ===== Dropdown ===== */
.dropdown {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown li {
    list-style: none;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.dropdown li:hover {
    background-color: #f9f9f9;
}

.dropdown.show {
    max-height: 400px;
    opacity: 1;
}

/* ===== Section Titles ===== */
.section-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
}

section {
    padding: 3rem 2rem 1.2rem;
}

/* ===== Slider Headers ===== */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    flex-wrap: wrap;
}

.slider-nav {
    display: flex;
    align-items: center;
    background-color: #e5e7eb;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    gap: 0.5rem;
}

.slider-nav button {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.slider-nav button:hover {
    background: #d4d4d4;
}

/* ===== Events Slider ===== */
.slider-container {
    padding: 1rem;
}

.events-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.events-slider::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 250px;
    background: #fdfdfd;
    color: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.event-card:hover {
    transform: translateY(-4px);
}

.event-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.event-card .info {
    padding: 1rem;
}

.event-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.event-card p {
    margin: 0.5rem 0;
    color: #555;
}

.event-card .price {
    font-weight: bold;
    color: #1ccf87;
}

/* ===== Footer Section ===== */
footer {
    background: url("https://i.imgur.com/yjuCGaV.png") no-repeat center center;
    background-size: 2000%;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    margin-top: auto;
    position: relative;
}