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

/* Alpine.js x-cloak */
[x-cloak] {
    display: none !important;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --celestial-blue: #279AF1;
    --royal-blue: #1E5AA8;
    --dim-gray: #6B6570;
    --davys-grey: #555555;
    --platinum: #E6E6E9;
}

/* Accessibility - Skip to main content */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem 1.5rem;
    background-color: var(--celestial-blue);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

a {
    color: var(--celestial-blue);
    transition: color 0.3s;
}

a:hover {
    color: var(--dim-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Messages */
.messages-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.message.warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.newsletter-signup {
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-header h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin: 0;
}

.newsletter-signup .facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #1877F2;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.newsletter-signup .facebook-link:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.newsletter-signup p {
    color: var(--platinum);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    gap: 0.75rem;
}

.newsletter-inputs input {
    padding: 0.875rem 1rem;
    border: 1px solid var(--platinum);
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.footer-content {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dim-gray);
}

.footer-content p {
    color: var(--platinum);
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav a {
    color: var(--platinum);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--celestial-blue);
}

@media (max-width: 768px) {
    .newsletter-inputs {
        grid-template-columns: 1fr;
    }
    
    .newsletter-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Navigation */
/* Modern Navigation Styles */

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--platinum);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

/* Brand/Logo */
.nav-brand {
    flex-shrink: 0;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand a:hover {
    color: var(--celestial-blue);
}

.brand-icon {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.brand-text {
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link:hover {
    background-color: rgba(39, 154, 241, 0.1);
    color: var(--celestial-blue);
}

.user-icon {
    font-size: 1.1rem;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    padding: 0.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    /* Add a pseudo-element to bridge the gap between button and menu */
}

/* Show dropdown when parent is hovered */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--black);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(39, 154, 241, 0.1);
    color: var(--celestial-blue);
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.item-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.item-desc {
    font-size: 0.75rem;
    color: var(--dim-gray);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--platinum);
    margin: 0.5rem 0;
}

/* Special Button Styles */
.btn-register {
    background-color: transparent;
    border: 2px solid var(--celestial-blue);
    color: var(--celestial-blue);
}

.btn-register:hover {
    background-color: var(--celestial-blue);
    color: var(--white);
}

.btn-login {
    background-color: var(--celestial-blue);
    color: var(--white);
}

.btn-login:hover {
    background-color: var(--royal-blue);
}

.admin-link {
    background-color: rgba(255, 215, 0, 0.1);
    color: #d97706;
}

.admin-link:hover {
    background-color: rgba(255, 215, 0, 0.2);
    color: #b45309;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav-content {
    padding: 1.5rem;
}

.mobile-section {
    margin-bottom: 2rem;
}

.mobile-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dim-gray);
    margin-bottom: 0.75rem;
    padding: 0 1rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav-item:hover {
    background-color: rgba(39, 154, 241, 0.1);
    color: var(--celestial-blue);
}

.mobile-nav-item.btn-style {
    justify-content: center;
    background-color: transparent;
    border: 2px solid var(--celestial-blue);
    color: var(--celestial-blue);
}

.mobile-nav-item.btn-style.primary {
    background-color: var(--celestial-blue);
    color: var(--white);
    border-color: var(--celestial-blue);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--celestial-blue);
}

/* Responsive Design */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        min-height: 60px;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
    
    .brand-icon {
        font-size: 1.25rem;
    }
    
    .mobile-nav {
        top: 60px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-text {
        display: none;
    }
}


/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--celestial-blue);
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--royal-blue), var(--celestial-blue));
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-signup h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    gap: 0.75rem;
    align-items: center;
}

.newsletter-inputs input {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.newsletter-inputs input:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-inputs button {
    white-space: nowrap;
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--royal-blue);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.newsletter-inputs button:hover {
    background: var(--platinum);
    transform: translateY(-2px);
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

.newsletter-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .newsletter-inputs {
        grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-inputs input:nth-child(3),
    .newsletter-inputs button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .newsletter-signup {
        padding: 1.5rem;
    }
    
    .newsletter-signup h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-inputs {
        grid-template-columns: 1fr;
    }
    
    .newsletter-inputs input,
    .newsletter-inputs button {
        grid-column: 1;
    }
}

/* Search Form in Navigation */
.nav-search {
    position: relative;
    margin-left: 1rem;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 2px solid var(--platinum);
    border-radius: 25px;
    font-size: 0.95rem;
    width: 250px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--celestial-blue);
    width: 300px;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim-gray);
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--celestial-blue);
}

@media (max-width: 1200px) {
    .search-input {
        width: 200px;
    }
    
    .search-input:focus {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .nav-search {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--celestial-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dim-gray);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(39, 154, 241, 0.3);
}

.btn-secondary {
    background-color: var(--dim-gray);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--celestial-blue);
    transform: translateY(-2px);
}

.btn-success {
    background-color: #10B981;
    color: var(--white);
}

.btn-success:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-saved {
    background-color: var(--celestial-blue);
    color: var(--white);
}

.btn-save-detail {
    background: none;
    border: 2px solid var(--celestial-blue);
    color: var(--celestial-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-save-detail:hover {
    background-color: var(--celestial-blue);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
/* Featured Carousel */
.featured-carousel {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--celestial-blue) 0%, var(--dim-gray) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.featured-carousel h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.featured-card {
    display: flex;
    background-color: var(--black);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    min-height: 450px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.featured-card:hover {
    transform: scale(1.02);
}

.featured-card:hover::before {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.9) 100%);
}

.featured-image {
    display: none; /* Image is now background */
}

.featured-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 450px;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--celestial-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.featured-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.6);
    font-weight: 700;
    line-height: 1.2;
}

