/* --- VARIABLES --- */
:root {
    --primary: #0B2046; /* Deep navy blue */
    --primary-light: #163162;
    --accent: #FFC107; /* Gold yellow */
    --accent-hover: #FFD54F;
    --secondary: #E11D48; /* Sports red */
    --bg-light: #F8FAFC; 
    --bg-white: #FFFFFF;
    --text-main: #334155;
    --text-heading: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* --- RESET & BASIC SETUP --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.w-100 {
    width: 100%;
}

.main-content-wrapper {
    flex: 1;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary);
}

/* --- HEADER & NAVIGATION --- */
.header {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.logo-west {
    color: var(--bg-white);
}

.logo-sports {
    color: var(--secondary);
}

.tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 500;
}

.header-center {
    flex: 1;
    max-width: 600px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--primary-light);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-icon {
    color: rgba(255,255,255,0.6);
}

.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: var(--bg-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-bar input:focus {
    outline: none;
}

.search-btn {
    background-color: var(--accent);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--accent-hover);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-link {
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.icon-link:hover {
    color: var(--accent);
}

.main-nav {
    background-color: var(--primary-light);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-list {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list > li > a {
    color: var(--bg-white);
    display: block;
    padding: 14px 0;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--accent);
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 200;
    padding: 8px 0;
    border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-weight: 500;
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 600px;
    background-image: url('../img/sliderimg-1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 32, 70, 0.9) 0%, rgba(11, 32, 70, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-text-container {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--bg-white);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* INNER COMPACT HERO FOR SUBPAGES */
.hero-compact {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-compact .hero-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-compact .hero-title {
    font-size: 3rem;
    margin-bottom: 8px;
}
/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden; /* background-image hata dein yahan se */
}

/* SLIDER */
.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Dots indicator (optional) */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active {
    background: #fff;
}
/* --- MAIN LAYOUT --- */
.main-layout {
    display: grid;
    grid-template-columns: 240px 1fr 300px;
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 64px;
}

.full-width-layout {
    margin-top: 48px;
    margin-bottom: 64px;
}

/* SIDEBARS */
.sidebar-widget {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.vertical-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 4px;
}

.vertical-menu li a:hover, .vertical-menu li a.active {
    background-color: var(--bg-light);
    color: var(--primary);
}

.vertical-menu li a i {
    color: var(--text-muted);
    width: 16px;
    text-align: center;
}

.vertical-menu li a:hover i, .vertical-menu li a.active i {
    color: var(--primary);
}

/* RIGHT SIDEBAR */
.widget-search-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.widget-search-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.thumbnail-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.thumbnail-list li:last-child {
    margin-bottom: 0;
}

.thumbnail-list img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.list-info a {
    display: block;
    font-weight: 600;
    color: var(--text-heading);
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.list-info a:hover {
    color: var(--primary);
}

.list-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- CENTER CONTENT --- */
.section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 12px;
}

.section-header h2 {
    font-size: 2rem;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all:hover {
    color: var(--accent);
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.event-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card-large {
    grid-column: span 2;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.event-card-large .card-img-wrapper {
    height: 250px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.tag-music { background-color: #8B5CF6; }
.tag-theater { background-color: #F59E0B; }
.tag-sports { background-color: var(--secondary); }

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-date {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-venue {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price strong {
    font-size: 1.25rem;
    color: var(--text-heading);
    font-weight: 800;
}

/* TRENDING SECTION */
.trending-section {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.trending-flame {
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #FFF1F2;
    padding: 6px 12px;
    border-radius: 50px;
}

/* TRAVEL PACKAGES */
.packages-section {
    margin-bottom: 48px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 8px;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
}

.package-card {
    display: flex;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.package-card:hover {
    box-shadow: var(--shadow-md);
}

.package-img {
    width: 350px;
    min-height: 250px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.package-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.package-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
}

/* EVENT DETAIL PAGE */
.event-detail-banner {
    position: relative;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.event-detail-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(11, 32, 70, 0.95), transparent);
    padding: 40px;
    color: var(--bg-white);
}

.event-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.ticket-tiers {
    margin-top: 24px;
}

.ticket-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    background-color: var(--bg-white);
    transition: var(--transition);
}

.ticket-tier-row:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.tier-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.tier-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tier-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.tier-price span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
}

/* ABOUT & CONTACT PAGES */
.page-content-block {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 48px;
}

.page-content-block h2 {
    margin-bottom: 24px;
}

.page-content-block p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-heading);
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-info-block {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-list i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* SEO BLOCK */
.seo-content-block {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 48px;
    background-image: radial-gradient(circle at top right, var(--primary-light), var(--primary));
        margin-bottom: 100px;
}

.seo-content-block h2 {
    color: var(--bg-white);
    margin-bottom: 16px;
    font-size: 2rem;
}

.seo-content-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #050d1a;
    color: var(--bg-white);
    padding-top: 64px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.social-icons a:hover {
    background-color: var(--accent);
    color: #000;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background-color: var(--accent);
    color: #000;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-hover);
}

.footer-bottom {
    background-color: #030811;
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 200px 1fr;
    }
    .full-width-layout .cards-grid-3, .full-width-layout .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .sidebar-right {
        display: none;
    }
    .package-card {
        flex-direction: column;
    }
    .package-img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-center {
        display: none;
    }
    .main-nav {
        display: none; /* Add JS hamburger for mobile if needed */
    }
    .main-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-left {
        display: none;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .full-width-layout .cards-grid-3, .full-width-layout .cards-grid-4 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title, .hero-compact .hero-title {
        font-size: 2.5rem;
    }
    .event-detail-layout, .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .ticket-tier-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .tier-price {
        align-items: flex-start;
    }
}
