/* ============================================
   EXCLUSIVE CATERING — Apple-inspired Design
   ============================================ */

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

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --gold: #c9a96e;
    --gold-light: #dfc08a;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-400: #86868b;
    --gray-600: #424245;
    --gray-800: #1d1d1f;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --blur: saturate(180%) blur(20px);
}

html {
    font-size: 16px;
    scroll-behavior: auto; /* JS handles smooth scroll */
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Cursor Glow — follows mouse on dark sections */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
    mix-blend-mode: screen;
}

.cursor-glow.visible {
    opacity: 1;
}

/* Intro Progress Bar */
.intro-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 10001;
    width: 0;
    animation: introProgress 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes introProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

ul { list-style: none; }

/* ============================================
   NAVBAR — Frosted glass
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    height: 56px;
    display: flex;
    align-items: center;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, background 0.4s var(--transition), box-shadow 0.4s var(--transition), border-bottom 0.4s var(--transition);
}

.navbar.show {
    opacity: 1;
    pointer-events: auto;
}

.navbar.scrolled {
    background: rgba(250, 250, 250, 0.65);
    backdrop-filter: saturate(200%) blur(24px);
    -webkit-backdrop-filter: saturate(200%) blur(24px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-dropdown-trigger,
.navbar.scrolled .nav-actions button {
    color: var(--gray-800);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    gap: 6px;
    align-items: baseline;
    color: var(--white);
    transition: color 0.3s;
}

.logo-exclusive {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
}

.logo-catering {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--transition);
}

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

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}

.nav-dropdown-trigger svg {
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateX(-50%) translateY(16px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-800) !important;
    border-radius: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--gray-100);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
}

.navbar.scrolled .lang-toggle {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: var(--gray-800);
}

.lang-toggle:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.admin-trigger {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.admin-trigger:hover {
    color: var(--gold);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .nav-hamburger span {
    background: var(--gray-800);
}

/* ============================================
   HERO — Full-screen parallax
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center 30%;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.hero-line {
    font-family: var(--font-serif);
    font-size: clamp(48px, 10vw, 110px);
    font-weight: 700;
    letter-spacing: 8px;
    line-height: 1;
}

.hero-line-outline {
    color: var(--white) !important;
    -webkit-text-stroke: 0;
}

.hero-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 48px;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.hero-scroll:hover { color: var(--gold-light); }

.hero-scroll svg {
    animation: bobble 2s ease-in-out infinite;
}

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

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Reveal animation with stagger */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

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

/* Stagger delays for grouped elements */
.reveal.stagger-1 { transition-delay: 0.05s; }
.reveal.stagger-2 { transition-delay: 0.1s; }
.reveal.stagger-3 { transition-delay: 0.15s; }
.reveal.stagger-4 { transition-delay: 0.2s; }
.reveal.stagger-5 { transition-delay: 0.25s; }
.reveal.stagger-6 { transition-delay: 0.3s; }
.reveal.stagger-7 { transition-delay: 0.35s; }
.reveal.stagger-8 { transition-delay: 0.4s; }

/* Word reveal animation for titles */
.word-reveal {
    display: inline-block;
    overflow: hidden;
}

.word-reveal .word {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.word-reveal.visible .word {
    transform: translateY(0);
}

/* ============================================
   POSTS SECTION
   ============================================ */
.posts-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.post-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.post-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-body {
    padding: 28px;
}

.post-card-date {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.post-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-card-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.post-delete-btn {
    margin-top: 12px;
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s;
}

.post-delete-btn:hover { background: #b02a37; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-img-main {
    grid-column: 1 / -1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    perspective: 800px;
    transform-style: preserve-3d;
}

.about-img-main:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s var(--transition);
}

.about-img-main:hover img { transform: scale(1.03); }

.about-img-secondary {
    grid-column: 1 / -1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-img-secondary img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s var(--transition);
}

.about-img-secondary:hover img { transform: scale(1.03); }

.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }

.about-subtitle {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ============================================
   QUOTE PARALLAX
   ============================================ */
.quote-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center 5%;
    will-change: transform;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--gold);
    line-height: 0.5;
    display: block;
    margin-bottom: 20px;
}

.quote-content blockquote p {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
}

.quote-content cite {
    display: block;
    margin-top: 24px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold-light);
    font-style: normal;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
    padding: 120px 0;
    background: var(--gray-100);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.experience-education .section-tag,
.experience-work .section-tag { text-align: left; }

.experience-education .section-title,
.experience-work .section-title { text-align: left; font-size: 36px; }