.featured-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.5);
    font-weight: 500;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-business {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    background-color: rgba(39, 154, 241, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: inline-block;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.carousel-btn {
    background-color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--celestial-blue);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-btn:hover:not(:disabled) {
    background-color: var(--celestial-blue);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

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

.dot.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
/* Event Cards */
.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--platinum);
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(39, 154, 241, 0.3);
    border-color: var(--celestial-blue);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

/* Event Badges for Sponsorship/Amplification */
.event-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.event-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-badge.spotlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.event-badge.showcase {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(96, 165, 250, 0.3);
}

.event-badge.amplified {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(167, 139, 250, 0.3);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--dim-gray);
}

.event-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.category-badge {
    background-color: var(--celestial-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    transition: background-color 0.3s;
}

.category-badge:hover {
    background-color: var(--dim-gray);
}

.event-cost {
    font-weight: 600;
    color: var(--celestial-blue);
    margin-bottom: 1rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-icon {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s, opacity 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--celestial-blue);
    transition: stroke 0.2s;
}

.btn-icon:hover svg {
    stroke: var(--dim-gray);
}

.btn-icon:hover {
    transform: scale(1.2);
}

.btn-icon:active {
    transform: scale(0.9);
}

.event-actions .btn {
    flex: 1;
    min-width: fit-content;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

/* Business Cards */
.business-card {
    background: var(--white);
    border: 1px solid var(--platinum);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--celestial-blue);
}

.business-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.business-logo-placeholder {
    width: 100px;
    height: 100px;
    background: var(--celestial-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.business-logo-placeholder span {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
}

.business-card-content {
    width: 100%;
}

.business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.business-location {
    color: var(--dim-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.business-description {
    color: var(--dim-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Dashboard Cards */
.dashboard-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--platinum);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dashboard-card .card-icon {
    font-size: 3rem;
    text-align: center;
}

.dashboard-card h2 {
    color: var(--black);
    margin: 0;
    font-size: 1.5rem;
}

.dashboard-card p {
    color: var(--dim-gray);
    flex-grow: 1;
    margin: 0;
}

.dashboard-card .btn {
    margin-top: auto;
}

/* Analytics Cards */
.analytics-card {
    background: var(--white);
    border: 1px solid var(--platinum);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.analytics-card h3 {
    color: var(--celestial-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--celestial-blue);
    padding-bottom: 0.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--platinum);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--celestial-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dim-gray);
    margin-top: 0.5rem;
    text-align: center;
}

/* Approval Cards */
.approval-card {
    background: white;
    border: 1px solid var(--platinum);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Copy Link Popup */
.copy-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--celestial-blue);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    font-weight: 600;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.copy-popup.error {
    background-color: #e74c3c;
}
/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="datetime-local"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--dim-gray);
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--black);
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--dim-gray);
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Auth Forms */
.auth-form fieldset {
    border: 2px solid var(--platinum);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.auth-form legend {
    font-weight: 600;
    color: #2c3e50;
    padding: 0 0.5rem;
}

/* Error Handling */
.error {
    color: #e74c3c;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

.errors {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Sponsorship Select */
.sponsorship-select {
    padding: 0.4rem;
    border: 1px solid var(--dim-gray);
    border-radius: 4px;
    background: white;
    cursor: pointer;
}

/* License Section */
.license-section {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--platinum);
    border-radius: 4px;
}

/* Warning Box */
.warning-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.warning-box h2 {
    color: #856404;
    margin: 1rem 0;
}
/* Filters */
.filters {
    background-color: var(--platinum);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filters form {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--black);
}

.filter-group select {
    padding: 0.5rem;
    border: 2px solid var(--dim-gray);
    border-radius: 4px;
    font-size: 1rem;
    min-width: 200px;
    background-color: var(--white);
    color: var(--black);
    transition: border-color 0.3s;
}

.filter-group input[type="date"] {
    padding: 0.5rem;
    border: 2px solid var(--dim-gray);
    border-radius: 4px;
    font-size: 1rem;
    min-width: 180px;
    background-color: var(--white);
    color: var(--black);
    transition: border-color 0.3s;
}

.filter-group select:focus,
.filter-group input[type="date"]:focus {
    outline: none;
    border-color: var(--celestial-blue);
}

.filter-btn {
    align-self: flex-end;
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

/* Filter Loading State */
.filter-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.filter-loading.htmx-request {
    display: flex;
}

.spinner {
    border: 3px solid var(--platinum);
    border-top: 3px solid var(--celestial-blue);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--platinum);
}

.filter-tabs .tab {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--dim-gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.filter-tabs .tab:hover {
    color: var(--celestial-blue);
}

.filter-tabs .tab.active {
    color: var(--celestial-blue);
    border-bottom-color: var(--celestial-blue);
    font-weight: 600;
}
/* Sponsor Section */
.sponsor-section {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(39, 154, 241, 0.05), rgba(230, 230, 233, 0.2));
    border-radius: 12px;
    border: 2px solid var(--celestial-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sponsor-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.sponsor-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--celestial-blue), var(--royal-blue));
    border-radius: 2px;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    padding: 1rem 0;
}

.sponsor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--platinum);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.sponsor-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 154, 241, 0.2);
    border-color: var(--celestial-blue);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.sponsor-name-only {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    padding: 0 1rem;
    word-wrap: break-word;
}

/* Sponsor Tags and Badges */
.sponsor-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.sponsor-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sponsor-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--black);
}

