/* ===================================
   Kelly's Soul Food Kitchen & Catering
   Clean Minimalist — Plum + Amber
   =================================== */

/* CSS Custom Properties */
:root {
    --plum-deep: #4A1942;
    --plum-mid: #6B2D5B;
    --plum-light: #8B4578;
    --plum-pale: #F5E6F0;
    --plum-ghost: #FDF5FA;
    
    --amber-deep: #B8600A;
    --amber-mid: #D4841C;
    --amber-light: #E8A84C;
    --amber-pale: #FFF3E0;
    --amber-ghost: #FFFAF5;
    
    --ink: #1A1A1A;
    --ink-light: #3D3D3D;
    --ink-muted: #6B6B6B;
    --ink-faint: #9A9A9A;
    
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #FDF8F4;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-mid);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1px;
    background: var(--amber-mid);
}

/* Section Title */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    margin-bottom: var(--space-md);
    color: var(--plum-deep);
    letter-spacing: -0.01em;
}

/* Lead */
.lead {
    font-size: 1.1rem;
    color: var(--ink-light);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-deep);
    color: var(--white);
    border: 1.5px solid var(--plum-deep);
}

.btn-primary:hover {
    background: var(--plum-mid);
    border-color: var(--plum-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 66, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--plum-deep);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(74, 25, 66, 0.08);
    padding: var(--space-sm) 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.header.scrolled .logo-text {
    color: var(--plum-deep);
}

.header.scrolled .logo-sub {
    color: var(--ink-muted);
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-menu a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.header.scrolled .nav-menu a {
    color: var(--ink-muted);
}

.header.scrolled .nav-menu a:hover {
    color: var(--plum-deep);
}

.header.scrolled .nav-menu a::after {
    background: var(--plum-mid);
}

.nav-toggle {
    display: none;
    padding: 0.5rem;
    color: var(--white);
    transition: color var(--transition);
}

.header.scrolled .nav-toggle {
    color: var(--plum-deep);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(74, 25, 66, 0.88) 0%,
        rgba(107, 45, 91, 0.75) 50%,
        rgba(26, 26, 26, 0.82) 100%
    );
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: var(--space-2xl) var(--space-lg);
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    animation: bounce 2s ease infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.15);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: var(--space-lg) 0;
}

.about-content p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(74, 25, 66, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--plum-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

/* Menu Section */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 480px;
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.menu-cat-btn {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(74, 25, 66, 0.15);
    border-radius: 100px;
    transition: all var(--transition);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: var(--plum-deep);
    color: var(--white);
    border-color: var(--plum-deep);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-lg);
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(74, 25, 66, 0.06);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.1);
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.menu-item-content {
    padding: var(--space-md);
}

.menu-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.menu-item-header h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--plum-deep);
}

.menu-item-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-deep);
    background: var(--amber-pale);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
}

.menu-item-content p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.82rem;
    color: var(--ink-faint);
    font-style: italic;
}

/* Catering Section */
.catering {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.catering-content {
    padding: var(--space-lg) 0;
}

.catering-content p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
}

.catering-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.catering-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.92rem;
    color: var(--ink-light);
}

.catering-feature svg {
    color: var(--amber-mid);
    flex-shrink: 0;
}

.catering-images {
    position: relative;
    height: 550px;
}

.catering-images img:first-child {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 75%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.catering-images img:last-child {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.15);
    border: 4px solid var(--white);
}

/* Visit Section */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit-info {
    padding: var(--space-lg) 0;
}

.visit-info p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit-detail svg {
    color: var(--plum-mid);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.visit-detail h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.3rem;
}

.visit-detail p,
.visit-detail a {
    font-size: 0.95rem;
    color: var(--ink-light);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--plum-deep);
}

.visit-map {
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(74, 25, 66, 0.08);
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--plum-deep);
    color: var(--white);
}

.contact .section-tag {
    color: var(--amber-light);
}

.contact .section-tag::before {
    background: var(--amber-light);
}

.contact .section-title {
    color: var(--white);
}

.contact .lead {
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.contact-method:hover {
    color: var(--amber-light);
}

.contact-method svg {
    color: var(--amber-light);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--amber-mid);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-sm);
    color: #81C784;
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--plum-deep);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-2xl);
    transition: right var(--transition);
    z-index: 1001;
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1rem;
}

.nav-menu a::after {
    background: var(--amber-light) !important;
}

.nav-toggle {
    display: block;
    z-index: 1002;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .catering-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 400px;
        order: -1;
    }
    
    .catering-images {
        height: 400px;
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-images {
        height: 320px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .catering-images {
        height: 300px;
    }
    
    .visit-map {
        height: 300px;
    }
    
    .contact-form-wrapper {
        padding: var(--space-lg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .about-images {
        height: 260px;
    }
    
    .about-img-main {
        width: 85%;
    }
    
    .about-img-secondary {
        width: 60%;
    }
    
    .catering-images {
        height: 260px;
    }
    
    .catering-images img:first-child {
        width: 80%;
    }
    
    .catering-images img:last-child {
        width: 65%;
    }
}
