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

html {
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

/* Normalize for cross-browser consistency */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* Nailed The Occasion Flash Logo */
.nto-flash-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.nto-flash-logo .flash-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    opacity: 0;
    animation: flashIn 0.1s ease-out 0.5s forwards;
    white-space: nowrap;
}

.nto-flash-logo .nailed {
    color: #b76e79;
    text-shadow: 0 0 10px #b76e79, 0 0 20px #b76e79;
}

.nto-flash-logo .the {
    color: #9b59b6;
    margin: 0 0.2rem;
    text-shadow: 0 0 10px #9b59b6;
}

.nto-flash-logo .occasion {
    color: #b76e79;
    text-shadow: 0 0 10px #b76e79, 0 0 20px #b76e79;
}

@keyframes flashIn {
    0% {
        opacity: 0;
        transform: scale(1.5);
        filter: brightness(3);
    }
    50% {
        opacity: 1;
        filter: brightness(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

.nto-flash-logo .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #b76e79;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px #b76e79, 0 0 12px #f4c4c4;
    animation: sparkle 1.5s ease-in-out infinite;
}

.nto-flash-logo .sparkle::before,
.nto-flash-logo .sparkle::after {
    content: '';
    position: absolute;
    background: #b76e79;
}

.nto-flash-logo .sparkle::before {
    width: 1px;
    height: 8px;
    left: 1.5px;
    top: -2px;
}

.nto-flash-logo .sparkle::after {
    width: 8px;
    height: 1px;
    left: -2px;
    top: 1.5px;
}

.nto-flash-logo .sparkle:nth-child(1) { top: -8px; left: 5%; animation-delay: 0.8s; }
.nto-flash-logo .sparkle:nth-child(2) { top: -5px; right: 10%; animation-delay: 1.2s; }
.nto-flash-logo .sparkle:nth-child(3) { bottom: -8px; left: 30%; animation-delay: 1.5s; }
.nto-flash-logo .sparkle:nth-child(4) { top: 50%; left: -10px; animation-delay: 1.8s; }
.nto-flash-logo .sparkle:nth-child(5) { top: 50%; right: -10px; animation-delay: 2s; }
.nto-flash-logo .sparkle:nth-child(6) { bottom: -5px; right: 25%; animation-delay: 2.3s; }
.nto-flash-logo .sparkle:nth-child(7) { top: -10px; left: 50%; animation-delay: 1s; }
.nto-flash-logo .sparkle:nth-child(8) { bottom: -10px; right: 5%; animation-delay: 1.7s; }

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

:root {
    --primary-dark: #0f0f1e;
    --primary: #1a1a2e;
    --secondary: #16213e;
    --gold: #b76e79;
    --gold-light: #e8a0a0;
    --gold-glow: rgba(183, 110, 121, 0.3);
    --red: #c41e3a;
    --red-light: #e94560;
    --accent: #c41e3a;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 8px 24px rgba(183, 110, 121, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth fade-in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Utility class for animated sections */
.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Header Top Bar */
.header-top {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    font-size: 0.85rem;
}

.header-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-hours {
    color: var(--gold);
    font-weight: 500;
}

/* Main Header */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0.75rem;
    position: relative;
    border-radius: 6px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--gold-glow);
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-links a:hover::after {
    width: 80%;
}

.book-online-nav {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.book-online-nav::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.5s ease;
}

.book-online-nav:hover::before {
    left: 100%;
}

.book-online-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    padding: 0.75rem 2rem;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.hero-content {
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    width: 100%;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    width: 100%;
    font-weight: 400;
}

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

.hero-sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-online-large {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-dark);
    padding: 3rem 2rem;
    text-decoration: none;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 250px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.book-online-large:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--gold);
}

.book-icon {
    font-size: 3rem;
}

.book-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.book-online {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.cta-button.book-online:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.cta-button.host-party {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.host-party:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.5);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.service-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.duration {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.price {
    display: inline-block;
    font-weight: 700;
    color: var(--red);
    font-size: 1.1rem;
    padding: 0.4rem 1rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50px;
}

/* Party Section */
.party {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.party-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.party-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.party-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    background: var(--bg-white);
    padding: 3rem 2rem;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

.about-content p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-content h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .specialty-list {
    text-align: left;
    max-width: 700px;
    margin: 0.75rem auto 1rem;
    list-style: none;
    padding: 0;
}

.about-content .specialty-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.about-content .specialty-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-content .specialty-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-content .signature {
    font-style: italic;
    margin-top: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-light);
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

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

.gallery-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
}

.photo-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.photo-loading-container {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.photo-loading-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.photo-loading-bar-container {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.photo-loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.photo-loading-percentage {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.photo-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 1rem !important;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    width: 100%;
    grid-auto-rows: 1fr;
}

.photo-grid > * {
    min-width: 0;
    min-height: 0;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    cursor: pointer;
    min-height: 0;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.photo-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.2s ease-in;
    display: block;
    position: relative;
    z-index: 1;
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
}

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

.gallery-footer {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 0;
}

.gallery-footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.gallery-footer a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.gallery-footer a:hover {
    color: var(--red-light);
    text-decoration: underline;
}

.photo-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* Gallery lightbox (full-size view on same page) */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: rgba(15, 12, 25, 0.92);
    box-sizing: border-box;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-img {
    max-width: min(96vw, 1200px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    cursor: default;
}

.gallery-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.05);
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 2rem 2rem;
    color: white;
}

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

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.booking-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-white);
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-item {
    background: var(--bg-white);
    padding: 1.25rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--gold);
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-item p strong {
    color: var(--red);
    font-size: inherit;
    font-weight: 600;
}

.contact-item .hours-text {
    color: var(--red);
}

.contact-item a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--red-light);
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--gold);
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--gold-light);
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--gold-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-sidebar {
        order: -1;
    }
    
    .book-online-large {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 180px;
    }
    
    .header-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0 1.5rem;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .book-online-nav {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .services,
    .contact,
    .about,
    .gallery,
    .party,
    .booking {
        padding: 4rem 1.5rem;
    }
    
    .services h2,
    .contact h2,
    .about-content h2,
    .gallery h2,
    .party-content h2,
    .booking-content h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Acuity Scheduling Embed */
.acuity-embed-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
}

.acuity-embed-container iframe {
    display: block;
    border: none;
}