.sponsor-badge.basic {
    background: var(--platinum);
    color: var(--black);
}
/* Modal Styles */

/* Homepage header with submit button */
.homepage header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.submit-event-btn {
    margin-left: auto;
    white-space: nowrap;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--platinum);
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    color: var(--black);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: var(--platinum);
    color: var(--black);
}

.modal-body {
    padding: 1.5rem;
}

.modal-intro {
    background-color: #e8f4f8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-left: 4px solid var(--blue);
}

/* Form Styles */
.modal-body fieldset {
    border: 1px solid var(--platinum);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body legend {
    font-weight: 600;
    color: var(--black);
    padding: 0 0.5rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--black);
}

.form-group .required {
    color: #e74c3c;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="datetime-local"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--platinum);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.success-alert {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.error-alert {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--platinum);
}

.form-actions .btn {
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .submit-event-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    header .submit-event-btn {
        width: 100%;
        margin-left: 0;
    }
}

/* Alpine.js cloaking */
[x-cloak] {
    display: none !important;
}
/* UX Enhancements - Toast Notifications, Modals, Loading States */

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: var(--black);
}

.toast-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim-gray);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Toast Types */
.toast-success {
    border-left-color: #28a745;
}

.toast-success .toast-icon {
    color: #28a745;
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-error .toast-icon {
    color: #dc3545;
}

.toast-warning {
    border-left-color: #ffc107;
}

.toast-warning .toast-icon {
    color: #e0a800;
}

.toast-info {
    border-left-color: #17a2b8;
}

.toast-info .toast-icon {
    color: #17a2b8;
}

/* Confirmation Modal */
.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.confirm-modal-overlay.show {
    opacity: 1;
}

.confirm-modal-overlay.closing {
    opacity: 0;
}

.confirm-modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

.confirm-modal-overlay.show .confirm-modal {
    transform: scale(1);
}

.confirm-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--platinum);
}

.confirm-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--black);
}

.confirm-modal-body {
    padding: 24px;
}

.confirm-modal-body p {
    margin: 0;
    color: var(--dim-gray);
    line-height: 1.6;
}

.confirm-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--platinum);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Loading States */
.loading {
    position: relative;
    cursor: not-allowed;
    opacity: 0.7;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Image Upload Preview */
.image-upload-preview {
    margin-top: 12px;
    display: none;
}

.image-upload-preview.has-image {
    display: block;
}

.preview-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 300px;
}

.preview-image {
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid var(--platinum);
}

