/* Global CSS - Material Design Bootstrap Integration */

/* Import Material Design Bootstrap CSS - handled via CDN in HTML */

/* Import Google Fonts - handled via CDN in HTML */

/* Hide skip links and accessibility elements that might cause visual issues */
.skip-link,
.skip-link:focus,
.skip-link:active,
.skip-link:visited {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    color: transparent !important;
}

/* Remove any default focus outlines that might appear as red lines */
*:focus {
    outline: none !important;
}

/* Ensure proper focus states for interactive elements */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--gold-primary) !important;
    outline-offset: 2px !important;
}

/* CSS Variables for Design System */
:root {
    /* Brand Colors */
    --gold-primary: #daab2d;
    --gold-hover: #c19825;
    --gold-light: rgba(218, 171, 45, 0.1);
    
    /* Background Colors */
    --bg-primary: #0e0f0a;
    --bg-secondary: #1a1b15;
    --bg-tertiary: #2a2a2a;
    --bg-surface: #363636;
    --bg-card: #2d2d2d;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --text-light: #cccccc;
    
    /* Border & Accent Colors */
    --border-primary: #3a3a3a;
    --border-secondary: #4a4a4a;
    --shadow-primary: rgba(0, 0, 0, 0.12);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-primary), #a57a03);
    --gradient-bg: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Libre Franklin', sans-serif;
    --font-accent: 'Outfit', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Utilities */
.text-gold { color: var(--gold-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }

.font-heading { font-family: var(--font-heading) !important; }
.font-accent { font-family: var(--font-accent) !important; }

/* Background Utilities */
.bg-primary { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-tertiary { background-color: var(--bg-tertiary) !important; }
.bg-surface { background-color: var(--bg-surface) !important; }
.bg-card { background-color: var(--bg-card) !important; }

/* Button Styles */
.btn-gold {
    background: var(--gradient-gold);
    border: none;
    color: #000000;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    line-height: 1.2;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-hover), #936a03);
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 171, 45, 0.3);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.2;
}

.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: #000000;
    transform: translateY(-1px);
}

.btn-dark {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    line-height: 1.2;
}

.btn-dark:hover {
    background-color: var(--border-primary);
    color: var(--text-primary);
}

/* General Button Alignment Fixes */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    line-height: 1.2 !important;
}

.btn .material-icons {
    font-size: 1.1em;
    line-height: 1;
}

/* Button Size Variations */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Form Submit Buttons */
.btn[type="submit"] {
    min-height: 44px;
}

/* Form Validation Styles */
.validation-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-control-custom.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.125rem rgba(220, 53, 69, 0.25);
}

.form-control-custom.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.125rem rgba(220, 53, 69, 0.25);
}

/* Additional Button Improvements */
.btn .material-icons {
    flex-shrink: 0;
}

.btn:not(.btn-sm) .material-icons {
    font-size: 1.1em;
}

.btn-sm .material-icons {
    font-size: 0.9em;
}

/* Fix for buttons with only icons */
.btn:has(.material-icons:only-child) {
    padding: 0.75rem;
    min-width: 44px;
}

/* Ensure consistent button heights */
.btn {
    min-height: 44px;
    white-space: nowrap;
}

/* Card Styles */
.card-custom {
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px var(--shadow-primary);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

/* Form Controls */
.form-control-custom {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
}

.form-control-custom:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.125rem rgba(218, 171, 45, 0.25);
    color: var(--text-primary);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-muted);
}

/* Navigation Styles */
.navbar-custom {
    background-color: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-primary);
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}

.nav-link-custom {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    background-color: var(--gold-primary);
    color: #000000;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(218, 171, 45, 0.3);
    transform: translateY(-1px);
}

/* Search Components */
.search-container {
    position: relative;
}

.search-input {
    background-color: var(--bg-surface);
    border: none;
    color: var(--text-primary);
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: var(--radius-md);
    width: 100%;
    transition: all var(--transition-normal);
    font-size: 0.9375rem;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--gold-primary);
    background-color: var(--bg-tertiary);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: color var(--transition-fast);
    z-index: 10;
}

.search-container:focus-within .search-icon {
    color: var(--gold-primary);
}

/* Suggestions Dropdown */
.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: var(--z-dropdown);
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-secondary);
    cursor: pointer;
    transition: background-color var(--transition-fast);
    display: flex;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: var(--border-primary);
    color: var(--text-primary);
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: scale(1.1);
    color: var(--text-primary);
}

.social-facebook:hover { 
    color: #1877F2; 
    background-color: rgba(24, 119, 242, 0.1);
}

.social-instagram:hover { 
    color: #E4405F; 
    background-color: rgba(228, 64, 95, 0.1);
}

.social-twitter:hover { 
    color: #1DA1F2; 
    background-color: rgba(29, 161, 242, 0.1);
}

