/* ===== VARIABLES ===== */
:root {
    --dark-purple: #2d1545;
    --purple-dark: #3d1a55;
    --magenta: #d32d8e;
    --magenta-light: #e94aa3;
    --lime-green: #5fd35f;
    --lime-bright: #73ff40;
    --gold: #ffb700;
    --orange: #ff6b35;
    --white: #ffffff;
    --light-grey: #e8e8e8;
    --text-muted: #b8b8b8;

    --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--dark-purple);
    color: var(--white);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(211, 45, 142, 0.03) 2px,
            rgba(211, 45, 142, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(211, 45, 142, 0.03) 2px,
            rgba(211, 45, 142, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: var(--magenta);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--purple-dark);
    border-bottom: 3px solid var(--magenta);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(61, 26, 85, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--lime-green);
    transition: var(--transition);
    z-index: 1001;
}

.nav-brand:hover {
    transform: translateX(3px);
}

.nav-logo {
    height: 55px;
    width: auto;
    border-radius: 4px;
    transition: var(--transition);
    mix-blend-mode: screen;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--lime-green);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--lime-green);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 3px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(211, 45, 142, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--magenta-light) 0%, var(--orange) 100%);
    box-shadow: 0 6px 25px rgba(211, 45, 142, 0.5);
    transform: translateY(-2px);
}

.nav-btn::after {
    display: none;
}

/* ===== BUTTONS ===== */
.cta-btn,
.cta-btn-large {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 3px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(211, 45, 142, 0.3);
}

.cta-btn:hover,
.cta-btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(211, 45, 142, 0.5);
}

.cta-btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.form-submit {
    background: var(--lime-green);
    color: var(--dark-purple);
    border: none;
    padding: 1rem 2rem;
    border-radius: 3px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.form-submit:hover {
    background: var(--lime-bright);
    transform: scale(1.02);
}

/* ===== HERO ===== */
.hero {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(211, 45, 142, 0.12) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    border-radius: 50%;
    z-index: -1;
    animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content > p {
    font-size: 1.35rem;
    color: var(--lime-green);
    margin-bottom: 2.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.logo-display {
    position: relative;
    animation: pulse-float 5s ease-in-out infinite;
}

.logo-display::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(95, 211, 95, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.logo-display img {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 20px 50px rgba(211, 45, 142, 0.4));
}

@keyframes pulse-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.03); }
}

/* ===== BRINGING PHILLY SECTION ===== */
.bringing-section {
    padding: 6rem 0;
    background: #2a2a2a;
    border-top: 3px solid var(--lime-green);
}

.bringing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bringing-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bringing-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 3px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.bringing-image img:hover {
    filter: drop-shadow(0 25px 60px rgba(95, 211, 95, 0.25));
    transform: scale(1.02);
}

.bringing-content {
    position: relative;
}

.bringing-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 60px;
    background: var(--lime-green);
    border-radius: 2px;
}

.bringing-section h2 {
    color: var(--lime-green);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.bringing-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ===== FOOD SECTION ===== */
.food-section {
    padding: 6rem 0;
    border-top: 3px solid var(--orange);
    background: var(--dark-purple);
}

.food-section h2 {
    text-align: center;
    color: var(--orange);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.food-card {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--magenta);
}

.food-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 21, 69, 0.95) 0%, rgba(45, 21, 69, 0.6) 40%, transparent 70%);
    pointer-events: none;
    z-index: 3;
}

.food-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.food-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    padding: 2rem;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 4;
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    border-color: var(--orange);
}

.food-card:hover img {
    transform: scale(1.05);
}

.food-card:hover .food-overlay {
    transform: translateY(0);
}