.remove-preview {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.remove-preview:hover {
    background: rgba(220, 53, 69, 1);
}

/* Form Validation States */
.form-field {
    position: relative;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
    border-color: #dc3545;
}

.form-field.has-success input,
.form-field.has-success textarea,
.form-field.has-success select {
    border-color: #28a745;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}

.form-field.has-error .field-error {
    display: block;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-image {
    height: 200px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .confirm-modal {
        width: 95%;
    }
    
    .confirm-modal-footer {
        flex-direction: column-reverse;
    }
    
    .confirm-modal-footer .btn {
        width: 100%;
    }
}
/* Homepage Styles */
.home-page header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.home-page header h1 {
    margin: 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.no-events {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.current-page {
    font-weight: 600;
    color: #2c3e50;
}

.page-info {
    color: var(--dim-gray);
    font-size: 0.95rem;
}
/* Event Detail Page */
.event-detail {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    border: 1px solid var(--platinum);
}

.event-header {
    margin-bottom: 2rem;
}

.event-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-detail h1 {
    color: var(--black);
    margin-bottom: 0;
    flex: 1;
}

/* Save Event Button */
.btn-save-detail {
    background: var(--white);
    border: 2px solid var(--celestial-blue);
    color: var(--celestial-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-save-detail:hover {
    background: var(--celestial-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 123, 255, 0.3);
}

.btn-save-detail:active {
    transform: translateY(0);
}

.btn-save-detail svg {
    flex-shrink: 0;
}

.event-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.event-info {
    display: grid;
    gap: 2rem;
}

.info-section h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--celestial-blue);
    padding-bottom: 0.5rem;
}

/* Business Info in Event Detail */
.business-info-link {
    text-decoration: none;
    color: var(--black);
    display: block;
    transition: all 0.3s ease;
}

.business-info-link:hover {
    transform: translateX(4px);
}

.business-info-link:hover .business-info {
    background: var(--platinum);
}

.business-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.business-website-hint {
    color: var(--celestial-blue);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.business-logo-small {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid var(--platinum);
    border-radius: 4px;
    padding: 0.5rem;
}

/* Social Share Buttons */
.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--white);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.facebook:hover {
    background-color: #0c63d4;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.twitter:hover {
    background-color: #0d8bd9;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background-color: #0A66C2;
}

.share-btn.linkedin:hover {
    background-color: #004182;
    transform: translateY(-2px);
}

.share-btn.copy-link {
    background-color: var(--dim-gray);
}

.share-btn.copy-link:hover {
    background-color: var(--black);
    transform: translateY(-2px);
}

/* Calendar Buttons */
.calendar-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--white);
}

.calendar-btn svg {
    width: 18px;
    height: 18px;
}

.calendar-btn.apple {
    background-color: #555555;
}


.calendar-btn.apple:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.calendar-btn.google {
    background-color: #4285F4;
}

.calendar-btn.google:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
}

.calendar-btn.outlook {
    background-color: #0078D4;
}

.calendar-btn.outlook:hover {
    background-color: #005a9e;
    transform: translateY(-2px);
}

/* Social Share Buttons */
.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.facebook:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.twitter:hover {
    background-color: #0d95e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 161, 242, 0.3);
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.linkedin:hover {
    background-color: #006399;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.share-btn.email {
    background-color: #EA4335;
}

.share-btn.email:hover {
    background-color: #d93025;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(234, 67, 53, 0.3);
}

.share-btn.copy-link {
    background-color: var(--dim-gray, #6c757d);
}

.share-btn.copy-link:hover {
    background-color: var(--davys-grey, #5a6268);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

/* Event Gallery */
.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--platinum);
    aspect-ratio: 4 / 3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .event-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
/* Business Directory Page */
.directory-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.directory-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.directory-intro {
    font-size: 1.1rem;
    color: var(--dim-gray);
    margin-bottom: 2rem;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.no-businesses {
    text-align: center;
    padding: 3rem;
    color: var(--dim-gray);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* Business Detail Page */
.business-detail-page {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.business-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0 4rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.business-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.business-hero-content {
    position: relative;
    z-index: 1;
}

/* Profile Card */
.business-profile-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.business-avatar {
    flex-shrink: 0;
}

.business-logo-large {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.business-logo-placeholder-large {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-logo-placeholder-large span {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

/* Header Info */
.business-header-info {
    flex: 1;
    min-width: 0;
}

.business-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.business-header-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.badge-icon {
    width: 14px;
    height: 14px;
}

/* Categories Row */
.business-categories-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.category-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
    border-radius: 16px;
    font-size: 0.813rem;
    font-weight: 500;
}

/* Location Row */
.business-location-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.938rem;
}

.business-location-row .icon {
    flex-shrink: 0;
    color: #64748b;
}

/* Main Content Layout */
.business-content {
    padding: 0 0 3rem;
}

.business-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* Main Column */
.business-main {
    min-width: 0;
}

.business-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-count {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4338ca;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.business-description p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.event-card-compact {
    display: block;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.event-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.event-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

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

.event-badge-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.event-info {
    padding: 1rem;
}

.event-title {
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.event-meta-row .icon {
    flex-shrink: 0;
    color: #64748b;
}

.event-cost-tag {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.empty-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-medium);
    margin: 0 0 0.5rem 0;
}

.empty-subtext {
    font-size: 0.938rem;
    color: var(--text-light);
    margin: 0;
}

/* Sidebar */
.business-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    background: #f1f5f9;
    transform: translateX(2px);
}

.contact-item .icon {
    flex-shrink: 0;
    color: #667eea;
    margin-top: 2px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-word;
}

/* Buttons */
.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

.btn-share {
    margin-top: 0.5rem;
}

/* Back Navigation */
.back-navigation {
    padding: 2rem 0;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .business-layout {
        grid-template-columns: 1fr;
    }
    
    .business-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .business-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .business-title-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .business-header-info h1 {
        font-size: 1.5rem;
    }
    
    .business-logo-large,
    .business-logo-placeholder-large {
        width: 120px;
        height: 120px;
    }
    
    .business-logo-placeholder-large span {
        font-size: 3rem;
    }
    
    .business-location-row {
        justify-content: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .business-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
}

.business-header {
    background: var(--white);
    border: 1px solid var(--platinum);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.business-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.business-info {
    flex: 1;
}

.business-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.business-contact-info {
    margin: 1rem 0;
}

.business-contact-info p {
    margin: 0.5rem 0;
    color: var(--dim-gray);
    font-size: 1rem;
}

.business-contact-info a {
    color: var(--celestial-blue);
    text-decoration: none;
}

.business-contact-info a:hover {
    text-decoration: underline;
}

.business-location,
.business-address,
.business-phone,
.business-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-description-section {
    background: var(--white);
    border: 1px solid var(--platinum);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.business-description-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.business-description-section p {
    color: var(--dim-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.business-events-section {
    margin-bottom: 2rem;
}

.business-events-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

/* Business Logo */
.business-logo {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    margin-top: 1rem;
}

/* Business Categories */
.business-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.business-categories .category-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
    border-radius: 12px;
    font-size: 0.813rem;
    font-weight: 500;
}

/* Sponsor Badges */
.sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
    white-space: nowrap;
}

.sponsor-badge.spotlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
}

.sponsor-badge.showcase {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #1e3a8a;
}

.sponsor-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.sponsor-tag.spotlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
}

.sponsor-tag.showcase {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: var(--white);
}

/* Social Media Links */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.facebook-link {
    color: #1877F2;
    border-color: #1877F2;
}

.facebook-link:hover {
    background: linear-gradient(135deg, #1877F2 0%, #0d65d9 100%);
    color: white;
}

.instagram-link {
    color: #E4405F;
    border-color: #E4405F;
}

.instagram-link:hover {
    background: linear-gradient(135deg, #E4405F 0%, #d12c4b 100%);
    color: white;
}

.twitter-link {
    color: #1DA1F2;
    border-color: #1DA1F2;
}

.twitter-link:hover {
    background: linear-gradient(135deg, #1DA1F2 0%, #0c8de4 100%);
    color: white;
}

.linkedin-link {
    color: #0A66C2;
    border-color: #0A66C2;
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #0A66C2 0%, #084d8f 100%);
    color: white;
}

/* Operating Hours */
.operating-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.875rem;
}

.hours-today {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 3px solid #3b82f6;
    font-weight: 600;
}

.day-name {
    color: var(--black);
    font-weight: 500;
}

.hours-time {
    color: var(--dim-gray);
}

.hours-today .hours-time {
    color: #1e40af;
}

@media (max-width: 640px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-row {
        font-size: 0.813rem;
        padding: 0.5rem;
    }
}
/* Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-container h1 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.welcome-text {
    color: var(--dim-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--platinum);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--celestial-blue);
    padding-bottom: 1rem;
}

.dashboard-header h1 {
    color: var(--black);
}

.dashboard-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Analytics Section */
.analytics-section {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(39, 154, 241, 0.05), rgba(230, 230, 233, 0.2));
    border-radius: 8px;
    border: 2px solid var(--celestial-blue);
}

.analytics-section h2 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.analytics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Event List Table */
.event-list-table {
    overflow-x: auto;
}

.event-list-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.event-list-table th,
.event-list-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--platinum);
}

.event-list-table th {
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
}

.event-list-table tr:hover {
    background-color: var(--platinum);
}

.event-list-table td.actions {
    display: flex;
    gap: 0.5rem;
}

/* Event Form */
.event-form-page {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.event-form-page h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Delete Confirmation */
.delete-confirmation {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Approval Pending */
.approval-pending {
    text-align: center;
    padding: 3rem;
    color: var(--dim-gray);
}

/* Eventbrite Integration Section */
.eventbrite-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--platinum);
}

.eventbrite-section h2 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.eventbrite-connected,
.eventbrite-disconnected {
    padding: 1.5rem;
    background: var(--platinum);
    border-radius: 8px;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.connection-status svg {
    flex-shrink: 0;
}

.connection-status strong {
    font-size: 1.1rem;
}

.eventbrite-info {
    color: var(--dim-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.eventbrite-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.eventbrite-disconnected p:first-of-type {
    margin-bottom: 1.5rem;
    color: var(--dim-gray);
    font-size: 1.05rem;
}

.help-text {
    font-size: 0.9rem;
    color: var(--dim-gray);
    margin-top: 1rem;
    font-style: italic;
}
/* Business Profile Edit Page */

.profile-edit-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--dim-gray);
    font-size: 1rem;
}

/* Form Sections */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    width: 24px;
    height: 24px;
    color: var(--celestial-blue);
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.required {
    color: #dc2626;
}

.form-help {
    font-size: 0.813rem;
    color: var(--dim-gray);
    margin-top: 0.375rem;
}

.form-error {
    font-size: 0.813rem;
    color: #dc2626;
    margin-top: 0.375rem;
}

/* Logo Preview */
.logo-preview {
    margin-bottom: 1rem;
}

.logo-preview img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--platinum);
}

/* File Input with Clear Checkbox */
.form-group input[type="file"] {
    display: block;
    width: 100%;
    padding: 0.625rem;
    font-size: 0.875rem;
    border: 1px solid var(--platinum);
    border-radius: 6px;
    background: var(--white);
    color: var(--black);
    cursor: pointer;
}

.form-group input[type="file"]:focus {
    outline: 2px solid var(--celestial-blue);
    outline-offset: 2px;
}

/* Clear Checkbox Styling - Django's ClearableFileInput */
.form-group .clearable-file-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Target the checkbox input specifically */
.form-group input[type="checkbox"][id="logo-clear_id"] {
    width: 16px;
    height: 16px;
    margin: 0;
    margin-right: 0.5rem;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 0;
}

/* Target the label for the clear checkbox */
.form-group label[for="logo-clear_id"] {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--dim-gray);
    margin: 0;
    vertical-align: middle;
    cursor: pointer;
    line-height: 16px;
}

/* Wrapper for "Currently" text and link */
.form-group a[href*="business_logos"] {
    color: var(--celestial-blue);
    text-decoration: none;
    font-size: 0.875rem;
}

.form-group a[href*="business_logos"]:hover {
    text-decoration: underline;
}

/* Two Column Grid */
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-grid-full {
    grid-column: 1 / -1;
}

/* Social Media Icons */
.social-icon {
    width: 20px;
    height: 20px;
}

/* Operating Hours Section */
.hours-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--celestial-blue);
    font-weight: 500;
    font-size: 0.938rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.hours-edit-btn:hover {
    color: var(--black);
}

.hours-edit-btn svg {
    width: 20px;
    height: 20px;
}

#hours-preview {
    padding: 1rem;
    background: var(--platinum);
    border-radius: 8px;
    margin-top: 1rem;
}

#hours-preview .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid var(--platinum);
}

.form-actions .btn-cancel {
    color: var(--dim-gray);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.form-actions .btn-cancel:hover {
    color: var(--black);
}

.form-actions .btn-submit {
    background: var(--celestial-blue);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-actions .btn-submit:hover {
    background: var(--black);
}

/* Operating Hours Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--platinum);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
}

.modal-body {
    padding: 1.5rem;
}

.day-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--platinum);
}

.day-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.day-label {
    width: 100px;
    font-weight: 500;
    color: var(--black);
}

.day-closed {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.day-closed input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.day-times {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.day-times input[type="time"] {
    padding: 0.5rem;
    border: 1px solid var(--platinum);
    border-radius: 6px;
    font-size: 0.875rem;
    flex: 1;
}

.day-times span {
    color: var(--dim-gray);
    font-size: 0.875rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--platinum);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-footer .btn {
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.938rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.modal-footer .btn-cancel {
    background: transparent;
    color: var(--dim-gray);
}

.modal-footer .btn-cancel:hover {
    color: var(--black);
}

.modal-footer .btn-save {
    background: var(--celestial-blue);
    color: var(--white);
}

.modal-footer .btn-save:hover {
    background: var(--black);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-edit-container {
        padding: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    #hours-preview .grid {
        grid-template-columns: 1fr;
    }
    
    .day-row {
        flex-wrap: wrap;
    }
    
    .day-label {
        width: 100%;
    }
    
    .day-times {
        width: 100%;
    }
}
/* Admin Analytics Styling */
.admin-analytics-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--royal-blue), var(--celestial-blue));
    border-radius: 12px;
    color: white;
}

.admin-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.admin-header .subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.time-range-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.time-range-selector .btn {
    padding: 0.6rem 1.5rem;
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.section-description {
    color: var(--dim-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stats-column {
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid;
}

.stats-column.featured {
    background: linear-gradient(135deg, rgba(39, 154, 241, 0.05), rgba(255, 255, 255, 0.5));
    border-color: var(--celestial-blue);
}

.stats-column.non-featured {
    background: linear-gradient(135deg, rgba(230, 230, 233, 0.3), rgba(255, 255, 255, 0.5));
    border-color: var(--platinum);
}

.stats-column.sponsored {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.5));
    border-color: #ffd700;
}

.stats-column.non-sponsored {
    background: linear-gradient(135deg, rgba(230, 230, 233, 0.3), rgba(255, 255, 255, 0.5));
    border-color: var(--platinum);
}

.stats-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--black);
}

.stat-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-card.highlight {
    background: linear-gradient(135deg, var(--royal-blue), var(--celestial-blue));
    color: white;
}

.stat-card.highlight .stat-label {
    color: var(--black);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}

.stat-card.highlight .stat-value {
    color: var(--black);
}

.stat-sub {
    font-size: 0.85rem;
    color: var(--dim-gray);
    margin-top: 0.3rem;
    font-style: italic;
}

/* Simple Stats */
.simple-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.simple-stat-card {
    background: linear-gradient(135deg, rgba(39, 154, 241, 0.1), white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--celestial-blue);
}

.simple-stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.big-stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin: 1rem 0;
}

.simple-stat-card p {
    color: var(--dim-gray);
    font-size: 0.95rem;
}

/* Insights Section */
.insights-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 2rem;
    border-left: 5px solid var(--celestial-blue);
}

.insights-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.insights-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.insights-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--royal-blue);
}

