.elementor-479 .elementor-element.elementor-element-90c5280{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-479 .elementor-element.elementor-element-a2a3ddd{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-a2a3ddd */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0d1117;
    overflow-x: hidden;
}

/* Highlight */
.highlight {
    color: #EFB810;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #EFB810;
    color: #0d1117;
}

.btn-primary:hover {
    background: #d4a00e;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #EFB810;
    color: #EFB810;
}

/* Intro Line */
.intro-line {
    width: 3px;
    min-height: 150px;
    background: linear-gradient(180deg, #EFB810 0%, rgba(239, 184, 16, 0.3) 50%, rgba(239, 184, 16, 0.1) 100%);
    flex-shrink: 0;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(239, 184, 16, 0.5);
    }
}

.intro-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #EFB810, transparent);
    border-radius: 2px;
    animation: lineFlow 2s ease-in-out infinite;
}

@keyframes lineFlow {
    0% { top: 0; opacity: 1; }
    100% { top: calc(100% - 30px); opacity: 0; }
}


/* Page Hero */
.page-hero {
    padding: 12rem 5% 5rem;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero h1 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 30%, #EFB810 60%, #f5d060 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerTitle 4s linear infinite;
    position: relative;
}

@keyframes shimmerTitle {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.page-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.page-hero p {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    line-height: 1.7;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero p::before {
    content: '—';
    display: block;
    color: #EFB810;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.6; }
}

/* Invite Badge */
.invite-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.2) 0%, rgba(239, 184, 16, 0.1) 100%);
    color: #EFB810;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 184, 16, 0.3);
    position: relative;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite, fadeInDown 0.8s ease-out forwards;
    text-shadow: 0 0 20px rgba(239, 184, 16, 0.5);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 184, 16, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(239, 184, 16, 0.4);
    }
}

.invite-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
    animation: badgeShine 3s ease-in-out infinite;
    border-radius: 30px;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}


/* Page Content */
.page-content {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Content Intro */
.content-intro {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    width: 100%;
}

.content-intro-left {
    flex: 0 0 400px;
}

.content-intro-left h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.content-intro-left h2 .highlight {
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.content-intro-right {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.content-intro-right p {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
}

/* Dinner Features */
.dinner-features {
    margin-bottom: 4rem;
    width: 100%;
}

.dinner-feature {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.5) 0%, rgba(13, 17, 23, 0.5) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.dinner-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dinner-feature:hover::before {
    opacity: 1;
}

.dinner-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 184, 16, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(239, 184, 16, 0.1);
}

.dinner-feature.reverse {
    flex-direction: row-reverse;
}

/* Image container */
.dinner-feature img {
    flex: 0 0 450px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    filter: grayscale(30%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dinner-feature:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(239, 184, 16, 0.15);
}

/* Content */
.dinner-feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.dinner-feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.dinner-feature-content h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #EFB810;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(239, 184, 16, 0.6);
    animation: dotPulseDinner 2s ease-in-out infinite;
}

@keyframes dotPulseDinner {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 184, 16, 0.6);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(239, 184, 16, 0.9);
        transform: translateY(-50%) scale(1.3);
    }
}

.dinner-feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #EFB810, rgba(239, 184, 16, 0.3));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.dinner-feature:hover .dinner-feature-content h3::after {
    width: 100%;
}

.dinner-feature-content p {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.9;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 0;
}

.dinner-feature:hover .dinner-feature-content p {
    color: #bbb;
    transform: translateX(5px);
}

/* Decorative quote marks for content */
.dinner-feature-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(239, 184, 16, 0.08);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.dinner-feature:hover .dinner-feature-content::before {
    color: rgba(239, 184, 16, 0.15);
    transform: scale(1.1);
}


/* Dinner Locations */
.dinner-locations {
    text-align: center;
    padding: 3.5rem;
    background: linear-gradient(135deg, #161b22 0%, #1a1f26 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    width: 100%;
}

.dinner-locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(239, 184, 16, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.dinner-locations:hover {
    border-color: rgba(239, 184, 16, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(239, 184, 16, 0.1);
    transform: translateY(-5px);
}

.dinner-locations h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.dinner-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
}

.locations-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.locations-grid span {
    color: #EFB810;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 0.75rem 1.5rem;
    background: rgba(239, 184, 16, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(239, 184, 16, 0.2);
    transition: all 0.4s ease;
    cursor: default;
}

.locations-grid span::before {
    content: '📍';
    margin-right: 8px;
    font-size: 0.9rem;
}

.locations-grid span:hover {
    background: rgba(239, 184, 16, 0.15);
    border-color: rgba(239, 184, 16, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 184, 16, 0.15);
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0a0d12 0%, #0d1117 50%, #0a0d12 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-content h2 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 30%, #EFB810 60%, #f5d060 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerCTA 4s linear infinite;
    position: relative;
}

@keyframes shimmerCTA {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.final-cta-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlinePulseCTA 2s ease-in-out infinite;
}

@keyframes underlinePulseCTA {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.7);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.final-cta-content p {
    color: #888;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
}

.final-cta-content p::before,
.final-cta-content p::after {
    content: '✦';
    color: rgba(239, 184, 16, 0.3);
    font-size: 0.8rem;
    margin: 0 0.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.final-cta-content p::after {
    animation-delay: 1s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Awesome Button Styles */
.final-cta-buttons .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.final-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    color: #0d1117;
    border: none;
    box-shadow: 
        0 5px 20px rgba(239, 184, 16, 0.4),
        0 0 40px rgba(239, 184, 16, 0.2);
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 
            0 5px 20px rgba(239, 184, 16, 0.4),
            0 0 40px rgba(239, 184, 16, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(239, 184, 16, 0.6),
            0 0 60px rgba(239, 184, 16, 0.3);
    }
}

.final-cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.final-cta-buttons .btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(239, 184, 16, 0.5),
        0 0 80px rgba(239, 184, 16, 0.3);
}

.final-cta-buttons .btn-primary:hover::before {
    left: 100%;
}

.final-cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.final-cta-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.2) 0%, rgba(239, 184, 16, 0.1) 100%);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.final-cta-buttons .btn-secondary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, transparent 40%, rgba(239, 184, 16, 0.5) 50%, transparent 60%);
    background-size: 300% 300%;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.final-cta-buttons .btn-secondary:hover {
    border-color: rgba(239, 184, 16, 0.5);
    color: #EFB810;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-buttons .btn-secondary:hover::before {
    width: 100%;
}

.final-cta-buttons .btn-secondary:hover::after {
    opacity: 1;
    animation: borderAnimateBtn 2s linear infinite;
}

@keyframes borderAnimateBtn {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-intro {
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-intro-left {
        flex: none;
    }
    
    .dinner-feature,
    .dinner-feature.reverse {
        flex-direction: column;
    }
    
    .dinner-feature img {
        flex: none;
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 5% 3rem;
    }
    
    .locations-grid {
        gap: 1.5rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}/* End custom CSS */