.timeline-item {
    position: relative;
    padding: 28px 0 28px 28px;
    border-left: 2px solid var(--gray-200);
    margin-top: 20px;
    transition: border-color 0.3s;
}

.timeline-item:hover {
    border-left-color: var(--gold);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 34px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    transition: border-color 0.3s, background 0.3s;
}

.timeline-item:hover::before {
    border-color: var(--gold);
    background: var(--gold);
}

.timeline-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.timeline-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    font-style: italic;
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}

.timeline-item ul {
    margin-top: 8px;
}

.timeline-item li {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.timeline-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
    padding: 20px 0;
    overflow: hidden;
    background: var(--gold);
}

.gallery-track {
    display: flex;
    gap: 16px;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s var(--transition);
    image-rendering: high-quality;
}

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

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.services-grid .service-card {
    display: flex;
    flex-direction: column;
}

.services-grid .service-card p {
    flex: 1;
}

.services-dynamic {
    margin-top: 28px;
}

.service-card {
    background: var(--gray-100);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card:not(.service-card-soon):hover {
    border-color: rgba(201,169,110,0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, #b8935a 100%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 24px;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(201,169,110,0.3); }
.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p { color: var(--white); position: relative; z-index: 1; }
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-icon {
    margin-bottom: 20px;
    color: var(--gold);
    transition: color 0.3s;
}

.service-icon svg {
    stroke: var(--gold);
    transition: stroke 0.3s;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-card .service-price {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.service-card .service-delete-btn {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    background: rgba(220,53,69,0.9);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

/* Service card link */
.service-card-link {
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.service-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

/* Coming Soon badge */
.service-badge {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gray-400);
    padding: 6px 14px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
    align-self: center;
}

.service-card-soon {
    opacity: 0.7;
    align-items: center;
    text-align: center;
}

.service-card-soon:hover::before {
    opacity: 0 !important;
}

.service-card-soon:hover {
    transform: none;
    box-shadow: none;
    cursor: default;
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-placeholder {
    text-align: center;
    font-size: 16px;
    color: var(--gray-400);
    font-style: italic;
    padding: 60px 0;
}

.service-card-img {
    width: calc(100% + 64px);
    margin: -40px -32px 20px;
    height: 180px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    padding: 120px 0;
    background: var(--gray-100);
}

.reviews-scroll-wrapper {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 64px;
    width: max-content;
    will-change: transform;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s var(--transition), box-shadow 0.3s;
    flex-shrink: 0;
    width: 340px;
}

.review-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    margin-top: -8px;
    margin-bottom: 8px;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.review-name {
    font-weight: 700;
    font-size: 16px;
}

.review-date {
    font-size: 12px;
    color: var(--gray-400);
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.review-delete-btn {
    margin-top: 12px;
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s;
}

.review-delete-btn:hover { background: #b02a37; }

/* Review Form */
.review-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.review-form-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 32px;
}

.review-form {
    text-align: left;
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.star-rating {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.star {
    font-size: 28px;
    color: var(--gray-200);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.star:hover,
.star.active {
    color: var(--gold);
    transform: scale(1.15);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact-parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center 10%;
    will-change: transform;
    transform: scaleX(-1);
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; color: var(--white); }

.contact-detail {
    margin-bottom: 16px;
}

.contact-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-detail a {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s;
}

.contact-detail a:hover { color: var(--gold-light); }

.contact-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 24px;
}

.contact-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 28px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s;
}

.contact-instagram:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.15);
    color: var(--gold-light);
}

.contact-form {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 40px;
}

.contact-form .admin-field label {
    color: rgba(255,255,255,0.7);
}

.contact-form .admin-field input,
.contact-form .admin-field textarea {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: var(--white) !important;
}

.contact-form .admin-field input:focus,
.contact-form .admin-field textarea:focus {
    border-color: var(--gold) !important;
    background: rgba(255,255,255,0.12) !important;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.5);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--black));
    pointer-events: none;
}

.footer-container {
    text-align: center;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .logo-exclusive,
.footer-brand .logo-catering {
    color: var(--white);
    font-size: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--gold-light);
    margin-top: 6px;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

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

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 12px;
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
}

/* ============================================
   ADMIN PANEL — Slide from right
   ============================================ */
.admin-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
}

.admin-panel.open { pointer-events: all; }

.admin-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s;
}

.admin-panel.open .admin-panel-overlay { opacity: 1; }

.admin-panel-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 40px 32px 100px;
}

.admin-panel.open .admin-panel-content { transform: translateX(0); }

.admin-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-400);
    transition: color 0.3s;
}