.insights-box ul {
    list-style: none;
    padding: 0;
}

.insights-box li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--black);
    line-height: 1.6;
}

.insights-box li:before {
    content: "💰";
    position: absolute;
    left: 0;
}

/* ROI Cards */
.roi-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.roi-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.roi-card.featured-roi {
    border-color: var(--celestial-blue);
}

.roi-card.sponsor-roi {
    border-color: #ffd700;
}

.roi-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.multiplier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.multiplier-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(39, 154, 241, 0.05), rgba(255, 255, 255, 0.5));
    border-radius: 8px;
}

.multiplier-label {
    font-size: 0.85rem;
    color: var(--dim-gray);
    margin-bottom: 0.5rem;
    text-align: center;
}

.multiplier-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--royal-blue);
}

.roi-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dim-gray);
    text-align: center;
    padding: 1rem;
    background: rgba(39, 154, 241, 0.05);
    border-radius: 6px;
}

.roi-description strong {
    color: var(--royal-blue);
}

/* Top Prospects Section */
.prospects-section {
    margin: 2rem 0;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--celestial-blue);
}

.prospects-section h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--dim-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.prospects-table {
    overflow-x: auto;
}

.prospects-table table {
    width: 100%;
    border-collapse: collapse;
}

.prospects-table thead {
    background: linear-gradient(135deg, var(--royal-blue), var(--celestial-blue));
    color: white;
}

