/* Root palette pulled from logo */
:root {
  --cr-cream: #f3e1c3;
  --cr-cream-deep: #e3c599;
  --cr-red: #9b332b;
  --cr-red-dark: #6b1f1a;
  --cr-teal: #1e7774;
  --cr-gold: #d28e3f;
  --cr-brown: #2d2018;
  --cr-bg-dark: #14100f;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius-lg: 18px;
  --radius-md: 12px;
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--cr-brown);
  background: #D48A42;
}

/* Containers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  /* Dark color but semi-transparent */
  background: rgba(27, 20, 17, 0.78); 
  /* Frosted-glass effect */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

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

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.90rem;
  color: #fdf4e6;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav a {
  color: #f7e4d0;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cr-gold), var(--cr-teal));
  transition: width 0.22s ease-out;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px; /* offset for fixed header */
  display: flex;
  align-items: center;
  background: #D48A42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("assets/img/grain-texture.png");
  mix-blend-mode: soft-light;
  opacity: 0.15;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-title span {
  display: block;          /* each span on its own line */
  white-space: nowrap;     /* prevent wrapping inside that line */
}

.hero-text p {
  max-width: 42rem;
  font-size: 1.35rem;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  color: #f7e4d0;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(340px, 85%);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, color 0.15s ease-out;
}

.btn.primary {
  background: #8C3B2D;
  color: #f7e4d0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.btn.primary:hover {
  background: #742f24;
  transform: scale(1.08);
}

.btn.ghost {
  background: transparent;
  color: #f7e4d0;
  border-color: rgba(248, 230, 212, 0.7);
}

.btn.ghost:hover {
  background: rgba(19, 15, 13, 0.7);
  transform: scale(1.08);
}

.btn.full-width {
  width: 100%;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-light {
  background: linear-gradient(
    to bottom,
    #D48A42 0%,
    #EBCFA5 40%,
    #F7EAD5 100%
  );
}

.section-dark {
  background: radial-gradient(circle at top, #2b211d, var(--cr-bg-dark));
  color: #f6e4d1;
}

.section-accent {
  background: linear-gradient(
    to bottom,
    #F4E3C3 0%,    /* light cream from logo */
    #E9CFA4 40%,   /* soft bridge tone */
    #D48A42 100%   /* your hero tan */
  );
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #2B211B;
}

.section h2::after {
  content: "";
  display: block;
  width: 75%;
  height: 3px;
  background-color: var(--cr-brown);
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

.section-dark h2 {
  color: var(--cr-gold);
}

.section-header p {
  max-width: 480px;
  margin: 0.4rem auto 0;
  color: rgba(43, 33, 29, 0.8);
}

.section-dark .section-header p {
  color: rgba(246, 228, 202, 0.8);
}

/* Layout helpers */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.section-block {
  height: 100%;                 /* <— NEW */
  display: flex;                /* <— NEW */
  flex-direction: column;       /* <— NEW */
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.section-dark .section-block {
  background: rgba(27, 20, 17, 0.95);
  color: #f6e4d1;
}

.section-accent .section-block {
  background: rgba(255, 255, 255, 0.9);
}

/* About */
#about .section-block p {
  font-size: 1.18rem;     /* increase paragraph size */
  line-height: 1.40;      /* improve readability */
}

.highlight-card {
  text-align: center; /* centers the UL block itself */
}

.highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem auto 0;  /* center the UL horizontally */
  max-width: 640px;       /* width of the centered column – tweak as needed */
  text-align: left;       /* text inside the column is left-aligned */
  padding-left: 4.0rem;
}

.highlight-card li {
  position: relative;
  padding-left: 2.0rem;   /* space for the arrow */
  margin-bottom: 0.9rem;
  line-height: 2.95;
  font-size: 1.18rem;
  display: block;         /* each bullet on its own line */
}

/* arrow */
.highlight-card li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--cr-teal);
  font-size: 1.05rem;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.menu-item {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent),
    rgba(18, 13, 10, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item h3 {
  margin: 0 0 0.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.menu-meta {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: rgba(248, 231, 204, 0.8);
}

.menu-price {
  margin: 0;
  font-weight: 600;
  color: var(--cr-gold);
}

.menu-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(246, 228, 202, 0.8);
}

/* Locations */
.locations-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  font-size: 0.95rem;
}

.locations-list li + li {
  margin-top: 0.4rem;
}

.map-card .map-placeholder {
  margin-top: 0.9rem;
  border-radius: var(--radius-md);
  height: 220px;
  background: repeating-linear-gradient(
      45deg,
      rgba(155, 51, 43, 0.18),
      rgba(155, 51, 43, 0.18) 10px,
      rgba(30, 119, 116, 0.18) 10px,
      rgba(30, 119, 116, 0.18) 20px
    ),
    #fdf4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5e3a20;
  font-weight: 600;
  font-size: 0.95rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 1.2rem;
}

.contact-list a {
  color: var(--cr-red-dark);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

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

.social-link {
  margin-left: 1.5rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  display: block;
}

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

label {
  font-size: 0.85rem;
  font-weight: 500;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(45, 32, 24, 0.25);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(155, 51, 43, 0.3);
  border-color: rgba(155, 51, 43, 0.6);
}

.form-note {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: rgba(45, 32, 24, 0.7);
}

/* Footer */
.site-footer {
  background: #130f0d;
  color: #f8e6d4;
  padding: 1.4rem 0;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.footer-tagline {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav {
    display: none; /* keep it simple for v1; can add mobile menu later */
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }


  @media (max-width: 860px) {
  .hero-text p {
    margin: 0 auto;
    font-size: 1.1rem;   /* tweak as needed */
  }
}

  .hero-actions {
    justify-content: center;
  }

  .hero-logo-wrapper {
    order: -1;
    margin-bottom: 1.5rem;
  }

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

  .section-block {
    padding: 1.4rem 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 70px;
  }

  .nav-container {
    padding-inline: 0;
  }

  .container {
    width: min(100% - 1.6rem, 100%);
  }
}