
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-dark: #050816;
  --bg-darker: #02030a;
  --bg-light: #f6f2ea;
  --surface-dark: #0f1220;
  --surface-light: #ffffff;
  --accent: #f5c26b;
  --accent-soft: rgba(245, 194, 107, 0.15);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dark: #1f2933;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 22px 45px rgba(0,0,0,0.55);
  --transition-fast: 0.2s ease;
}

/* Reset basics */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at 0 0, #2c3357 0, #050816 40%, #020109 100%);
  color: var(--text-main);
  line-height: 1.6;
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to right, #050816, #050816f0);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.12);
}

/* Hero */
.hero {
  padding: 64px 0 72px;
  background: radial-gradient(circle at top left, #1e293b 0, #050816 50%, #020109 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 10px 0 14px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-intro {
  max-width: 520px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-panel {
  background: linear-gradient(145deg, rgba(15,23,42,0.98), #020617);
  border-radius: var(--radius-xl);
  padding: 22px 22px 24px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
}

.hero-panel h2 {
  font-size: 1.1rem;
  margin: 0 0 6px;
}

.hero-panel p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.hero-panel ul {
  margin: 0 0 16px;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-badge {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast),
              box-shadow var(--transition-fast), transform var(--transition-fast), border var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #111827;
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(180, 83, 9, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.full-width {
  width: 100%;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-light {
  background: #fbf6ee;
  color: var(--text-dark);
}

.section-dark {
  background: radial-gradient(circle at top left, #1b2238 0, #050816 50%, #020109 100%);
  color: var(--text-main);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin: 0 0 8px;
}

.section-intro {
  max-width: 560px;
  margin: 0 0 28px;
  color: inherit;
  opacity: 0.82;
}

/* Signature Services cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface-light);
  border-radius: 24px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.section-light .card {
  background: #ffffff;
}

.service-card h3 {
  font-size: 1.0rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Placeholder image areas */
.placeholder-image {
  border-radius: 18px;
  background: linear-gradient(135deg, #f5c26b33, #f9731633);
  color: #4b5563;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  height: 210px;
}

/* Card hover */
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.24);
}

/* Cuisines + Form layout (Option C) */
.cuisines-section {
  padding: 80px 0;
}

.cuisines-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: flex-start;
}

/* Left side */
.cuisines-copy .section-intro {
  color: var(--text-muted);
}

.cuisines-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
}

.cuisine-group h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.cuisine-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cuisine-group li {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* Right side form card */
.cuisines-form {
  background: rgba(10, 12, 24, 0.96);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.form-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 16px;
}

/* Form fields */
.contact-form .form-row {
  margin-bottom: 14px;
}

.contact-form .two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #050816;
  color: var(--text-main);
  padding: 9px 10px;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

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

.contact-form button[type="submit"] {
  margin-top: 8px;
}

/* Alerts */
.alert {
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.alert-success {
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.5);
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
}

/* About */
.about-section {
  padding: 72px 0 80px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr; /* was 1.05fr 1.4fr */
  gap: 40px;
  align-items: center;
}

.about-photo {
  max-width: 360px;          /* keep it from getting too wide */
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: #f8f4ef;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}


/* Image inside the About card */
.about-photo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* behaves like the service images */
}

.about-copy .section-intro {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-copy p {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Footer */
.site-footer {
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 0.85);
  padding: 22px 0;
  font-size: 0.9rem;
}

.footer-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-left p {
  margin: 4px 0;
  color: var(--text-muted);
}

.footer-small {
  font-size: 0.8rem;
}

.footer-right p {
  margin: 2px 0;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-layout,
  .cuisines-shell,
  .about-layout,
  .footer-layout {
    grid-template-columns: minmax(0,1fr);
    display: grid;
  }

  .hero {
    padding-top: 40px;
  }

  .nav-links {
    gap: 10px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cuisines-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-layout {
    gap: 32px;
  }
}


/* ==========================================================
   Service Card Images – Clean Full-Width Rounded Style
   ========================================================== */
.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
    display: block;
}

/**************************************************
 * Signature Services – image cards polish
 * (scoped to the #services section only)
 **************************************************/

/* Card container tweaks */
#services .card {
    border-radius: 26px;
    padding: 22px 22px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* Hover lift */
#services .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.22);
}

/* Service title */
#services .card h3 {
    font-size: 1.02rem;
    margin: 0 0 10px;
}

/* Service image – full bleed, same height, cropped nicely */
#services .service-image {
    display: block;
    width: 100%;
    height: 220px;
    border-radius: 18px;
    object-fit: cover;
    margin: 8px 0 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

/* Body text inside the card */
#services .card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   SIGNATURE SERVICES — NEW PREMIUM CARD DESIGN
   Clean, centered, balanced, consistent
   ============================================================ */

.signature-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px 24px 28px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}

.signature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px rgba(0,0,0,0.15);
}

/* Image wrapper for perfect shape & spacing */
.signature-card .signature-img {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    background-color: #f8f4ef;
    object-fit: cover;
    display: block;
    margin-bottom: 18px;
}

/* Title */
.signature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d1d1f;
}

/* Description */
.signature-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #333;
}

/* Classes section */
.classes-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.classes-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .classes-layout {
        grid-template-columns: 1fr;
    }
}

.classes-highlights {
    margin: 1.5rem 0 2rem;
    padding-left: 1.25rem;
    list-style: disc;
    color: #d1d5db;
    font-size: 0.95rem;
}

.classes-highlights li + li {
    margin-top: 0.35rem;
}

.classes-cta p {
    margin-bottom: 0.75rem;
    color: #e5e7eb;
}

.classes-cta .btn {
    margin-top: 0.25rem;
}

.class-tag {
    display: inline-block;
    margin: 0.25rem 0 0.75rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(250, 204, 21, 0.1); /* soft gold */
    color: #facc15;
}

.class-meta {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.class-meta span::before {
    content: "• ";
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));  /* 2 columns */
    gap: 2rem 2.5rem;                                  /* row gap | column gap */
    align-items: stretch;
    max-width: 900px;                                  /* keeps it tidy */
}

@media (max-width: 900px) {
    .classes-grid {
        grid-template-columns: 1fr;   /* stack cards on small screens */
    }
}
