* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --primary-color: #9333ea;
    --secondary-color: #f59e0b;
    --dark-bg: #0f0f1e;
    --card-bg: #1a1a2e;
    --text-light: #e0e0e0;
    --text-dim: #a0a0a0;
    --accent-glow: rgba(147, 51, 234, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation - UPDATED */
nav {
    position: sticky;
    top: 0;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: fit-content;
    margin-right: 1rem;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Guest & User Navigation - FIXED */
.guest-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.user-nav {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}

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

.user-name {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.85rem;
}

.btn-logout,
.btn-login {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-logout {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.btn-logout:hover {
    background: #ef4444;
    color: white;
}

.btn-login {
    background: linear-gradient(135deg, var(--primary-color), #a855f7);
    border: none;
    color: white;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: 
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-dim);
    margin-bottom: 3rem;
}

/* Hero Search Bar */
.hero-search {
    max-width: 700px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-search-input {
    flex: 1;
    min-width: 300px;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.hero-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background: rgba(255, 255, 255, 0.15);
}

.hero-search-input::placeholder {
    color: rgba(224, 224, 224, 0.6);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.hero-quick-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-filter-btn {
    padding: 0.7rem 1.5rem;
    background: rgba(147, 51, 234, 0.2);
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.quick-filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

/* Search Results Page */
.search-results-page {
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

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

/* Back Button */
.btn-back {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

/* Search Summary Bar */
.search-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-summary-left h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-term-display {
    font-size: 1rem;
    color: var(--text-dim);
}

.btn-new-search {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.btn-new-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* Filter Container */
.filter-container {
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.filter-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-secondary {
    background: rgba(245, 158, 11, 0.2);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

/* Filter Pills */
.filter-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-pill-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.filter-pill-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.filter-pill-select {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.filter-pill-select option {
    background: var(--card-bg);
    color: var(--text-light);
}

/* Old Filters (keeping for compatibility) */
.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

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

.filter-group label {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 500;
}

.filter-group select {
    padding: 0.75rem;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Empty State */
.empty-state {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.empty-state.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.empty-state h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.empty-state-suggestions {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.suggestions-label {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.suggestion-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 3rem;
    display: none;
}

.loading.active {
    display: block;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(147, 51, 234, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loading-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    animation: pulse 1.5s ease-in-out infinite;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem;
    padding: 1rem 0;
}

.results-count {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
}

.btn-clear-filters {
    padding: 0.6rem 1.2rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    border-radius: 20px;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-clear-filters:hover {
    background: #ef4444;
    color: white;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.event-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(147, 51, 234, 0.1);
    animation: fadeInUp 0.5s ease-out backwards;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }
.event-card:nth-child(5) { animation-delay: 0.5s; }
.event-card:nth-child(6) { animation-delay: 0.6s; }

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--accent-glow);
    border-color: var(--primary-color);
}

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

.event-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.event-location {
    color: var(--text-dim);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-type {
    background: rgba(147, 51, 234, 0.2);
    color: var(--primary-color);
}

.tag-genre {
    background: rgba(245, 158, 11, 0.2);
    color: var(--secondary-color);
}

.event-date {
    color: var(--text-light);
    font-weight: 500;
    margin: 1rem 0;
}

.event-description {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-contact {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1.2rem;
}

.event-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.event-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    flex: 1;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results.active {
    display: block;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

/* Submit Form Section */
.submit-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.form-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.success-message {
    display: none;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    border-radius: 10px;
    color: #22c55e;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.success-message.active {
    display: block;
    animation: slideDown 0.4s ease-out;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.8rem 1.5rem;
    background: rgba(147, 51, 234, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: rgba(15, 15, 30, 0.95);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.back-to-top {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-color);
    color: white;
}

.copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

/* Responsive Design - UPDATED */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .user-name {
        display: none;
    }
    
    .btn-logout, .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        width: 100%;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-search {
        flex-direction: column;
    }

    .hero-search-input {
        min-width: 100%;
    }

    .search-bar,
    .search-bar-modern {
        flex-direction: column;
    }

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

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

    .event-actions {
        flex-direction: column;
    }

    .filter-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-pill-group {
        justify-content: space-between;
    }

    .hero-quick-filters {
        gap: 0.5rem;
    }

    .quick-filter-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .user-nav {
        position: fixed;
        top: 70px;
        right: 1rem;
        background: var(--card-bg);
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(147, 51, 234, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .user-nav.active {
        display: flex;
        flex-direction: column;
    }
    
    .user-name {
        display: block;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .hero {
        min-height: 80vh;
    }

    .search-container,
    .form-container,
    .about-content {
        padding: 1.5rem;
    }

    .empty-state-icon {
        font-size: 3.5rem;
    }

    .empty-state h3 {
        font-size: 1.5rem;
    }

    .suggestion-tags {
        gap: 0.5rem;
    }

    .suggestion-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}