/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

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

/* ===== NAVBAR (centered links) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 61, 98, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(10, 61, 98, 0.1);
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.navbar__logo img {
  height: 56px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  justify-self: center;
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
  position: relative;
  transition: color 0.3s ease;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1abc9c;
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: #0a3d62;
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a.active {
  color: #0a3d62;
  font-weight: 600;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  justify-self: end;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(10,61,98,0.65) 0%, rgba(26,111,160,0.5) 40%, rgba(46,134,193,0.4) 70%, rgba(26,188,156,0.45) 100%),
              url('waves.jpeg') center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,64 C360,120 720,0 1080,64 C1260,96 1380,80 1440,64 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

.hero__bg-animation {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255,255,255,0.15) 0%, transparent 50%);
  animation: heroFloat 8s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PAGE HEADER (for sub-pages) ===== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, #0a3d62 0%, #1a6fa0 60%, #1abc9c 100%);
  color: #fff;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #fff;
  color: #0a3d62;
}

.btn--primary:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--accent {
  background: #1abc9c;
  color: #fff;
}

.btn--accent:hover {
  background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 188, 156, 0.3);
}

/* ===== CONTACT REVEAL PANEL ===== */
.contact-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, padding 0.4s ease;
  margin-top: 0;
}

.contact-reveal.open {
  max-height: 300px;
  margin-top: 24px;
}

.contact-reveal__inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.contact-reveal__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5d7a8c;
  margin-bottom: 12px;
}

.contact-reveal__item {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0a3d62;
  text-decoration: none;
  border-bottom: 1px solid #eef2f5;
  transition: color 0.2s ease;
}

.contact-reveal__item:last-child {
  border-bottom: none;
}

.contact-reveal__item:hover {
  color: #1abc9c;
}

.contact-reveal__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.menu__cta .contact-reveal__inner {
  background: #f8f9fa;
  box-shadow: none;
  border: 1px solid #eef2f5;
}

/* ===== FEATURES STRIP ===== */
.features {
  padding: 80px 0;
  background: #fff;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.features__item {
  padding: 32px 24px;
}

.features__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4f8, #d5f0e8);
  border-radius: 16px;
}

.features__icon svg {
  width: 32px;
  height: 32px;
  color: #0a3d62;
}

.features__item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0a3d62;
}

.features__item p {
  font-size: 0.95rem;
  color: #5d7a8c;
  max-width: 280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #0a3d62;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: #5d7a8c;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #0a3d62;
  margin-bottom: 24px;
}

.about__text p {
  font-size: 1.05rem;
  color: #5d7a8c;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__text .btn {
  margin-top: 16px;
}

.about__image {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #b8d8e8, #a8dcd1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #5d7a8c;
  font-weight: 500;
}

/* ===== MENU SECTION ===== */
.menu {
  padding: 80px 0 100px;
  background: #f8f9fa;
}

.menu__subtitle {
  text-align: center;
  font-size: 1rem;
  color: #1abc9c;
  font-weight: 600;
  margin-top: 8px;
}

.menu__category {
  margin-bottom: 40px;
}

.menu__category-title {
  font-size: 1.4rem;
  color: #0a3d62;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1abc9c;
  display: inline-block;
}

.menu__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted #d0dbe3;
}

.menu__item-name {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
  flex: 1;
  padding-right: 12px;
}

.menu__item-price {
  font-size: 0.85rem;
  color: #1abc9c;
  font-weight: 600;
  font-style: italic;
  white-space: nowrap;
}

.menu__cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 61, 98, 0.06);
}

.menu__cta p {
  font-size: 1.05rem;
  color: #2c3e50;
  margin-bottom: 16px;
}

/* ===== RECIPES SECTION ===== */
.recipes {
  padding: 80px 0 100px;
  background: #fff;
}

.recipe-card {
  max-width: 800px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 61, 98, 0.06);
}

.recipe-card__header {
  background: linear-gradient(135deg, #0a3d62, #1a6fa0);
  padding: 40px 40px 32px;
  color: #fff;
}

.recipe-card__title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.recipe-card__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.recipe-card__meta {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.recipe-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recipe-card__meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.recipe-card__meta-value {
  font-size: 1rem;
  font-weight: 600;
}

.recipe-card__body {
  padding: 40px;
}

.recipe-card__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a3d62;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1abc9c;
  display: inline-block;
}

.recipe-card__ingredients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-bottom: 40px;
}

.recipe-card__ingredients h4 {
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 12px 0 8px;
}

.recipe-card__ingredients h4:first-child {
  margin-top: 0;
}

.recipe-card__ingredients ul {
  grid-column: 1 / -1;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}

.recipe-card__ingredients li {
  font-size: 0.95rem;
  color: #2c3e50;
  padding: 6px 0;
  border-bottom: 1px solid #eef2f5;
}

.recipe-card__steps {
  counter-reset: step;
  list-style: none;
}

.recipe-card__steps li {
  counter-increment: step;
  padding: 16px 0 16px 52px;
  position: relative;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.7;
  border-bottom: 1px solid #eef2f5;
}

.recipe-card__steps li:last-child {
  border-bottom: none;
}

.recipe-card__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 36px;
  height: 36px;
  background: #0a3d62;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.recipe-card__tip {
  margin-top: 24px;
  padding: 16px 20px;
  background: #e8f6f3;
  border-left: 4px solid #1abc9c;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #2c3e50;
}

.recipe-card__source {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #8fa8b8;
}

.recipe-card__source a {
  color: #1abc9c;
  text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a3d62 0%, #1a6fa0 50%, #1abc9c 100%);
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,0 L0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
  background: #071e2f;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #1abc9c;
}

.footer__contact p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  background: #1abc9c;
  color: #fff;
}

.footer__socials svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    height: 64px;
  }

  .navbar__logo img {
    height: 44px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 24px 40px;
    gap: 28px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    justify-self: stretch;
  }

  .navbar__links.active {
    transform: translateX(0);
  }

  .navbar__links a {
    font-size: 1.2rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .about__image {
    height: 280px;
  }

  .recipe-card__header,
  .recipe-card__body {
    padding: 28px 24px;
  }

  .recipe-card__ingredients ul {
    grid-template-columns: 1fr;
  }

  .recipe-card__meta {
    gap: 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-header {
    padding: 130px 0 80px;
  }
}
