
/* Global Styles */
body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header-top-bar {
    padding: 8px 0;
    font-size: 14px;
    background: #222;
    color: #fff;
}

.header-contact-info ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact-info a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.header-contact-info a:hover {
    color: #BA0909 !important;
}

.header-social {
    display: inline-flex;
    gap: 12px;
}

.header-social a {
    color: #fff;
    transition: color 0.3s;
}

.header-social a:hover {
    color: #BA0909;
}

.header-auth-links {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.auth-btn {
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid #BA0909;
}

.auth-btn.primary {
    background: #BA0909;
    color: white;
}

.auth-btn.secondary {
    background: transparent;
    color: #BA0909;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Main Header */
.main-header {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: white;
}

.main-menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    color: #333;
}

.main-menu a:hover,
.main-menu li.active a {
    color: #BA0909 !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle,
.vs-menu-toggle {
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
    color: #333;
    background: none;
    border: none;
}

.search-toggle:hover,
.vs-menu-toggle:hover {
    color: #BA0909 !important;
}

/* Hero Section - Fixed Spacing */
.hero-layout1 {
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.hero-image-container {
    margin-top: 0;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Card Styles */
.event-card {
    transition: all 0.3s ease;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.event-card .event-img img {
    transition: transform 0.5s ease;
}

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

.event-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #f8f8f8;
}

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

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.event-title a {
    color: #333;
    text-decoration: none;
}

.event-title a:hover {
    color: #BA0909;
}

.event-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.event-date-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.event-date-meta i {
    color: #BA0909;
    margin-right: 8px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.event-price {
    font-weight: 700;
    color: #BA0909;
    font-size: 18px;
}

.btn-buy-ticket {
    background: #BA0909;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.btn-buy-ticket:hover {
    background: #990707;
    transform: translateY(-2px);
    color: white;
}

/* Past Event Badge */
.past-event-badge {
    background: #666;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 10px;
    font-weight: 500;
    display: inline-block;
}

/* Button Styles */
.vs-btn.style4 {
    background-color: #BA0909;
    border-color: #BA0909;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vs-btn.style4:hover {
    background-color: #990707;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: white;
}

/* Section Titles */
.sec-title {
    color: #333333;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 28px;
}

.sec-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #BA0909;
}

.sec-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Loading Spinner for Events */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #666;
}

.loading-spinner i {
    font-size: 40px;
    color: #BA0909;
    margin-bottom: 15px;
}

/* Search Bar Styles */
.search-container {
    position: relative;
    margin-bottom: 30px;
}

.search-input-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    padding-left: 45px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-input:focus {
    outline: none;
    border-color: #BA0909;
    box-shadow: 0 0 0 3px rgba(186, 9, 9, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 18px;
    display: none;
}

.clear-search:hover {
    color: #BA0909;
}

.search-results-container {
    max-width: 600px;
    margin: 10px auto 0;
}

.search-results {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
}

.search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.search-result-meta {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-result-meta i {
    color: #BA0909;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
}

.no-results i {
    font-size: 40px;
    color: #e5e7eb;
    margin-bottom: 10px;
}

/* About Section Styles */
.about-list1 {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list1 li {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

.about-list1 li i {
    color: #BA0909;
    margin-right: 10px;
}

/* Footer Styles */
.bg-gray-900 {
    background-color: #111827;
}

.bg-gray-800 {
    background-color: #1f2937;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .header-top-bar {
        display: block !important;
        padding: 8px 0;
    }
    
    .header-social {
        display: flex;
        gap: 15px;
        align-items: center;
        height: 100%;
    }
    
    .header-auth-links {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        width: 100%;
    }
    
    .mobile-auth-btn {
        background-color: #BA0909 !important;
        color: white !important;
        padding: 4px 12px !important;
        border-radius: 4px !important;
        text-decoration: none !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        border: none !important;
        white-space: nowrap;
    }
    
    .main-menu ul {
        gap: 20px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .menu-container {
        width: 85%;
    }
    
    .sec-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .header-phone span {
        display: none;
    }
    
    .auth-btn {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }
    
    .event-card {
        margin-bottom: 20px;
    }
    
    .event-img {
        height: 200px;
    }
    
    .sec-title {
        font-size: 22px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-control {
        border-radius: 5px;
        border-right: 1px solid #444;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .mobile-auth-btn span {
        display: inline !important;
    }
    
    .mobile-auth-btn i {
        margin-right: 4px !important;
    }
    
    .header-social {
        gap: 10px;
    }
    
    .col-6.d-lg-none {
        padding-right: 5px;
        padding-left: 5px;
    }
    
    .mobile-auth-btn {
        padding: 3px 8px !important;
        font-size: 11px !important;
    }
    
    .event-content {
        padding: 15px;
    }
    
    .event-title {
        font-size: 16px;
    }
    
    .sec-title {
        font-size: 20px;
    }
}

/* Tailwind-enhanced classes */
.tw-section {
    @apply py-16;
}

.tw-container {
    @apply container mx-auto px-4;
}

.tw-card {
    @apply bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 hover:shadow-2xl hover:-translate-y-2;
}

.tw-card-img {
    @apply w-full h-64 object-cover;
}

.tw-card-content {
    @apply p-6;
}

.tw-card-title {
    @apply text-xl font-bold text-gray-800 mb-3;
}

.tw-card-text {
    @apply text-gray-600 mb-4;
}

.tw-btn-primary {
    @apply bg-primary text-white px-6 py-3 rounded-lg font-semibold hover:bg-red-800 transition-all duration-300 transform hover:-translate-y-1 hover:shadow-lg;
}

.tw-btn-secondary {
    @apply bg-gray-200 text-gray-800 px-6 py-3 rounded-lg font-semibold hover:bg-gray-300 transition-all duration-300;
}

.tw-grid {
    @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8;
}