.food-overlay h3 {
    color: var(--lime-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.food-overlay p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== MEET SECTION ===== */
.meet-section {
    padding: 6rem 0;
    background: #2a2a2a;
    border-top: 3px solid var(--lime-green);
}

.meet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.meet-content {
    position: relative;
}

.meet-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 80px;
    background: var(--magenta);
    border-radius: 2px;
}

.meet-section h2 {
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

.meet-intro {
    font-size: 1.2rem;
    color: var(--lime-green);
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.meet-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.meet-closer {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1.1rem !important;
}

.meet-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    border: 3px solid var(--magenta);
    border-radius: 3px;
    padding: 1rem;
    background: rgba(211, 45, 142, 0.05);
    transition: var(--transition);
}

.image-frame:hover {
    transform: scale(1.02);
    border-color: var(--lime-green);
    box-shadow: 0 20px 50px rgba(211, 45, 142, 0.3);
}

.image-frame img {
    width: 100%;
    max-width: 400px;
    border-radius: 3px;
    display: block;
}

/* ===== WHAT SECTION ===== */
.what-section {
    padding: 6rem 0;
    border-top: 3px solid var(--magenta);
    background: linear-gradient(135deg, var(--purple-dark) 0%, rgba(211, 45, 142, 0.08) 100%);
}

.what-section h2 {
    text-align: center;
    color: var(--magenta);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.what-card {
    background: rgba(61, 26, 85, 0.6);
    border: 2px solid var(--lime-green);
    border-radius: 3px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.what-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 211, 95, 0.15), transparent);
    transition: var(--transition);
}

.what-card:hover::before {
    left: 100%;
}

.what-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(211, 45, 142, 0.25);
}

.what-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.what-card h3 {
    color: var(--lime-green);
    margin-bottom: 1rem;
}

.what-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: #2a2a2a;
    border-top: 3px solid var(--gold);
}

.testimonials-section h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(211, 45, 142, 0.15) 0%, rgba(255, 183, 0, 0.08) 100%);
    border: 2px solid var(--magenta);
    border-radius: 3px;
    padding: 3rem;
    position: relative;
}

.quote-icon {
    font-size: 6rem;
    color: var(--lime-green);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    border-top: 2px solid var(--lime-green);
    padding-top: 1.5rem;
}

.author-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--lime-green);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.author-event {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, rgba(95, 211, 95, 0.08) 100%);
    border-top: 3px solid var(--lime-green);
}

.events-section h2 {
    text-align: center;
    color: var(--lime-green);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.event-card {
    background: rgba(61, 26, 85, 0.7);
    border: 2px solid var(--magenta);
    border-radius: 3px;
    padding: 1.75rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--white);
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.event-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
    border-color: var(--lime-green);
    box-shadow: 0 12px 35px rgba(211, 45, 142, 0.4);
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: 6rem 0;
    border-top: 3px solid var(--magenta);
    background: var(--dark-purple);
}

.booking-section h2 {
    text-align: center;
    color: var(--magenta);
    margin-bottom: 4rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.booking-step {
    background: linear-gradient(135deg, rgba(211, 45, 142, 0.15) 0%, transparent 100%);
    border: 2px solid var(--lime-green);
    border-radius: 3px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.booking-step:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(95, 211, 95, 0.2);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(211, 45, 142, 0.4);
}

.booking-step h3 {
    color: var(--lime-green);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.booking-step p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-final .cta-btn-large {
    background: var(--white);
    color: var(--magenta);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-final .cta-btn-large:hover {
    background: var(--lime-green);
    color: var(--dark-purple);
    transform: translateY(-4px) scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    border-top: 3px solid var(--lime-green);
    background: #2a2a2a;
}

.contact-section h2 {
    text-align: center;
    color: var(--lime-green);
    margin-bottom: 4rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method {
    background: linear-gradient(135deg, rgba(211, 45, 142, 0.15) 0%, transparent 100%);
    border: 2px solid var(--magenta);
    border-radius: 3px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-6px);
    border-color: var(--lime-green);
    box-shadow: 0 15px 40px rgba(211, 45, 142, 0.25);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--lime-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--lime-green);
    transform: scale(1.05);
}

.contact-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
}

.social-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-top: 2px solid rgba(211, 45, 142, 0.3);
    border-bottom: 2px solid rgba(211, 45, 142, 0.3);
}

