/* Kitchen Club Kavala - CSS */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #ffd700;
    --background: #0d0d0d;
    --foreground: #e8e3d5;
    --card: #141414;
    --border: #2d2d2d;
    --muted: #8c8c8c;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body { font-family: var(--body-font); background: var(--background); color: var(--foreground); line-height: 1.6; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s; }
#navbar.scrolled { background: rgba(13,13,13,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
#navbar .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo img { height: 56px; width: auto; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,227,213,0.7); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.phone-cta { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border: 1px solid rgba(255,215,0,0.4); border-radius: 9999px; color: var(--primary); font-size: 0.875rem; text-decoration: none; transition: all 0.3s; }
.phone-cta:hover { background: rgba(255,215,0,0.1); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--foreground); }
#mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: rgba(13,13,13,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; z-index: 999; }
#mobile-menu.active { display: flex; }
#mobile-menu a { font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,227,213,0.7); text-decoration: none; padding: 0.5rem 0; }
#mobile-menu a.mobile-phone { color: var(--primary); margin-top: 1rem; }

#hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://media.base44.com/images/public/69b2ede89917569d9596c0a2/9473710da_KC-BG.jpg'); background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.5), rgba(13,13,13,1)); }
.hero-content { position: relative; z-index: 10; max-width: 56rem; padding: 0 1.5rem; }
.hero-subtitle { font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,215,0,0.8); margin-bottom: 1.5rem; }
#hero h1 { font-family: var(--heading-font); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; color: var(--primary); line-height: 1.2; }
.hero-tagline { font-family: var(--heading-font); font-size: clamp(1.25rem, 3vw, 2rem); font-style: italic; color: rgba(232,227,213,0.7); margin-top: 1rem; }
.hero-description { font-size: 0.875rem; color: rgba(232,227,213,0.5); margin-top: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.btn-primary, .btn-secondary { padding: 0.875rem 2rem; border-radius: 9999px; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.btn-primary { background: var(--primary); color: var(--background); }
.btn-primary:hover { background: rgba(255,215,0,0.9); }
.btn-secondary { border: 1px solid rgba(232,227,213,0.3); color: var(--foreground); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(232,227,213,0.4); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-subtitle { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,215,0,0.7); margin-bottom: 1rem; }
.section-header h2 { font-family: var(--heading-font); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: var(--foreground); }
.divider { width: 4rem; height: 1px; background: rgba(255,215,0,0.4); margin: 1.5rem auto 0; }

.experiences-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.experience-card { position: relative; border-radius: 1rem; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.experience-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.7s; }
.experience-card:hover img { transform: scale(1.1); }
.experience-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(13,13,13,1), rgba(13,13,13,0.4), transparent); }
.experience-content h3 { font-family: var(--heading-font); font-size: 1.5rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.75rem; }
.experience-content p { font-size: 0.875rem; color: rgba(232,227,213,0.6); line-height: 1.6; }

.service-item { display: grid; grid-template-columns: 1fr; margin-bottom: 0; }
@media (min-width: 1024px) { .service-item { grid-template-columns: 1fr 1fr; } .service-item.reverse .service-image { order: 2; } .service-item.reverse .service-content { order: 1; } }
.service-image { position: relative; height: 400px; }
@media (min-width: 1024px) { .service-image { height: 500px; } }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-content { display: flex; flex-direction: column; justify-content: center; padding: 3rem 2rem; background: var(--card); }
@media (min-width: 1024px) { .service-content { padding: 5rem 4rem; } }
.service-content h3 { font-family: var(--heading-font); font-size: clamp(2rem, 3vw, 3rem); font-weight: 300; color: var(--foreground); margin-bottom: 1.5rem; line-height: 1.3; }
.service-divider { width: 4rem; height: 1px; background: rgba(255,215,0,0.6); margin-bottom: 1.5rem; }
.service-content p { font-size: 1rem; color: rgba(232,227,213,0.7); line-height: 1.7; }

.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 4rem; align-items: center; }
.philosophy-images { position: relative; }
.main-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 1rem; }
.secondary-img { display: none; }
@media (min-width: 768px) { .secondary-img { display: block; position: absolute; bottom: -1.5rem; right: -1.5rem; width: 12rem; height: 12rem; object-fit: cover; border-radius: 1rem; border: 4px solid var(--background); } }
.philosophy-content p { margin-bottom: 1.5rem; color: rgba(232,227,213,0.7); }
.philosophy-quote { font-family: var(--heading-font); font-size: 1.25rem; font-style: italic; color: rgba(255,215,0,0.8); margin: 2rem 0; }
.values { margin-top: 2rem; }
.value-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.value-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(255,215,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.value-item h4 { font-family: var(--heading-font); font-size: 1.125rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.25rem; }
.value-item p { font-size: 0.875rem; color: var(--muted); margin: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.map-container { height: 500px; border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { filter: invert(0.9) hue-rotate(180deg) saturate(0.3); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: rgba(255,215,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; transition: background 0.3s; }
.contact-item:hover .contact-icon { background: rgba(255,215,0,0.2); }
.contact-label { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.contact-item a, .contact-item p { font-size: 1rem; color: var(--foreground); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--primary); }
.social-links { margin-top: 1.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.3s; }
.social-icons a:hover { color: var(--primary); border-color: rgba(255,215,0,0.4); }
.online-ordering { margin-top: 1rem; padding: 1.5rem; border-radius: 1rem; background: var(--card); border: 1px solid var(--border); }
.order-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.order-buttons a { padding: 0.625rem 1.25rem; border-radius: 9999px; background: rgba(20,20,20,1); color: rgba(232,227,213,0.8); font-size: 0.875rem; text-decoration: none; transition: all 0.3s; }
.order-buttons a:hover { background: rgba(255,215,0,0.2); color: var(--primary); }

footer { border-top: 1px solid var(--border); background: rgba(20,20,20,0.3); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; padding: 4rem 2rem; }
.footer-col h3 { font-family: var(--heading-font); font-size: 1.5rem; font-weight: 600; color: var(--primary); margin-bottom: 0.75rem; }
.footer-col h3 span { color: rgba(232,227,213,0.5); font-style: italic; font-weight: 300; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(232,227,213,0.6); margin-bottom: 1.25rem; }
.footer-col p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.5rem; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--muted); text-decoration: none; margin-bottom: 0.75rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { display: inline-flex; color: var(--muted); }
.footer-social a:hover { color: var(--primary); }
.footer-bottom { padding: 2rem; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }

@media (max-width: 1024px) { .nav-links, .phone-cta { display: none; } .mobile-toggle { display: flex; } }
@media (max-width: 768px) { .section { padding: 4rem 0; } .experiences-grid { grid-template-columns: 1fr; } .service-image { height: 300px; } .contact-grid { grid-template-columns: 1fr; } .map-container { height: 300px; } }