/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip to content for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
}

.skip-to-content:focus {
    top: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        animation: none;
    }
    
    .heart {
        animation: none;
    }
}

/* Language Content Management */
.language-content {
    display: none;
}

.language-content.active {
    display: block;
}

/* Modern Navigation */
.navbar {
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.95), 
        rgba(171, 71, 188, 0.95), 
        rgba(66, 165, 245, 0.95)
    );
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
    width: 100%;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.logo-text h1 {
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link {
    background: rgba(225, 48, 108, 0.3) !important;
}

.social-link:hover {
    background: rgba(225, 48, 108, 0.5) !important;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem;
    border-radius: 25px;
}

.desktop-lang {
    display: flex;
}

.lang-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.lang-btn.active {
    background: white;
    color: #6a1b9a;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flag {
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 0.75rem;

/* Navbar action buttons (Reading / Reduced Motion) */
.nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    font-weight: 700;
    transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.nav-mode-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.nav-mode-btn[aria-pressed="true"] {
    background: white;
    color: #6a1b9a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Stronger visual for the reduced-motion control */
#btn-reduced-motion {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

#btn-reduced-motion i { color: #fff; }

#btn-reduced-motion[aria-pressed="true"] {
    background: linear-gradient(90deg,#ff6b9d,#ab47bc);
    color: white;
    box-shadow: 0 12px 30px rgba(171,71,188,0.18);
}
    border-radius: 12px;
    position: relative;
    width: 48px;
    height: 48px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, #ff6b9d, #ab47bc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-bg {
    opacity: 1;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.98), 
        rgba(171, 71, 188, 0.98), 
        rgba(66, 165, 245, 0.98)
    );
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 2rem;
}

/* Mobile nav controls area */
.mobile-nav-controls {
    padding-top: 0.5rem;
}

.mobile-action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
}

