/* Rehoboth Bay Pride Styles */
:root {
    --primary-color: #FF0080;
    --secondary-color: #7928CA;
    --accent-color: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --rainbow: linear-gradient(to right, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982);
}

/* Animations */
@keyframes rainbow-wave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rainbow-text {
    0% { color: #e40303; }
    16.66% { color: #ff8c00; }
    33.33% { color: #ffed00; }
    50% { color: #008026; }
    66.66% { color: #24408e; }
    83.33% { color: #732982; }
    100% { color: #e40303; }
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { transform: translate(-50%, -20px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translate(-50%, 0); opacity: 1; }
    to { transform: translate(-50%, -20px); opacity: 0; }
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-calendar {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L60,112C120,128,240,160,360,165.3C480,171,600,149,720,144C840,139,960,149,1080,154.7C1200,160,1320,160,1380,160L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: var(--rainbow);
    opacity: 0.1;
    animation: rainbow-wave 8s ease-in-out infinite;
    background-size: 200% 100%;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-date {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Countdown Timer */
.countdown-container {
    margin: 2rem 0;
    text-align: center;
}

.countdown-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 100px;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-facebook {
    background: #1877f2;
    color: white;
    display: inline-flex;
    align-items: center;
}

.btn-facebook:hover {
    background: #1565d8;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    animation: float 6s ease-in-out infinite;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--rainbow);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about-content p:last-of-type {
    margin-bottom: 3rem;
}

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

.stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, rgba(255,0,128,0.1), rgba(121,40,202,0.1));
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat:hover h3 {
    animation: pulse 1s ease-in-out infinite;
}

.stat p {
    font-size: 1.1rem;
    color: #666;
}

/* Event Section */
.event {
    padding: 80px 0;
    background: white;
}

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

.event-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--rainbow);
}

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

.event-card:nth-child(even):hover {
    transform: translateY(-5px) rotate(-2deg);
}

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

.event-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Passes Section */
.passes {
    padding: 80px 0;
    background: var(--bg-light);
}

.wallet-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.wallet-content {
    text-align: center;
}

.wallet-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.wallet-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.wallet-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 2rem;
}

.btn-apple-wallet {
    background: #000;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-apple-wallet:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.wallet-icon {
    width: 24px;
    height: 24px;
}

.wallet-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.wallet-preview {
    display: flex;
    justify-content: center;
}

.pass-preview {
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.pass-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.pass-header {
    background: linear-gradient(135deg, #7928CA 0%, #FF0080 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.pass-logo {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pass-header h4 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pass-year {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.9;
}

.pass-body {
    padding: 1.5rem;
    background: #f8f8f8;
}

.pass-main-event {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.event-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.event-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pass-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pass-info {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pass-location {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pass-info .label,
.pass-location .label {
    display: block;
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.pass-info .value,
.pass-location .value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pass-barcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.barcode-svg {
    width: 180px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.barcode-text {
    font-size: 0.75rem;
    color: #666;
    font-family: monospace;
}

/* Characters Preview Section */
.characters-preview {
    padding: 80px 0;
    background: white;
}

.character-mini {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.character-mini:hover {
    transform: translateY(-10px);
}

.character-mini div {
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--rainbow);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Merchandise Coming Soon Section */
.merch-coming-soon {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.coming-soon-banner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--rainbow);
}

.coming-soon-content {
    position: relative;
    z-index: 1;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.rainbow-divider {
    width: 100px;
    height: 4px;
    background: var(--rainbow);
    margin: 2rem auto;
    border-radius: 2px;
}

.coming-soon-subtitle {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.coming-soon-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    font-size: 3rem;
}

.coming-soon-icons span {
    animation: bounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.coming-soon-icons span:nth-child(1) { --i: 0; }
.coming-soon-icons span:nth-child(2) { --i: 1; }
.coming-soon-icons span:nth-child(3) { --i: 2; }
.coming-soon-icons span:nth-child(4) { --i: 3; }

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

.coming-soon-notify {
    font-size: 1.1rem;
    color: #666;
    margin: 2rem 0 1.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 2rem;
}

.social-links a {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .btn-calendar {
        width: 90%;
        margin: 1rem auto;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .pass-card.featured {
        transform: scale(1);
    }

    .contact-form {
        flex-direction: column;
    }

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

    .wallet-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wallet-features {
        flex-direction: column;
        gap: 1rem;
    }

    .pass-preview {
        transform: perspective(1000px) rotateY(0deg);
        width: 280px;
    }
}

/* Quick Navigation */
.quick-nav {
    padding: 40px 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 80px;
    z-index: 900;
}

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

.quick-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 120px;
}

.quick-nav-btn:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quick-nav-icon {
    font-size: 2rem;
}

.quick-nav-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Info Sections */
.info-section {
    padding: 60px 0;
    background: white;
}

.info-section:nth-child(even) {
    background: var(--bg-light);
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.info-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.info-content li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.info-content li::before {
    content: "🌈";
    position: absolute;
    left: 0;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Floating Register Button */
.floating-register-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(121, 40, 202, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

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

.floating-register-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(121, 40, 202, 0.5);
}

.register-icon {
    font-size: 1.3rem;
    animation: spin 4s linear infinite;
}

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

/* Hide button text on mobile */
@media (max-width: 480px) {
    .register-text {
        display: none;
    }
    
    .floating-register-btn {
        padding: 16px;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .register-icon {
        font-size: 1.5rem;
    }
    
    /* Quick nav responsive */
    .quick-nav {
        top: 70px;
        padding: 20px 0;
    }
    
    .quick-nav-buttons {
        gap: 0.5rem;
    }
    
    .quick-nav-btn {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
    
    .quick-nav-icon {
        font-size: 1.5rem;
    }
    
    .quick-nav-text {
        font-size: 0.9rem;
    }
    
    /* Countdown responsive */
    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    /* Map responsive */
    .map-container {
        height: 300px;
    }
    
    /* Coming soon responsive */
    .coming-soon-banner {
        padding: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .coming-soon-subtitle {
        font-size: 2rem;
    }
    
    .coming-soon-icons {
        font-size: 2rem;
        gap: 1rem;
    }
}