.prospects-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.prospects-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--platinum);
}

.prospects-table tbody tr:hover {
    background: rgba(39, 154, 241, 0.05);
}

.business-name {
    font-weight: 600;
}

.business-name a {
    color: var(--royal-blue);
    text-decoration: none;
}

.business-name a:hover {
    text-decoration: underline;
}

.highlight-col {
    font-weight: 700;
    color: var(--royal-blue);
    font-size: 1.1rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--celestial-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.contact-btn:hover {
    background: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Admin Management Pages */
.admin-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--celestial-blue);
}

.page-header h1 {
    margin: 0;
    color: var(--black);
}

/* Approval Section */
.approval-section {
    margin-bottom: 3rem;
}

.approval-section h2 {
    color: var(--black);
    margin-bottom: 1.5rem;
}

.approval-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.business-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--platinum);
}

.business-info h3 {
    margin: 0;
    color: var(--black);
}

.business-details {
    margin: 1rem 0;
}

.detail-row {
    margin-bottom: 0.5rem;
    color: var(--dim-gray);
}

.detail-row strong {
    color: var(--black);
}

.approval-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--platinum);
}

/* Admin Tables */
.table-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.responsive-table {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--platinum);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--black);
    border-bottom: 2px solid var(--dim-gray);
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--platinum);
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
}