.admin-close:hover { color: var(--gray-800); }

#adminLoginForm h3,
#adminDashboard h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 32px;
}

.admin-field {
    margin-bottom: 20px;
}

.admin-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.admin-field input,
.admin-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-sans);
    background: var(--gray-100);
    color: var(--gray-800);
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}

.admin-field input:focus,
.admin-field textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.btn-admin-login,
.btn-admin-action,
.btn-submit-review {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.3s;
    background: var(--gray-800);
    color: var(--white);
}

.btn-admin-login:hover,
.btn-admin-action:hover,
.btn-submit-review:hover {
    background: var(--gold);
}

.btn-admin-logout {
    background: none;
    border: 1px solid var(--gray-200);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-400);
    transition: all 0.3s;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.btn-admin-logout:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.admin-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 12px;
    min-height: 20px;
}

.admin-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.admin-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray-400);
    font-family: var(--font-sans);
}

.admin-tab.active {
    background: var(--white);
    color: var(--gray-800);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

/* Dashboard Stats */
/* File Upload */
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    font-size: 14px;
    color: var(--gray-400);
}

.file-upload-label:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.file-upload-input {
    display: none;
}

.upload-preview {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 12px;
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.dash-stat-card {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
}

.dash-stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
    margin-bottom: 6px;
}

.dash-stat-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
}

.dash-chart-wrapper {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 20px;
}

.dash-chart-wrapper h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.admin-list {
    margin-top: 24px;
}

.admin-list-item {
    padding: 16px;
    background: var(--gray-100);
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
}

.admin-list-item h5 {
    font-size: 15px;
    margin-bottom: 6px;
}

.admin-list-item p {
    font-size: 13px;
    color: var(--gray-600);
}

.admin-list-item .admin-delete-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc3545;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.admin-list-item .admin-delete-btn:hover { background: #b02a37; }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-800);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s var(--transition);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .experience-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Mobile navbar - compact logo */
    .nav-logo {
        gap: 4px;
    }

    .logo-exclusive {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .logo-catering {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(250,250,250,0.95);
        backdrop-filter: var(--blur);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-links.open a,
    .nav-links.open .nav-dropdown-trigger {
        color: var(--gray-800);
        font-size: 16px;
    }

    /* Mobile dropdown - inline instead of absolute */
    .nav-links.open .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links.open .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 4px 0 0 16px;
        backdrop-filter: none;
        min-width: auto;
    }

    .nav-links.open .nav-dropdown-menu a {
        font-size: 14px;
        padding: 8px 0;
        color: var(--gray-600) !important;
    }

    .hero-line { letter-spacing: 4px; }

    /* Stats centering */
    .about-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .stat {
        min-width: 120px;
    }

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

    .gallery-item { width: 240px; height: 300px; }

    .services-grid { grid-template-columns: 1fr; }

    /* Admin panel mobile scroll fix */
    .admin-panel-content {
        width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .navbar { padding: 0 12px; }
    .container { padding: 0 16px; }

    .logo-exclusive {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .logo-catering {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .lang-toggle {
        padding: 4px 8px;
        font-size: 10px;
    }

    .about { padding: 80px 0; }
    .experience { padding: 80px 0; }
    .services { padding: 80px 0; }
    .reviews { padding: 80px 0; }
    .contact { padding: 80px 0; }
    .posts-section { padding: 80px 0; }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-line {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .hero-name {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .dash-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dash-stat-value {
        font-size: 24px;
    }
}

/* ============================================
   INTRO / PRELOADER
   ============================================ */
.intro {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.intro-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-bg.reveal {
    opacity: 0;
}

/* ============================================
   PWA INSTALL BANNER
   ============================================ */
.pwa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s var(--transition);
}

.pwa-banner.show {
    transform: translateY(0);
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gray-800);
    color: var(--white);
    padding: 14px 20px;
    margin: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.pwa-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.pwa-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pwa-banner-text strong {
    font-size: 14px;
}

.pwa-banner-text span {
    font-size: 12px;
    color: var(--gray-400);
}

.pwa-banner-install {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.3s;
    flex-shrink: 0;
}

.pwa-banner-install:hover {
    background: var(--gold-light);
}

.pwa-banner-close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}

/* Intro: hero elements hidden initially via CSS to prevent flash */
.hero-subtitle,
.hero-line,
.hero-name,
.hero-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-subtitle.show,
.hero-line.show,
.hero-name.show,
.hero-scroll.show {
    opacity: 1;
    transform: translateY(0);
}
