/* Simply Southern — site styles */
:root {
  --brand: #9d3058;
  --brand-deep: #6e1f3c;
  --brand-soft: #c45a7e;
  --ink: #1a1216;
  --ink-soft: #3d2a33;
  --cream: #f7f0f2;
  --paper: #fffafb;
  --line: rgba(157, 48, 88, 0.22);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(26, 18, 22, 0.18);
  --font-display: "Great Vibes", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(157, 48, 88, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(110, 31, 60, 0.1), transparent 50%),
    linear-gradient(180deg, #faf5f7 0%, var(--paper) 40%, #f3e8ec 100%);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-deep);
}

main {
  flex: 1;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(26, 18, 22, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.site-logo:hover img {
  transform: scale(1.06) rotate(-3deg);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 8px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(26, 18, 22, 0.82) 0%, rgba(110, 31, 60, 0.55) 45%, rgba(26, 18, 22, 0.75) 100%),
    url("/assets/img/crabs.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(157, 48, 88, 0.35), transparent 45%),
    linear-gradient(to top, rgba(26, 18, 22, 0.85), transparent 40%);
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero__content {
  width: min(100% - 2rem, 720px);
  text-align: center;
  padding: 3rem 0 4rem;
  animation: rise-in 0.9s ease both;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__logo {
  width: min(220px, 55vw);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  animation: rise-in 1.1s 0.15s ease both;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

.hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--brand-deep);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--brand-deep);
}

.btn--light:hover {
  background: var(--cream);
  color: var(--brand-deep);
}

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

.section--tint {
  background:
    linear-gradient(180deg, rgba(157, 48, 88, 0.06), rgba(157, 48, 88, 0.02));
  border-block: 1px solid var(--line);
}

.section__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2,
.page-header h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brand-deep);
}

.section__lead {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.page-header {
  padding: 2.75rem 0 1.25rem;
  text-align: center;
}

.page-header p {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--ink-soft);
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.split__media,
.split__copy {
  flex: 1 1 280px;
}

.split__media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.feature {
  flex: 1 1 240px;
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--brand-deep);
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
}

/* Menu */
.menu-board {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.menu-group {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.35rem 1.25rem;
}

.menu-group h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.menu-group__note {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.menu-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(157, 48, 88, 0.2);
}

.menu-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-list strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.menu-list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Media / articles */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.press-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.press-item:hover {
  transform: translateX(4px);
  border-color: var(--brand);
  color: inherit;
  text-decoration: none;
}

.press-item__source {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.press-item__title {
  flex: 1 1 220px;
  font-weight: 500;
}

.seen-on {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.seen-on a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.seen-on a:hover {
  background: var(--brand);
  color: var(--white);
}

/* Contact */
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 360px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-panel > * {
  flex: 1 1 260px;
}

.contact-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-card h2 {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Blog list tweaks */
.blog-container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 3rem;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.blog-card {
  flex: 1 1 280px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.blog-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.blog-title a {
  text-decoration: none;
  color: var(--brand-deep);
}

.blog-title a:hover {
  color: var(--brand);
}

.blog-preview p {
  margin: 0;
  color: var(--ink-soft);
}

/* Article shell */
.romlicontainer {
  width: min(100% - 2rem, 760px);
  margin: 0 auto 3.5rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 3rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-soft);
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer__brand,
.site-footer__links,
.site-footer__cta {
  flex: 1 1 200px;
}

.site-footer__brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.site-footer__name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}

.site-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.7;
}

.romlifooter {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.romlifooter a {
  color: var(--brand-soft);
}

.romlidata {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 2rem;
}

.romlidata a {
  color: var(--brand-deep);
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(26, 18, 22, 0.98);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: block;
    animation: rise-in 0.25s ease;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
  }

  .hero {
    min-height: 78vh;
  }
}