.event-cell,
.business-cell {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.date-cell {
    display: flex;
    flex-direction: column;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.table-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 0.5rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 500;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-primary {
    background: var(--celestial-blue);
    color: white;
}

/* Simple List */
.simple-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 1px solid var(--platinum);
    border-radius: 4px;
}

.list-item-content {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.list-item-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Highlight Card for Dashboard */
.highlight-card {
    border: 2px solid #ffc107;
    background: #fff8e1;
}

.alert-text {
    color: #856404;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--dim-gray);
}

/* Contact Messages Styling */
.search-section {
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    max-width: 500px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--platinum);
    border-radius: 8px;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--celestial-blue);
    box-shadow: 0 0 0 3px rgba(39, 154, 241, 0.1);
}

.messages-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.message-card {
    background: white;
    border: 2px solid var(--platinum);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.message-card.unread {
    border-left: 4px solid var(--celestial-blue);
    background: rgba(39, 154, 241, 0.02);
}

.message-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.message-info {
    flex: 1;
}

.message-subject {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--dim-gray);
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item a {
    color: var(--celestial-blue);
    text-decoration: none;
}

.meta-item a:hover {
    text-decoration: underline;
}

.message-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.message-body {
    background: var(--anti-flash-white);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.message-body p {
    color: var(--black);
    line-height: 1.6;
    white-space: pre-wrap;
    margin: 0;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .message-header {
        flex-direction: column;
    }
    
    .message-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        max-width: 100%;
    }
}
/* Auth Pages */
.auth-page {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--platinum);
}

.auth-page h1 {
    color: var(--black);
    margin-bottom: 1.5rem;
}

/* Logout Page */
.logout-page {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
    padding: 2rem;
}
/* About Page Styles */
.about-page {
    background: var(--white);
}

.about-hero {
    background: linear-gradient(135deg, var(--royal-blue), var(--celestial-blue));
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.about-section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-section.highlight {
    background: linear-gradient(135deg, rgba(39, 154, 241, 0.05), rgba(255, 255, 255, 0.5));
    border-left: 4px solid var(--celestial-blue);
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--davys-grey);
    margin-bottom: 1rem;
}

.about-section a {
    color: var(--celestial-blue);
    text-decoration: none;
    font-weight: 600;
}

.about-section a:hover {
    text-decoration: underline;
}

/* Override for buttons - ensure button colors take precedence */
.about-section .btn {
    color: var(--white) !important;
    text-decoration: none !important;
}

.about-section .btn:hover {
    text-decoration: none !important;
}

.about-section .btn-primary {
    background-color: var(--celestial-blue);
    color: var(--white) !important;
}

.about-section .btn-secondary {
    background-color: var(--dim-gray);
    color: var(--white) !important;
}

.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--royal-blue);
    text-align: center;
    margin-top: 1.5rem;
}

/* CTA Box */
.cta-box {
    background: var(--anti-flash-white);
    border: 2px solid var(--celestial-blue);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.cta-box h3 {
    color: var(--royal-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Share Section */
.share-section {
    background: linear-gradient(135deg, rgba(30, 90, 168, 0.05), rgba(255, 255, 255, 0.5));
    border-left: 4px solid var(--royal-blue);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.share-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.link {
    background: var(--dim-gray);
    color: white;
}

.share-btn.link:hover {
    background: var(--davys-grey);
    transform: translateY(-2px);
}

.share-btn.email {
    background: var(--celestial-blue);
    color: white;
}

.share-btn.email:hover {
    background: var(--royal-blue);
    transform: translateY(-2px);
}

/* Values Grid */
.values-grid h2 {
    margin-bottom: 2rem;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--platinum);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--celestial-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(39, 154, 241, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--dim-gray);
    margin: 0;
}

/* Final CTA */
.cta-final {
    text-align: center;
    background: linear-gradient(135deg, rgba(39, 154, 241, 0.08), rgba(30, 90, 168, 0.05));
    border: 2px solid var(--celestial-blue);
}

.cta-final h2 {
    color: var(--royal-blue);
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    background: var(--anti-flash-white);
}

.contact-section h2 {
    color: var(--royal-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        padding: 0 1rem 3rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn,
    .final-cta-buttons .btn {
        width: 100%;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2.5rem 0 2rem;
    }

    .about-hero h1 {
        font-size: 1.6rem;
    }

    .section-icon {
        font-size: 2.5rem;
    }
}
/* Contact Page */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-header .subtitle {
    font-size: 1.1rem;
    color: var(--dim-gray);
}

.faq-section,
.contact-form-section,
.contact-info-section {
    margin-bottom: 4rem;
}

.faq-section h2,
.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--celestial-blue);
}

.faq-item h3 {
    color: var(--black);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--dim-gray);
    line-height: 1.6;
}

.faq-item a {
    color: var(--celestial-blue);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info-card svg {
    color: var(--celestial-blue);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: var(--black);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: var(--dim-gray);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--celestial-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Messages */
.messages {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}
/* Legal Pages (Terms & Privacy) */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.legal-page .last-updated {
    color: var(--dim-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page section {
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--celestial-blue);
}

.legal-page h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: var(--dim-gray);
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    color: var(--dim-gray);
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--celestial-blue);
    text-decoration: none;
    font-weight: 600;
}

.legal-page a:hover {
    text-decoration: underline;
}
/* Sponsorship Page */
.sponsorship-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.sponsorship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sponsorship-header h1 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.sponsorship-header .subtitle {
    font-size: 1.2rem;
    color: var(--dim-gray);
}

.sponsorship-benefits,
.sponsorship-tiers,
.newsletter-explanation,
.coming-soon-features,
.sponsorship-comparison,
.sponsorship-cta,
.sponsorship-faq {
    margin-bottom: 4rem;
}

.sponsorship-benefits h2,
.sponsorship-tiers h2,
.newsletter-explanation h2,
.coming-soon-features h2,
.sponsorship-comparison h2,
.sponsorship-cta h2,
.sponsorship-faq h2 {
    font-size: 2rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--black);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--dim-gray);
    line-height: 1.6;
}