.social-youtube:hover { 
    color: #FF0000; 
    background-color: rgba(255, 0, 0, 0.1);
}

/* Footer Styles */
.footer-custom {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(218, 171, 45, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.05;
}

.footer-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: var(--gold-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(3rem);
}

.footer-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background: var(--gold-primary);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(2rem);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: var(--gold-primary);
}

.footer-link:hover .material-icons {
    opacity: 1 !important;
}

.footer-link.active {
    color: var(--gold-primary);
}

/* Contact Info Styling */
.contact-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--gold-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background-color: rgba(218, 171, 45, 0.2);
}

/* Utility Classes */
.hover-gold:hover {
    color: var(--gold-primary) !important;
}

.transition-all {
    transition: all var(--transition-normal);
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-custom .container-fluid {
        padding: 0 1rem;
    }
    
    html {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .search-input {
        font-size: 0.875rem;
        padding-left: 2.5rem;
    }
    
    .search-icon {
        left: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-secondary);
}

/* Material Design Bootstrap Overrides */
.mdb-page-content {
    padding-top: 76px;
}

.mdb-navbar-brand img {
    transition: transform var(--transition-normal);
}

.mdb-navbar-brand:hover img {
    transform: scale(1.05);
}

/* Print Styles */
@media print {
    .navbar-custom,
    .footer-custom,
    .btn-gold,
    .btn-outline-gold {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .btn-gold,
    .btn-outline-gold {
        width: 100% !important;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Newsletter form mobile fixes */
    .newsletter-form .input-group {
        flex-direction: column !important;
        gap: 0.5rem;
        width: 100%;
    }
    
    .newsletter-form .input-group .form-control {
        width: 100% !important;
        margin-bottom: 0.5rem;
        flex: none !important;
    }
    
    .newsletter-form .input-group .btn {
        width: 100% !important;
        flex: none !important;
    }
    
    /* Button stacking for mobile */
    .btn-stack-mobile {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
    }
    
    .btn-stack-mobile .btn {
        width: 100% !important;
        max-width: 300px;
        margin: 0 !important;
    }
    
    /* Force mobile navigation to work */
    .navbar-collapse {
        background-color: var(--bg-primary) !important;
        padding: 0 !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        width: 100%;
        padding: 1rem !important;
        margin: 0 !important;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 0 !important;
        text-align: center;
        border-bottom: none !important;
        color: #ffffff !important;
        font-weight: 500;
        transition: color 0.3s ease;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--gold-primary) !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .navbar-nav .nav-link.active {
        color: #ffffff !important;
        background-color: var(--gold-primary) !important;
        box-shadow: none !important;
    }
    
    .navbar-nav .btn {
        margin-top: 1rem !important;
        width: 100% !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Ensure hamburger button is visible */
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        padding: 0.5rem !important;
        border-radius: 0.375rem !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(218, 171, 45, 0.5) !important;
    }
    
    .navbar-toggler:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Hamburger icon animation */
    .navbar-toggler .material-icons {
        transition: transform 0.3s ease;
    }
    
}

/* Focus States for Accessibility */
.btn-gold:focus,
.btn-outline-gold:focus,
.btn-dark:focus,
.nav-link-custom:focus,
.form-control-custom:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Gold Card Styling - New Theme */
.card-custom-gold {
    background: linear-gradient(45deg, rgba(218, 171, 45, 0.1), rgba(165, 122, 3, 0.1)) !important;
    border: 1px solid rgba(218, 171, 45, 0.2) !important;
    transition: all 0.3s ease;
}

.card-custom-gold:hover {
    background: linear-gradient(45deg, rgba(218, 171, 45, 0.15), rgba(165, 122, 3, 0.15)) !important;
    border: 1px solid rgba(218, 171, 45, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 171, 45, 0.15);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .card-custom {
        border: 2px solid var(--border-primary);
    }
    
    .search-input {
        border: 2px solid var(--border-primary);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}/* Custom CSS Variables */
:root {
    --gold-color: #daab2d;
    --gold-hover: #c19825;
    --dark-bg: #0e0f0a;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-600: #4a4a4a;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --light-gray: #b0b0b0;
    --text-muted: #888888;
    --border-color: #3a3a3a;
}

/* Base Styles */
body {
    background-color: var(--dark-bg);
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* Utility Classes */
.text-gold {
    color: var(--gold-color) !important;
}

.text-light-gray {
    color: var(--light-gray) !important;
}

.hover-gold {
    transition: color 0.3s ease;
}

.hover-gold:hover {
    color: var(--gold-color) !important;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--gold-color), #a57a03);
    border: none;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--gold-hover), #936a03);
    color: #000000;
    transform: translateY(-1px);
}

.btn-outline-gold {
    border: 1px solid var(--gold-color);
    color: var(--gold-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold-color);
    color: #000000;
}

/* Custom Navbar */
.custom-navbar {
    background-color: var(--gray-800) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    z-index: 1030;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(55, 65, 81, 0.7);
}

.navbar-nav .nav-link.active {
    background-color: var(--gold-primary) !important;
    color: #ffffff !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 486px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1605810230434-7631ac76ec81?w=1920&h=1080&fit=crop') center/cover;
    position: relative;
    margin-bottom: 10rem;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}

.hero-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Search Components */
.search-container {
    position: relative;
}

.search-input-wrapper {
    background-color: #363636;
    border-radius: 7.5px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 0 0 2px var(--gold-color);
    background-color: #404040;
}

.search-input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 0.9375rem;
    font-weight: 500;
    padding-left: 2.5rem !important;
    box-shadow: none !important;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    color: #ffffff !important;
}

.search-icon {
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #5a5a5a;
    transition: color 0.2s ease;
    z-index: 10;
}

.search-input-wrapper:focus-within .search-icon {
    color: var(--gold-color);
}

/* Search Suggestions */
.search-suggestions {
    top: calc(100% + 5px);
    background-color: var(--gray-800);
    border: 1px solid var(--border-color);
    border-radius: 7.5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 1040;
    max-height: 300px;
    overflow-y: auto;
}

.suggestions-header {
    background-color: rgba(42, 42, 42, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.suggestion-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(58, 58, 58, 0.5);
    cursor: pointer;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: var(--border-color);
    color: #ffffff;
}

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

/* Popular Events Section */
.popular-events-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
}

.section-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--light-gray);
}

