/* Base */

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

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fbf7f2;
  color: #333;
}

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

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

/* Typography */

.script {
  font-family: 'Great Vibes', cursive;
}

.center {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #6b716e;
}

/* Header / Nav */

.site-header {
  background: #fff7ea;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
}

/* Navigation links */

.nav-links {
  display: flex;
  gap: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a.active {
  background: rgba(255,255,255,0.9);
}

.nav-highlight {
  border: 1px solid #c9a24b;
}

.nav-highlight.active {
  background: linear-gradient(135deg, #c9a24b, #e3c988);
  color: #2f2614;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #c9a24b, #e3c988);
  color: #2f2614;
  box-shadow: 0 10px 24px rgba(201,162,75,0.4);
}

.btn.outline {
  background: transparent;
  color: #3b6b67;
  border-color: rgba(59,107,103,0.4);
}

.btn.primary:hover,
.btn.outline:hover {
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
}
/* Brighter buttons */
.btn.primary {
  background: linear-gradient(135deg, #ff9a73, #ffc857);
  color: #2b1b16;
  box-shadow: 0 12px 30px rgba(255, 152, 90, 0.55);
}

.btn.outline {
  border-color: rgba(59, 107, 103, 0.7);
  color: #2d5d59;
}

.btn.primary:hover,
.btn.outline:hover {
  transform: translateY(-2px);
}

/* Hero */

.hero {
  max-width: 1100px;
  margin: 24px auto 40px;
  padding: 24px 18px 32px;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 24px;
  border-radius: 26px;
  background: radial-gradient(circle at 10% 0%, #fffdf8, #f8e5c0);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.hero-content {
  padding-right: 10px;
}

.hero-title {
  font-size: 3rem;
  margin: 10px 0 0;
  color: #3b6b67;
}

.hero-subtitle {
  margin-top: 8px;
  font-size: 0.98rem;
  max-width: 440px;
}

.hero-buttons {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.86rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  align-content: center;
}

.hero-gallery img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
/* Hero more vibrant and fun */
.hero {
  background: linear-gradient(135deg, #ffe9d2, #f7f0ff);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

/* Sections */

.section {
  padding: 50px 18px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 22px;
}

/* Intro section */

.intro-text {
  max-width: 650px;
  margin: 0 auto 28px;
  font-size: 0.98rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.intro-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}
/* Intro section with a soft pink band */
.section.intro {
  background: linear-gradient(180deg, #fff4f4, #fbf7f2);
}

/* Reel/video section with a minty band */
.section-reel {
  background: linear-gradient(180deg, #f0fbf8, #fbf7f2);
}

/* Rolls grid */

.roll-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 30px;
}

.roll-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  padding: 16px 16px 20px;
  text-align: center;
}

.roll-card img {
  border-radius: 14px;
  margin-bottom: 10px;
}

.roll-card h2 {
  margin: 8px 0 4px;
  font-size: 1.05rem;
}

.roll-card .price {
  font-weight: 600;
  color: #3b6b67;
  margin-bottom: 6px;
}

.cta-under-grid {
  margin-top: 30px;
}
/* Rolls grid cards - more color + hover */
.roll-card {
  background: linear-gradient(180deg, #ffffff, #fff6ea);
  border-top: 4px solid #e6b35a;
  transition: transform 0.15s ease, box-shadow 0.15s ease, translate 0.15s ease;
}

.roll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* Little colored pill under each roll name */
.roll-card h2 {
  position: relative;
  margin-bottom: 6px;
}

.roll-card h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, #3b6b67, #e6b35a);
}

/* Form / Request page */

.form-wrapper {
  max-width: 720px;
  margin: 22px auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px 26px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.order-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
}

.order-form label,
.order-form .label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: #c9a24b;
  outline: none;
  box-shadow: 0 0 0 1px rgba(201,162,75,0.35);
}

.flavor-options {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 6px 12px;
  font-size: 0.86rem;
}

.required {
  color: #c45b5b;
}

.form-footnote {
  font-size: 0.76rem;
  margin-top: 6px;
  color: #555;
}
.quantity-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.9rem;
}

.quantity-options label {
  background: #f2f7ff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid #c9d8f8;
  cursor: pointer;
}

.quantity-options input[type="radio"] {
  margin-right: 6px;
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 20px 18px 26px;
  font-size: 0.8rem;
  color: #777;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.site-footer {
  background: linear-gradient(180deg, #f0ebe1, #e0f3ee);
  border-top: none;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-gallery {
    order: -1;
  }
  .roll-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .intro-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
/* Ingredients dropdown */

.ingredients-toggle {
  margin-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.08);
  padding-top: 8px;
}

.ingredients-toggle summary {
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #80652e;
  list-style: none;
  position: relative;
}

.ingredients-toggle summary::marker {
  content: "";
}

.ingredients-toggle summary::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 6px;
}

.ingredients-toggle[open] summary::after {
  content: "▴";
}

.ingredients-list {
  margin-top: 6px;
  font-size: 0.86rem;
}

.ingredients-list ul {
  margin: 4px 0 4px 18px;
  padding: 0;
}

.allergy-note {
  font-size: 0.8rem;
  color: #a55656;
  margin-top: 4px;
}

@media (max-width: 650px) {
  .nav-inner {
    flex-direction: column;
    gap: 6px;
  }
  .nav-links {
    font-size: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero {
    margin-top: 14px;
    padding: 18px 14px 24px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .roll-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .intro-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .form-row.two {
    grid-template-columns: minmax(0,1fr);
  }
}
/* Big centered logo on home page */

.logo-hero {
  width: 100%;
  padding: 0px 0px 0px;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #fffdf7, #f3faf8);
}

.logo-center {
  max-width: 400px;
  width: 100%;
  height: auto;
}

/* Center navigation after logo */
.center-nav {
  justify-content: center;
}
/* Floating logo on all pages (top-right) */
.floating-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.floating-logo img {
  width: 180px; /* adjust size as desired */
  height: auto;
}

/* Prevent page content from sliding under the logo */
body {
  padding-top: 120px;
}
/* Social media icons in footer */

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(59, 107, 103, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.social-links i {
  font-size: 1.1rem;
  color: #3b6b67;
}

.social-links a:hover {
  background: #3b6b67;
  transform: translateY(-1px);
}

.social-links a:hover i {
  color: #fff;
}
/* Reel / video section */

.section-reel {
  background: #fdfaf4;
  padding-top: 50px;
  padding-bottom: 60px;
}

.reel-layout {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 26px;
  align-items: center;
}

.reel-text .section-title {
  margin-bottom: 6px;
}

.reel-text .section-subtitle {
  margin-bottom: 16px;
}

.reel-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px;
  font-size: 0.94rem;
}

.reel-list li + li {
  margin-top: 4px;
}

.reel-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Instagram embed wrapper */
.instagram-video {
  display: flex;
  justify-content: center;
}

.instagram-video blockquote,
.instagram-video iframe {
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .reel-layout {
    grid-template-columns: minmax(0,1fr);
  }
}
/* ========== UPDATED PALETTE: WHITE + LIGHT BLUE + SOFT GOLD ========== */

/* Page background: mostly white with a soft blue and gold glow */
body {
  background:
    radial-gradient(circle at top left, rgba(180, 213, 255, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(246, 207, 139, 0.22), transparent 55%),
    #ffffff;
}

/* Hero: white into soft light blue */
.hero {
  background: linear-gradient(135deg, #ffffff, #e9f5ff);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Intro section: mostly white with a tiny blush */
.section.intro {
  background: linear-gradient(180deg, #ffffff, #fff7f3);
}

/* Reel/video section: minty blue band */
.section-reel {
  background: linear-gradient(180deg, #f0fbff, #ffffff);
}

/* Rolls cards: white with a hint of blue + gold top border */
.roll-card {
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  border-top: 4px solid #e4b865;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.roll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* Little color accent under each roll title */
.roll-card h2 {
  position: relative;
  margin-bottom: 6px;
}

.roll-card h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, #4f8a9c, #e4b865);
}

/* Buttons: peach → soft gold gradient */
.btn.primary {
  background: linear-gradient(135deg, #ffaf8c, #ffd46d);
  color: #2b1b16;
  box-shadow: 0 12px 28px rgba(255, 170, 110, 0.55);
}

.btn.outline {
  border-color: rgba(79, 138, 156, 0.7);
  color: #305e66;
}

.btn.primary:hover,
.btn.outline:hover {
  transform: translateY(-2px);
}

/* Footer: subtle white → light blue */
.site-footer {
  background: linear-gradient(180deg, #ffffff, #e6f4ff);
  border-top: none;
}
/* Quantity pill options */
.quantity-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.9rem;
}

.quantity-options label {
  background: #f2f7ff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid #c9d8f8;
  cursor: pointer;
}

.quantity-options input[type="radio"] {
  margin-right: 6px;
}

/* Service area block */
.service-area-block {
  margin: 18px auto 24px;
  max-width: 720px;
  text-align: center;
  background: linear-gradient(135deg, #f0fbff, #ffffff);
  border-radius: 14px;
  padding: 14px 16px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.service-text {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-result {
  font-size: 0.9rem;
  color: #305e66;
  min-height: 1.2em;
  text-align: center;
}
