/* Modern Romance Theme Styles */

/* CSS Variables */
:root {
    --primary-pink: #ec4899;
    --primary-pink-light: #f472b6;
    --primary-purple: #9333ea;
    --primary-purple-light: #a855f7;
    --text-gray: #374151;
    --text-gray-light: #6b7280;
    --bg-gray-light: #f9fafb;
    --bg-gray-dark: #1f2937;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Hero Section Enhancements */
.hero-overlay {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.7) 0%, 
        rgba(147, 51, 234, 0.7) 100%);
    backdrop-filter: blur(2px);
}

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

.couple-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.ampersand {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

.wedding-date {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) transparent;
}

.countdown-container::-webkit-scrollbar {
    height: 6px;
}

.countdown-container::-webkit-scrollbar-track {
    background: transparent;
}

.countdown-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple));
    border-radius: 3px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Section Headers */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
}

.divider-gradient {
    width: 8rem;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Enhanced Events Timeline */
.events-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) transparent;
}

.events-scroll::-webkit-scrollbar {
    height: 8px;
}

.events-scroll::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
    border-radius: 4px;
}

.events-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple));
    border-radius: 4px;
}

.event-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.events-scroll--single {
    justify-content: center;
    overflow-x: visible;
}
.events-scroll--single .event-card {
    min-width: 0;
    width: 100%;
    max-width: 640px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-pink);
}

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

.event-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}

.event-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-gray);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray-light);
    font-size: 0.95rem;
}

.event-detail-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

/* Enhanced Venue Card */
.venue-card-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(236, 72, 153, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    position: relative;
    transition: all 0.4s ease;
}

.venue-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(236, 72, 153, 0.2);
}

.venue-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-pink) 0%, 
        var(--primary-purple) 50%, 
        var(--primary-pink) 100%);
}

.venue-content {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(249, 250, 251, 0.95) 100%);
    position: relative;
}

.venue-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.venue-info-enhanced {
    text-align: left;
    position: relative;
    z-index: 2;
}

.venue-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.venue-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.venue-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.venue-icon-wrapper:hover::before {
    animation: shimmer 0.6s ease;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.venue-name-enhanced {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-gray) 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venue-address-enhanced {
    color: var(--text-gray-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    position: relative;
    padding-left: 1rem;
}

.venue-address-enhanced::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-pink), transparent);
    border-radius: 2px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-directions::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-directions:hover::before {
    left: 100%;
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
}

.venue-map-enhanced {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519904981063-b0cf448d479e?w=1200&h=800&fit=crop') center/cover;
    overflow: hidden;
}

.venue-map-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1) 0%, 
        rgba(147, 51, 234, 0.2) 100%);
}

.venue-map-enhanced iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: saturate(0.9) contrast(1.1);
}

/* Venue Full-Map Design */
.venue-event-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}
.venue-event-label span {
    flex: 1;
    max-width: 70px;
    height: 1px;
    background: var(--primary-pink);
    opacity: 0.4;
}
.venue-event-label p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--primary-pink);
    text-transform: uppercase;
}
.venue-fullmap-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-top: 1.5rem;
}
.venue-fullmap-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.venue-overlay-card {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    width: 272px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
}
.venue-overlay-icon {
    width: 52px;
    height: 52px;
    background: #fdf4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.venue-card-name-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 4px;
}
.venue-card-address-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.5;
}
.btn-venue-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}
.btn-venue-directions:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(147, 51, 234, 0.3);
}
.btn-venue-view-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}
.btn-venue-view-map:hover {
    background: #fdf4ff;
    transform: translateY(-1px);
}
.venue-mobile-info {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 1.5rem;
}
.venue-mobile-map {
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}
.venue-mobile-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Enhanced Footer - 3 Column Layout */
.footer {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    text-align: left;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

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

.powered-by-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-brand:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-app-name {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.footer-right {
    text-align: right;
}

.footer-cta {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
}

.footer-cta:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Modern Romance RSVP Submit Button */
.rsvp-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rsvp-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.rsvp-submit-btn:hover:not(:disabled)::before {
    left: 100%;
}

.rsvp-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

.rsvp-submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
}

.rsvp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.rsvp-submit-btn.disabled {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.2);
    cursor: not-allowed;
}

.rsvp-submit-btn.disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.2);
}

/* Couple Profile Enhancements */
.couple-profile-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.couple-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-pink);
}

.couple-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-pink), var(--primary-purple)) border-box;
}

.couple-name-card {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.couple-description {
    color: var(--text-gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.couple-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.social-link:hover::after {
    opacity: 1;
}

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

/* Gallery Enhancements */
.gallery-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) transparent;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple));
    border-radius: 4px;
}

.gallery-item {
    min-width: 300px;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

.float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .venue-card-enhanced {
        grid-template-columns: 1fr;
        min-height: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .venue-card-enhanced:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .venue-content {
        padding: 2.5rem 2rem;
        order: 2;
    }
    
    .venue-map-enhanced {
        min-height: 280px;
        order: 1;
    }
    
    .venue-header {
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .venue-icon-wrapper {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .venue-name-enhanced {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .venue-address-enhanced {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding-left: 0.75rem;
    }
    
    .btn-directions {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2.5rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .footer-center {
        order: -1;
    }
    
    .copyright-text {
        font-size: 0.875rem;
    }
    
    .powered-by-text {
        font-size: 0.8rem;
    }
    
    .footer-brand {
        padding: 0.75rem 1.25rem;
    }
    
    .footer-logo {
        width: 28px;
        height: 28px;
    }
    
    .footer-app-name {
        font-size: 1rem;
    }
    
    .footer-cta {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .event-card {
        min-width: 300px;
        padding: 1.5rem;
    }
    
    .gallery-item {
        min-width: 250px;
        height: 250px;
    }
}