.social-section h3 {
    color: var(--magenta);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.social-link {
    background: rgba(61, 26, 85, 0.6);
    border: 2px solid var(--lime-green);
    border-radius: 3px;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(211, 45, 142, 0.3);
}

.social-icon {
    font-size: 1.5rem;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h3 {
    color: var(--magenta);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(61, 26, 85, 0.6);
    border: 2px solid var(--magenta);
    border-radius: 3px;
    padding: 1rem;
    color: var(--white);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--lime-green);
    background: rgba(61, 26, 85, 0.8);
    box-shadow: 0 0 20px rgba(95, 211, 95, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--purple-dark);
    border-top: 3px solid var(--magenta);
    padding: 3rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

.footer-brand p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--lime-green);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--lime-green);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-social a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--magenta);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(211, 45, 142, 0.3);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .nav-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .logo-display img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile Improvements */
    .navbar {
        padding: 1rem 0;
        position: relative;
        width: 100%;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-brand {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }

    .nav-logo {
        height: 45px;
    }

    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Menu Styles */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 280px;
        height: 100vh;
        background: rgba(45, 21, 69, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-left: 3px solid var(--magenta);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: center;
        border-bottom: 2px solid rgba(211, 45, 142, 0.3);
        transition: var(--transition);
    }

    .nav-menu a:hover {
        background: rgba(211, 45, 142, 0.2);
        border-bottom-color: var(--lime-green);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
        width: auto;
        border: none;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        width: 100%;
        overflow-x: hidden;
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        animation: fade-in 0.3s ease;
    }

    @keyframes fade-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Hero Mobile Improvements */
    .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
        min-height: auto;
        text-align: center;
    }

    .hero::before {
        width: 300px;
        height: 300px;
        top: 5%;
        right: 50%;
        transform: translateX(50%);
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content > p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .hero-graphic {
        order: -1;
    }

    .logo-display {
        margin: 0 auto;
    }

    .logo-display img {
        max-width: 280px;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    /* Bringing Section Mobile Improvements */
    .bringing-section {
        padding: 4rem 0;
    }

    .bringing-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bringing-image {
        order: -1;
    }

    .bringing-image img {
        max-width: 100%;
        width: 100%;
    }

    .bringing-accent {
        width: 60px;
        height: 5px;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
    }

    .bringing-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .bringing-section p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .meet-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .meet-image {
        order: -1;
    }

    .meet-accent {
        width: 100%;
        height: 5px;
        top: -1.5rem;
        left: 0;
    }

    .mobile-hidden {
        display: none;
    }

    .food-gallery {
        grid-template-columns: 1fr;
    }

    .food-card img {
        height: 300px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Container & Typography */
    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    /* Navigation Ultra-Mobile */
    .navbar {
        padding: 0.85rem 0;
        position: relative;
    }

    .nav-wrapper {
        padding: 0 1.25rem;
    }

    .nav-brand {
        font-size: 1.25rem;
        gap: 0.65rem;
    }

    .nav-logo {
        height: 42px;
    }

    .mobile-menu-toggle {
        padding: 0.35rem;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 2.5px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.7rem 1.25rem;
    }

    .nav-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Hero Ultra-Mobile */
    .hero {
        padding: 2rem 1.25rem;
        gap: 2rem;
    }

    .hero::before {
        width: 250px;
        height: 250px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .logo-display img {
        max-width: 240px;
    }

    .cta-btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }

    /* Bringing Section Ultra-Mobile */
    .bringing-section {
        padding: 3rem 0;
    }

    .bringing-container {
        gap: 2rem;
    }

    .bringing-section h2 {
        font-size: 1.75rem;
    }

    .bringing-section p {
        font-size: 1rem;
    }

    /* Buttons */
    .cta-btn-large {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    /* Other Sections */
    .what-card,
    .booking-step {
        padding: 1.5rem;
    }

    .food-card img {
        height: 250px;
    }

    .testimonial-block {
        padding: 2rem 1.25rem;
    }

    .quote-icon {
        font-size: 4rem;
        top: 0.5rem;
        left: 0.75rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 1.1rem;
    }

    .footer-logo {
        height: 45px;
    }

    .section-intro {
        font-size: 1rem;
    }
}

/* ===== MOBILE STICKY FOOTER CTA ===== */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    }

    .mobile-cta-call,
    .mobile-cta-book {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.1rem;
        letter-spacing: 2px;
        text-decoration: none;
        transition: filter 0.2s ease;
    }

    .mobile-cta-call {
        background: var(--dark-purple);
        color: var(--lime-green);
        border-top: 3px solid var(--lime-green);
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-cta-book {
        background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
        color: var(--white);
        border-top: 3px solid var(--magenta);
    }

    .mobile-cta-call:active,
    .mobile-cta-book:active {
        filter: brightness(1.15);
    }

    /* Push footer content up so it's not hidden behind the CTA bar */
    .footer {
        padding-bottom: 5rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.15s !important;
    }
}