/* Search Controls */
.search-control {
    position: relative;
}

.search-input-small {
    background-color: var(--gray-800) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-muted) !important;
    font-size: 0.75rem;
    padding-left: 2.25rem !important;
    height: 2.5rem;
}

.search-input-small::placeholder {
    color: var(--text-muted);
}

.search-icon-small {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-gray);
    font-size: 0.875rem;
}

/* Event Cards */
.event-card {
    background-color: var(--gray-800);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.event-image {
    height: 188px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #dc3545;
}

.event-content {
    display: flex;
    height: calc(100% - 188px);
}

.event-date {
    background-color: var(--gold-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    color: #000000;
}

.event-date .month {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.event-date .days {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #5a5a5a;
}

.event-details {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-title {
    font-weight: 500;
    font-size: 0.9375rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.event-info-item i {
    color: var(--gold-color);
    font-size: 0.875rem;
    width: 16px;
}

.event-venue {
    color: #cccccc;
    font-weight: 600;
}

.event-time {
    color: var(--light-gray);
    font-weight: 500;
}

.event-tables {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #ffffff;
}

.event-tables i {
    color: var(--gold-color);
    font-size: 1.5rem;
}

.event-description {
    font-size: 0.65rem;
    color: var(--light-gray);
    line-height: 1.4;
    margin-top: auto;
}

/* Footer Styles */
.custom-footer {
    background: linear-gradient(135deg, #0e0f0a 0%, #1a1b15 50%, #0e0f0a 100%);
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-gradient {
    background: linear-gradient(135deg, #0e0f0a 0%, #1a1b15 50%, #0e0f0a 100%);
}

.footer-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(218, 171, 45, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.05;
}

.footer-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: var(--gold-color);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(3rem);
}

.footer-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background: var(--gold-color);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(2rem);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-facebook:hover {
    color: #1877F2;
    background-color: rgba(24, 119, 242, 0.1);
}

.social-instagram:hover {
    color: #E4405F;
    background-color: rgba(228, 64, 95, 0.1);
}

.social-twitter:hover {
    color: #1DA1F2;
    background-color: rgba(29, 161, 242, 0.1);
}

.social-youtube:hover {
    color: #FF0000;
    background-color: rgba(255, 0, 0, 0.1);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: var(--gold-color);
}

.footer-link:hover .fas {
    opacity: 1 !important;
}

.footer-link.active {
    color: var(--gold-color);
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    background-color: rgba(218, 171, 45, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: rgba(218, 171, 45, 0.2);
}

.newsletter-input {
    background-color: var(--gray-800) !important;
    border: 1px solid #4b5563 !important;
    color: #ffffff !important;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-input:focus {
    border-color: var(--gold-color) !important;
    box-shadow: 0 0 0 0.125rem rgba(218, 171, 45, 0.25) !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .custom-navbar .container-fluid {
        padding: 0 1rem;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .search-input-wrapper {
        padding: 0.5rem 0.75rem;
    }
    
    .search-input {
        font-size: 0.875rem;
        padding-left: 2rem !important;
    }
    
    .search-icon {
        left: 1rem;
    }
    
    .event-card {
        margin-bottom: 1.5rem;
    }
    
    .custom-footer {
        padding: 3rem 0 0;
    }
}

/* Loading and Animation States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-800);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}