.mobile-action-btn[aria-pressed="true"] {
    background: linear-gradient(90deg,#ff6b9d,#ab47bc);
    color: white;
}

.mobile-nav-links {
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.mobile-lang-switcher h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mobile-lang-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-lang-buttons .lang-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: left;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .navbar {
        height: 70px;
    }

    /* hide desktop-only action buttons on mobile to avoid duplication */
    .nav-actions { display: none; }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #ff6b9d, #ffa726, #ffeb3b, #66bb6a, #42a5f5, #ab47bc);
    background-size: 400% 400%;
    animation: rainbowGradient 12s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 140px; /* Account for navbar (80px) + banner (60px) */
}

/* Floating rainbow elements */
.hero::before {
    content: '🌈';
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.hero::after {
    content: '✊';
    position: absolute;
    bottom: 15%;
    right: 15%;
    font-size: 2.5rem;
    animation: float 8s ease-in-out infinite reverse;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes rainbowGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    animation: fadeInLeft 1.2s ease-out 0.3s both;
}

.hero-text h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 900;
    animation: fadeInRight 1.2s ease-out 0.6s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.date-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.date {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700;
    }
    to {
        text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700, 0 0 15px #ffd700;
    }
}

.time {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.schedule {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-out 0.9s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule p {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    min-width: 150px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: bounceIn 0.6s ease-out;
}

.schedule p:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pride-text {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #ffd700, #32cd32, #1e90ff, #9370db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(135deg, #fff, #f8f9fa), linear-gradient(90deg, #ff6b9d, #ffa726, #ffeb3b, #66bb6a, #42a5f5, #ab47bc);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.countdown-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
    font-weight: bold;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    border-top: 4px solid #ff6b9d;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #6a1b9a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Urgent pulse for countdown numbers to add a sense of urgency */
.countdown-item span {
    animation: countdownUrgent 3.2s ease-in-out infinite;
}

@keyframes countdownUrgent {
    0% { transform: scale(1); color: #6a1b9a; }
    40% { transform: scale(1.06); color: #d32f2f; }
    100% { transform: scale(1); color: #6a1b9a; }
}

.countdown-item label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.countdown-text {
    font-size: 1.2rem;
    color: #6a1b9a;
    font-weight: bold;
    margin-top: 1rem;
}

/* Main Content */
.main-content {
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #6a1b9a;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    border-left: 5px solid #ff6b9d;
}

.values-box h3 {
    color: #6a1b9a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.values-box ul {
    list-style: none;
}

.values-box li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.values-box li::before {
    content: "🌈";
    position: absolute;
    left: 0;
}

/* Route Section */
.route-section {
    background: linear-gradient(135deg, #e8f5e8, #f3e5f5);
    padding: 4rem 0;
}

.route-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #6a1b9a;
}

.route-section > div > div > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #333;
}

.route-points {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.route-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.route-point:hover {
    transform: translateY(-5px);
}

.start-point {
    border-top: 5px solid #4caf50;
}

.end-point {
    border-top: 5px solid #ff6b9d;
}

.route-point i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.start-point i {
    color: #4caf50;
}

.end-point i {
    color: #ff6b9d;
}

.route-point h3 {
    color: #6a1b9a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.route-point p {
    margin: 0.5rem 0;
    color: #666;
}

.route-point p strong {
    color: #333;
    font-size: 1.1rem;
}

.route-arrow {
    font-size: 2rem;
    color: #6a1b9a;
    flex-shrink: 0;
}

.route-arrow i {
    animation: pulse 2s ease-in-out infinite;
}

/* Travel Section */
.travel-section {
    background: linear-gradient(135deg, #6a1b9a, #ff6b9d);
    color: white;
}

.travel-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.travel-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.travel-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.travel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.bring-items {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bring-items h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.bring-items ul {
    list-style: none;
}

.bring-items li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.bring-items li::before {
    content: "✊";
    position: absolute;
    left: 0;
}

/* Accessibility Section */
.accessibility-section {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
}

.accessibility-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #6a1b9a;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.access-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.access-item:hover {
    transform: translateY(-5px);
}

.access-item i {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.access-item h3 {
    color: #6a1b9a;
    margin-bottom: 1rem;
}

/* Instagram Section */
.instagram-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.instagram-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.instagram-simple {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.instagram-link-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.instagram-link-container i {
    font-size: 4rem;
    color: #fff;
}

.instagram-info {
    text-align: left;
}

.instagram-handle {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    color: #fff;
}

.instagram-link {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.05);
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #212529, #495057);
    color: white;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    text-align: left;
    margin-bottom: 1rem;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 3rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ffa726, #ffeb3b, #66bb6a, #42a5f5, #ab47bc);
}

/* Footer Stats */
.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-icon {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.footer-icon:hover {
    transform: rotate(15deg) scale(1.1);
}

.footer-logo h3 {
    color: #ff6b9d;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-tagline {
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-social h4,
.footer-info h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: translateX(5px);
}

.instagram {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 220, 128, 0.2));
}

.website {
    cursor: default;
}

.event-quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.95rem;
}

.quick-info-item i {
    color: #ff6b9d;
    width: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credits {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.footer-credits p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.made-by {
    font-size: 0.85rem !important;
}

.heart {
    color: #ff6b9d;
    font-size: 1.2em;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.visitor-counter {
    margin-left: 1rem;
    opacity: 0.6;
    font-size: 0.85em;
    font-weight: 300;
}

.footer-rainbow {
    width: 100%;
    padding: 0;
    margin-top: 1rem;
}

.rainbow-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff6b9d, #ffa726, #ffeb3b, #66bb6a, #42a5f5, #ab47bc);
    background-size: 200% 100%;
    animation: rainbowMove 3s linear infinite;
}

@keyframes rainbowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .schedule {
        flex-direction: column;
        gap: 1rem;
    }

    .pride-text {
        font-size: 4rem;
        bottom: 1rem;
        right: 1rem;
    }

    .route-points {
        flex-direction: column;
        gap: 1rem;
    }

    .route-arrow {
        transform: rotate(90deg);
    }

    .travel-info {
        grid-template-columns: 1fr;
    }

    .accessibility-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .instagram-link-container {
        flex-direction: column;
        gap: 1rem;
    }
    .instagram-info {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-credits,
    .footer-legal {
        flex: none;
    }

    .countdown-display {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }

    .countdown-item span {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        flex-direction: column;
        width: 100%;
    }

    .lang-btn {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .pride-text {
        font-size: 3rem;
    }

    section {
        padding: 2rem 0;
    }
}



/* Share Section */
.share-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #ab47bc 50%, #42a5f5 100%);
    padding: 4rem 0;
    text-align: center;
}

.share-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.share-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.share-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    min-width: 140px;
    justify-content: center;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.share-btn:active {
    transform: translateY(0);
}

.share-btn i {
    font-size: 1.2rem;
}

.share-facebook:hover {
    background: rgba(24, 119, 242, 0.8);
    border-color: #1877f2;
}

.share-twitter:hover {
    background: rgba(29, 161, 242, 0.8);
    border-color: #1da1f2;
}

.share-instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.8), rgba(255, 220, 128, 0.8));
    border-color: #e1306c;
}

.share-tiktok:hover {
    background: rgba(37, 244, 238, 0.8);
    border-color: #25f4ee;
    color: #000;
}

.share-whatsapp:hover {
    background: rgba(37, 211, 102, 0.8);
    border-color: #25d366;
}

.share-signal:hover {
    background: rgba(47, 155, 239, 0.8);
    border-color: #2f9bef;
    color: #fff;
}

.share-telegram:hover {
    background: rgba(0, 136, 204, 0.8);
    border-color: #0088cc;
}

.share-snapchat:hover {
    background: rgba(255, 252, 0, 0.8);
    border-color: #fffc00;
    color: #000;
}

.share-copy:hover {
    background: rgba(108, 117, 125, 0.8);
    border-color: #6c757d;
}

/* Responsive Share Buttons */
@media (max-width: 768px) {
    .share-content h2 {
        font-size: 2rem;
    }
    
    .share-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .share-btn {
        width: 100%;
        padding: 1rem;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .share-buttons {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* Safety Banner with Scrolling Animation */
.safety-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-bottom: 2px solid #a93226;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    font-size: 0.95rem;
    overflow: hidden;
    height: 60px;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scrolling-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    text-align: left;
    white-space: nowrap;
    animation: scrollText 35s linear infinite;
    padding: 0 2rem;
    width: max-content;
    /* allow the content to be its natural width so the translateX animation moves it fully off-screen */
    min-width: unset;
    display: inline-block;
    will-change: transform;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.banner-content:hover {
    animation-play-state: paused;
}

.banner-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.banner-text {
    line-height: 1.4;
}

.banner-text strong {
    font-weight: 700;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .safety-banner {
        font-size: 0.85rem;
        height: 50px;
        top: 70px;
    }
    
    .hero {
        margin-top: 120px; /* 70px navbar + 50px banner */
    }
    
    .banner-content {
        animation: scrollTextMobile 30s linear infinite;
        padding: 0 1rem;
    }
    
    @keyframes scrollTextMobile {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    .banner-icon {
        font-size: 1.3rem;
    }
}

/* Scroll-triggered animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Countdown animation */
.countdown-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    border-top: 4px solid #ff6b9d;
    transition: all 0.3s ease;
    animation: countdownPop 0.8s ease-out;
}

@keyframes countdownPop {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(-10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.countdown-item span {
    animation: numberFlip 0.5s ease-in-out;
}

@keyframes numberFlip {
    0%, 100% { transform: rotateY(0); }
    50% { transform: rotateY(180deg); }
}

/* Share buttons animation */
.share-btn {
    animation: slideInScale 0.5s ease-out;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

@keyframes slideInScale {
    0% {
        transform: translateX(-30px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Route section animations */
.route-point {
    animation: slideInBounce 0.8s ease-out;
    animation-delay: calc(var(--delay, 0) * 0.3s);
}

@keyframes slideInBounce {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    60% {
        transform: translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
    }
}

/* Accessibility items animation */
.access-item {
    animation: fadeInRotate 0.6s ease-out;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

@keyframes fadeInRotate {
    0% {
        transform: rotate(5deg) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

/* Values box animation */
.values-box {
    animation: expandIn 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@keyframes expandIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
        height: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        height: auto;
    }
}

/* Travel card animations */
.travel-card,
.bring-items {
    animation: slideInLeft 0.6s ease-out;
}

.bring-items {
    animation-name: slideInRight;
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Instagram section animation */
.instagram-simple {
    animation: zoomIn 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact section animation */
.contact-info {
    animation: slideUp 0.6s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer animation */
.footer {
    animation: fadeInBottom 0.8s ease-out;
}

@keyframes fadeInBottom {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Marshals modal styles */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal[aria-hidden="false"] {
    display: flex;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.modal-panel {
    position: relative;
    /* subtle off-white with a soft paper feel */
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
    border-radius: 16px;
    max-width: 920px;
    width: calc(100% - 2rem);
    box-shadow: 0 36px 96px rgba(15, 23, 42, 0.48);
    overflow: hidden;
    border: 1px solid rgba(10,10,10,0.06);
}
.modal-body { padding: 1.25rem 1.75rem 1.75rem; background: transparent; }
.modal-header { background: linear-gradient(90deg, #0b6b5a, #0e6b8f); color: white; padding: 1.25rem 1.5rem; display:flex; align-items:center; justify-content:space-between; position:relative; }
.modal-header-inner { display:flex; gap: 1rem; align-items:center; }
.modal-icon { font-size: 1.15rem; background: rgba(255,255,255,0.08); padding: 0.45rem; border-radius: 10px; display:flex; align-items:center; justify-content:center; box-shadow: 0 6px 18px rgba(6,38,38,0.06); color: white; }
.modal-icon svg { width: 28px; height: 28px; display:block; color: white; }

/* decorative slanted accent on header to add depth */
.modal-header::after {
    content: '';
    position: absolute;
    right: -48px;
    top: 0;
    bottom: 0;
    width: 140px;
    background: linear-gradient(90deg, rgba(14,107,143,0.08), transparent 55%);
    transform: skewX(-16deg);
    pointer-events: none;
}
.modal-header h2 { margin: 0; font-size: 1.8rem; line-height: 1; font-weight: 900; color: #fff; }
.modal-header .muted { margin: 0; opacity: 0.95; font-size: 0.98rem; color: rgba(255,255,255,0.92); }
.modal-header .muted { position: relative; padding-bottom: 12px; }

/* Urgent colored accent lines under the muted subtitle */
.modal-header .muted::after {
    content: '';
    position: absolute;
    left: 0;
    right: 40%; /* don't run full width so title remains dominant */
    height: 6px;
    bottom: -10px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa726 30%, #66bb6a 60%, #42a5f5 100%);
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(171,71,188,0.08);
}
.modal-close { background: transparent; border: none; color: rgba(255,255,255,0.95); font-size: 1.6rem; cursor: pointer; }
.modal-grid { display: grid; grid-template-columns: 36% 1fr; gap: 1.5rem; align-items: start; }
.modal-side { padding: 1rem 1.25rem; background: linear-gradient(180deg, rgba(6,38,38,0.04), rgba(6,38,38,0.01)); border-radius: 8px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); }
.modal-main { padding: 0.75rem 0.5rem; color: #111; }
.modal-side h3 { margin-top: 0; font-size: 1.25rem; color: #163737; }
.modal-features { list-style: none; padding: 0; margin: 0.75rem 0 0 0; }
.modal-features li { padding: 0.55rem 0; display:flex; gap:0.75rem; align-items:center; font-weight:700; color: #083333; }
.modal-features li::before { content: '\2713'; color:#2e7d66; font-weight:800; margin-right: 0.25rem; }

/* Slightly increase line-height for readability inside modal */
.modal-body, .modal-main, .modal-side { line-height: 1.45; }
.modal-actions { display:flex; gap: 1rem; align-items:center; margin-top: 1.5rem; }
.btn { background: linear-gradient(90deg,#6a1b9a,#8b3fa8); color: white; padding: 0.85rem 1.25rem; border-radius: 12px; text-decoration: none; border: none; display:inline-block; font-weight:700; box-shadow: 0 10px 30px rgba(106,27,154,0.16); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(106,27,154,0.18); }
.btn-ghost { background: transparent; border: 1px solid rgba(6,38,38,0.08); color: #083333; padding: 0.6rem 0.9rem; border-radius: 10px; cursor: pointer; }
.footer-marshals-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1500;
    background: linear-gradient(45deg,#ff6b9d,#ab47bc);
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* Pulsing highlight for marshals button */
.footer-marshals-btn {
    animation: pulseMarshals 3s ease-in-out infinite;
}

@keyframes pulseMarshals {
    0% { transform: scale(1); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
    50% { transform: scale(1.06); box-shadow: 0 18px 40px rgba(0,0,0,0.24); }
    100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
}

/* urgency badge for marshals button */
.footer-marshals-btn::after {
    content: 'Jetzt!';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d32f2f;
    color: white;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    box-shadow: 0 6px 18px rgba(211,47,47,0.18);
    transform-origin: center;
    animation: badgePulse 2.8s ease-in-out infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Reading mode removed per user request */

/* Reduced motion mode: disable animations and transitions */
.reduced-motion *, .reduced-motion *::before, .reduced-motion *::after {
    animation: none !important;
    transition: none !important;
}

/* Respect reduced motion preference by default if set in OS */
@media (prefers-reduced-motion: reduce) {
    .footer-marshals-btn { animation: none !important; }
}

/* Navbar reduced-motion toggle (desktop) */
/* (reduced-motion nav buttons removed) */

@media (max-width: 768px) {
    .modal-panel { max-width: 92%; }
    .footer-marshals-btn { right: 12px; bottom: 12px; }
    .modal-grid { grid-template-columns: 1fr; }
    .modal-side { border-right: none; border-bottom: 1px solid #f0f0f0; }
}

/* Reduced motion utility class (applies site-wide when enabled) */
/* Reduced-motion utility removed (feature disabled) */

/* Hover effects for interactive elements */
.values-box li:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.bring-items li:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Enhanced pulse animation for important elements */
.date-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: enhancedPulse 3s infinite;
}

@keyframes enhancedPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        border: 2px solid transparent;
    }
    25% {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
        border: 2px solid rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
        border: 2px solid rgba(255, 215, 0, 0.5);
    }
    75% {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
        border: 2px solid rgba(255, 215, 0, 0.3);
    }
}

/* Floating background elements */
.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    animation: floatAround 15s infinite linear;
}

.about-section::before {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.about-section::after {
    bottom: 10%;
    right: 5%;
    animation-delay: -7.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* Section position relative for floating elements */
.about-section,
.route-section,
.accessibility-section {
    position: relative;
    overflow: hidden;
}

/* Sparkling effect for share buttons */
.share-btn {
    position: relative;
}

.share-btn::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0;
    font-size: 1rem;
    animation: sparkle 2s infinite;
    animation-delay: calc(var(--delay, 0) * 0.3s + 1s);
}

@keyframes sparkle {
    0%, 80%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    10%, 70% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Breathing animation for important text - Fixed */
.hero-text h1,
.hero-text h2 {
    animation-iteration-count: 1;
    transition: transform 0.3s ease;
}

.hero-text h1:hover,
.hero-text h2:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}