/* Pricing Tiers */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tier-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured {
    border: 3px solid var(--celestial-blue);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--celestial-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-header h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    font-size: 0.9rem;
    color: var(--dim-gray);
    font-weight: normal;
    margin-bottom: 1rem;
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.tier-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--celestial-blue);
}

.tier-price .period {
    font-size: 1rem;
    color: var(--dim-gray);
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.75rem 0;
    color: var(--dim-gray);
    border-bottom: 1px solid var(--platinum);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li strong {
    color: var(--black);
    font-weight: 700;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 0.25rem;
}

.coming-soon-item {
    font-size: 0.875rem;
    padding-left: 1rem;
    color: var(--dim-gray);
}

.tier-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* CTA Section */
.sponsorship-cta {
    background: linear-gradient(135deg, var(--celestial-blue) 0%, var(--royal-blue) 100%);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.sponsorship-cta h2 {
    color: var(--white);
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--black);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--dim-gray);
    line-height: 1.6;
}

/* Newsletter Explanation Section */
.newsletter-explanation {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.newsletter-explanation h2 {
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dim-gray);
    margin-bottom: 2rem;
}

.newsletter-preview {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--celestial-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-section h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.newsletter-section p {
    color: var(--dim-gray);
    margin: 0;
}

/* Coming Soon Features Section */
.coming-soon-features {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.coming-soon-features h2 {
    color: var(--black);
}

.social-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.social-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-feature h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-feature ul {
    list-style: none;
    padding: 0;
}

.social-feature li {
    padding: 0.5rem 0;
    color: var(--dim-gray);
}

.coming-soon-note {
    text-align: center;
    font-style: italic;
    color: #92400e;
    margin-top: 1rem;
    font-weight: 500;
}

.coming-soon-small {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 600;
}

/* Comparison Table Section */
.sponsorship-comparison {
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--celestial-blue) 0%, var(--royal-blue) 100%);
    color: var(--white);
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
}

.comparison-table th .price-small {
    display: block;
    font-size: 0.875rem;
    font-weight: normal;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--platinum);
    color: var(--dim-gray);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--black);
}

.comparison-table tbody tr:hover {
    background-color: rgba(39, 154, 241, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.price-small {
    font-size: 0.875rem;
    color: var(--dim-gray);
}
/* Error Pages (404, 500) */
.error-page {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.error-content {
    margin-bottom: 3rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--celestial-blue);
    margin: 0;
    line-height: 1;
}

.error-title {
    font-size: 2rem;
    color: var(--black);
    margin: 1rem 0;
}

.error-message {
    font-size: 1.1rem;
    color: var(--dim-gray);
    margin: 1.5rem 0;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.error-suggestions {
    background: var(--platinum);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-suggestions h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    color: var(--dim-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.error-suggestions li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--celestial-blue);
    font-weight: bold;
}

.error-illustration {
    opacity: 0.6;
    margin: 2rem auto;
}
/* Responsive Design - Media Queries */

@media (max-width: 768px) {
    /* Navigation */
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Carousel */
    .featured-carousel {
        padding: 1rem;
    }
    
    .featured-carousel h2 {
        font-size: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .featured-card {
        min-height: 350px;
    }
    
    .featured-content {
        padding: 1rem;
        min-height: 350px;
    }
    
    .featured-content h3 {
        font-size: 1.3rem;
    }
    
    .featured-business {
        font-size: 0.95rem;
    }
    
    /* Sponsors */
    .sponsor-section {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }
    
    .sponsor-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sponsor-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }
    
    .sponsor-link {
        height: 120px;
        padding: 1rem;
    }

    /* Event Grid */
    .event-grid {
        grid-template-columns: 1fr;
    }

    /* Filters */
    .filters form {
        flex-direction: column;
    }

    .filter-group select {
        width: 100%;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Dashboard */
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .analytics-cards {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .event-list-table td.actions {
        flex-direction: column;
    }
    
    /* Event Detail */
    .event-title-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-save-detail {
        width: 100%;
        text-align: center;
    }

    /* Business Directory */
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .business-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .business-info h1 {
        font-size: 2rem;
    }
    
    .directory-page h1 {
        font-size: 2rem;
    }

    /* Admin */
    .admin-analytics-container {
        padding: 1rem;
    }
    
    .time-range-selector {
        flex-direction: column;
    }
    
    .approval-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .admin-table {
        font-size: 0.9rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }

    /* Contact */
    .contact-header h1 {
        font-size: 2rem;
    }

    /* Legal */
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
    }

    /* Error Pages */
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Sponsorship */
    .sponsorship-header h1 {
        font-size: 2rem;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    /* Admin Analytics */
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .simple-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-header h1 {
        font-size: 2rem;
    }
    
    .roi-cards {
        grid-template-columns: 1fr;
    }
    
    .multiplier-grid {
        grid-template-columns: 1fr;
    }
}
