/* ====================================
   ELEGANT HERO TITLE REDESIGN
==================================== */

/* Crown Ornament */
.hero-crown-ornament {
    margin-bottom: var(--spacing-xl);
    animation: crownFloat 3s ease-in-out infinite;
}

.crown-svg {
    width: 100px;
    height: 50px;
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.5));
}

@keyframes crownFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Title Wrapper with Ornamental Lines */
.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    position: relative;
}

.hero-ornamental-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    position: relative;
    max-width: 200px;
}

.hero-ornamental-line.left {
    background: linear-gradient(to right, transparent, var(--accent-gold));
}

.hero-ornamental-line.right {
    background: linear-gradient(to left, transparent, var(--accent-gold));
}

.hero-ornamental-line::before,
.hero-ornamental-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.hero-ornamental-line.left::after {
    right: 0;
}

.hero-ornamental-line.right::before {
    left: 0;
}

/* Title Content */
.hero-title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.hero-subtitle-elegant {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Elegant Name with Letter Animation */
.hero-name-elegant {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: clamp(2px, 1vw, 8px);
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.first-name,
.last-name {
    display: flex;
    justify-content: center;
    gap: clamp(0px, 0.5vw, 4px);
}

.name-letter {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #f4e4c1 0%,
        #d4af37 25%,
        #f4e4c1 50%,
        #d4af37 75%,
        #b8860b 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameShimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transition: all var(--transition-elegant);
    flex-shrink: 0;
    white-space: nowrap;
}

.name-space {
    display: inline-block;
    width: clamp(1rem, 2vw, 1.5rem);
    flex-shrink: 0;
}

.name-letter:hover {
    transform: scale(1.2) translateY(-10px);
    animation-duration: 1s;
}

@keyframes nameShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Sparkles Effect */
.hero-sparkles {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.sparkle {
    font-size: 1.8rem;
    display: inline-block;
    animation: sparkleFloat 2s ease-in-out infinite;
    animation-delay: var(--delay);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-8px) rotate(10deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(-10deg) scale(1.2);
        opacity: 1;
    }
    75% {
        transform: translateY(-8px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
}

/* Elegant Divider */
.hero-divider-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-2xl) 0;
    position: relative;
}

.divider-decoration {
    flex: 1;
    max-width: 150px;
}

.decoration-svg {
    width: 100%;
    height: 20px;
    opacity: 0.9;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.divider-center-gem {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(244, 228, 193, 1) 0%, rgba(212, 175, 55, 1) 50%, rgba(184, 134, 11, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-navy);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: gemPulse 3s ease-in-out infinite;
    position: relative;
}

.divider-center-gem::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: gemRing 3s ease-in-out infinite;
}

@keyframes gemPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                    inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        box-shadow: 0 0 50px rgba(212, 175, 55, 1),
                    inset 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

@keyframes gemRing {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

/* ====================================
   IMPROVED MAP SECTION STYLES
==================================== */

/* Enhanced Venue Cards */
.venue-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 28px;
    padding: var(--spacing-2xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold), var(--rose-gold), var(--accent-gold));
    background-size: 200% 100%;
    animation: cardTopShine 3s linear infinite;
}

@keyframes cardTopShine {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.venue-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: var(--accent-gold);
}

.venue-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.venue-icon i {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

.venue-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.3);
    animation: iconRing 2s ease-in-out infinite;
}

@keyframes iconRing {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Enhanced Map Container */
.maps-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: var(--spacing-2xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.maps-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: mapGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes mapGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Map Tabs */
.map-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    background: rgba(40, 54, 85, 0.08);
    padding: var(--spacing-sm);
    border-radius: 20px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-tab {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-xl);
    background: transparent;
    border: 2px solid transparent;
    border-radius: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-elegant);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.map-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.map-tab:hover::before {
    left: 100%;
}

.map-tab:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.map-tab.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--rose-gold));
    color: var(--primary-navy);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(0);
}

.map-tab i {
    font-size: 1.4rem;
    transition: transform var(--transition-medium);
}

.map-tab.active i {
    animation: tabIconBounce 0.6s ease;
}

@keyframes tabIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Enhanced Map Frame */
.map-frame iframe {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-elegant);
}

.map-frame:hover iframe {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25),
                inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Enhanced Map Action Buttons */
.btn-map-action {
    flex: 1;
    min-width: 180px;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 28px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-elegant);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.btn-map-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-map-action:hover::before {
    left: 100%;
}

.btn-map-action:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--rose-gold));
    color: var(--primary-navy);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    border-color: transparent;
}

.btn-map-action i {
    font-size: 1.3rem;
    transition: transform var(--transition-medium);
}

.btn-map-action:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Enhanced Transportation Section */
.transportation-info {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.transport-option {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all var(--transition-elegant);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transport-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--rose-gold));
    transform: scaleX(0);
    transition: transform var(--transition-elegant);
}

.transport-option:hover::before {
    transform: scaleX(1);
}

.transport-option:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
}

/* Responsive adjustments for new hero title */
@media (max-width: 1024px) {
    .hero-name-elegant {
        font-size: 4.5rem;
        letter-spacing: 6px;
    }
    
    .hero-ornamental-line {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .hero-name-elegant {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        letter-spacing: clamp(2px, 0.8vw, 4px);
        gap: clamp(0px, 0.3vw, 2px);
        padding: 0 1rem;
    }
    
    .hero-subtitle-elegant {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .hero-ornamental-line {
        max-width: 80px;
    }
    
    .crown-svg {
        width: 80px;
        height: 40px;
    }
    
    .divider-center-gem {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .venue-card {
        padding: var(--spacing-xl);
    }
    
    .maps-container {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-name-elegant {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        letter-spacing: clamp(1px, 0.5vw, 2px);
        gap: 0;
        padding: 0 0.5rem;
        line-height: 1.2;
    }
    
    .name-letter {
        font-size: inherit;
    }
    
    .hero-subtitle-elegant {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title-wrapper {
        gap: var(--spacing-sm);
    }
    
    .hero-ornamental-line {
        display: none;
    }
    
    .hero-sparkles {
        gap: var(--spacing-md);
    }
    
    .sparkle {
        font-size: 1.5rem;
    }
    
    .crown-svg {
        width: 60px;
        height: 30px;
    }
    
    .venue-icon {
        width: 65px;
        height: 65px;
    }
    
    .venue-icon i {
        font-size: 2rem;
    }
}