/* Design DNA: Netanya Cafe | soft sea-glass hero | light frosted header | pill-bottom cookie */
/* Fonts: "Pacifico", cursive + "Nunito", sans-serif */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Nunito:wght@400;600;700&display=swap');

:root {
  --nc-teal: #5EB7B0;
  --nc-teal-dark: #4A9E98;
  --nc-sand: #F2E8D5;
  --nc-foam: #FFFCFA;
  --nc-espresso: #3B2F2F;
  --nc-espresso-light: #5C4A4A;
  --nc-gradient-hero: linear-gradient(135deg, rgba(94, 183, 176, 0.35) 0%, rgba(242, 232, 213, 0.55) 50%, rgba(255, 252, 250, 0.9) 100%);
  --nc-gradient-card: linear-gradient(145deg, rgba(94, 183, 176, 0.12) 0%, rgba(242, 232, 213, 0.25) 100%);
  --nc-shadow-soft: 0 8px 32px rgba(59, 47, 47, 0.08);
  --nc-shadow-card: 0 4px 24px rgba(94, 183, 176, 0.15);
  --nc-radius: 16px;
  --nc-radius-lg: 24px;
  --nc-radius-pill: 50px;
  --nc-header-height: 72px;
  --nc-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--nc-espresso);
  background: var(--nc-foam);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--nc-teal-dark);
  text-decoration: none;
  transition: color var(--nc-transition);
}

a:hover {
  color: var(--nc-teal);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
}

.nc-script {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
}

/* ── Header ── */
.nc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nc-header-height);
  background: rgba(255, 252, 250, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94, 183, 176, 0.15);
  transition: background var(--nc-transition);
}

.nc-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nc-espresso);
  font-weight: 700;
  font-size: 1.15rem;
}

.nc-logo__icon {
  width: 36px;
  height: 36px;
  background: var(--nc-gradient-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nc-logo:hover {
  color: var(--nc-teal-dark);
}

.nc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nc-nav__link {
  padding: 8px 16px;
  border-radius: var(--nc-radius-pill);
  color: var(--nc-espresso-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--nc-transition);
}

.nc-nav__link:hover,
.nc-nav__link--active {
  background: rgba(94, 183, 176, 0.12);
  color: var(--nc-teal-dark);
}

.nc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nc-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nc-espresso);
  border-radius: 2px;
  transition: all var(--nc-transition);
}

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

.nc-burger--open span:nth-child(2) {
  opacity: 0;
}

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

/* ── Hero ── */
.nc-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nc-header-height) + 40px) 24px 60px;
  overflow: hidden;
}

.nc-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--nc-gradient-hero);
  z-index: 0;
}

.nc-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(94, 183, 176, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(242, 232, 213, 0.4) 0%, transparent 50%);
  filter: blur(40px);
}

.nc-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.nc-hero__photo {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: var(--nc-shadow-soft), 0 0 0 8px rgba(255, 252, 250, 0.6);
  border: 3px solid rgba(94, 183, 176, 0.2);
}

.nc-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--nc-espresso);
  margin-bottom: 12px;
}

.nc-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--nc-espresso-light);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.nc-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--nc-radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--nc-transition);
  text-align: center;
}

.nc-btn--primary {
  background: var(--nc-teal);
  color: var(--nc-foam);
  box-shadow: var(--nc-shadow-card);
}

.nc-btn--primary:hover {
  background: var(--nc-teal-dark);
  color: var(--nc-foam);
  transform: translateY(-2px);
}

.nc-btn--secondary {
  background: transparent;
  color: var(--nc-teal-dark);
  border: 2px solid var(--nc-teal);
}

.nc-btn--secondary:hover {
  background: rgba(94, 183, 176, 0.1);
  color: var(--nc-teal-dark);
}

/* ── Sections ── */
.nc-section {
  padding: 80px 24px;
}

.nc-section--sand {
  background: var(--nc-sand);
}

.nc-section--gradient {
  background: var(--nc-gradient-card);
}

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

.nc-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.nc-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.nc-section__desc {
  color: var(--nc-espresso-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Cards ── */
.nc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.nc-card {
  background: var(--nc-foam);
  border-radius: var(--nc-radius-lg);
  overflow: hidden;
  box-shadow: var(--nc-shadow-soft);
  transition: transform var(--nc-transition), box-shadow var(--nc-transition);
}

.nc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nc-shadow-card);
}

.nc-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nc-card__body {
  padding: 24px;
}

.nc-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.nc-card__text {
  color: var(--nc-espresso-light);
  font-size: 0.95rem;
}

/* ── Menu Chips ── */
.nc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.nc-chip {
  padding: 10px 22px;
  background: var(--nc-gradient-card);
  border-radius: var(--nc-radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nc-espresso);
  border: 1px solid rgba(94, 183, 176, 0.2);
  cursor: pointer;
  transition: all var(--nc-transition);
}

.nc-chip:hover,
.nc-chip--active {
  background: var(--nc-teal);
  color: var(--nc-foam);
  border-color: var(--nc-teal);
}

/* ── Menu List ── */
.nc-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.nc-menu-category__title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(94, 183, 176, 0.3);
}

.nc-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(59, 47, 47, 0.08);
}

.nc-menu-item__info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.nc-menu-item__info p {
  font-size: 0.85rem;
  color: var(--nc-espresso-light);
}

.nc-menu-item__price {
  font-weight: 700;
  color: var(--nc-teal-dark);
  white-space: nowrap;
  margin-left: 16px;
}

/* ── About / Content ── */
.nc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.nc-about-grid__img {
  border-radius: var(--nc-radius-lg);
  box-shadow: var(--nc-shadow-soft);
}

.nc-about-grid__text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.nc-about-grid__text p {
  margin-bottom: 16px;
  color: var(--nc-espresso-light);
}

.nc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.nc-feature {
  text-align: center;
  padding: 28px 20px;
  background: var(--nc-foam);
  border-radius: var(--nc-radius);
  box-shadow: var(--nc-shadow-soft);
}

.nc-feature__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.nc-feature__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.nc-feature__text {
  font-size: 0.9rem;
  color: var(--nc-espresso-light);
}

/* ── Brunch ── */
.nc-brunch-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nc-header-height) + 40px) 24px 60px;
  overflow: hidden;
}

.nc-brunch-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--nc-gradient-hero);
}

.nc-brunch-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.nc-brunch-hero__img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--nc-radius-lg);
  margin: 0 auto 24px;
  box-shadow: var(--nc-shadow-soft);
}

/* ── Contact ── */
.nc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.nc-contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.nc-contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--nc-gradient-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nc-contact-info__label {
  font-weight: 700;
  margin-bottom: 4px;
}

.nc-contact-info__value {
  color: var(--nc-espresso-light);
}

.nc-form {
  background: var(--nc-foam);
  padding: 32px;
  border-radius: var(--nc-radius-lg);
  box-shadow: var(--nc-shadow-soft);
}

.nc-form__group {
  margin-bottom: 20px;
}

.nc-form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.nc-form__input,
.nc-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(94, 183, 176, 0.25);
  border-radius: var(--nc-radius);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: var(--nc-foam);
  color: var(--nc-espresso);
  transition: border-color var(--nc-transition);
}

.nc-form__input:focus,
.nc-form__textarea:focus {
  outline: none;
  border-color: var(--nc-teal);
}

.nc-form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── Privacy ── */
.nc-privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.nc-privacy-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}

.nc-privacy-content p,
.nc-privacy-content li {
  color: var(--nc-espresso-light);
  margin-bottom: 12px;
}

.nc-privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── Page Header ── */
.nc-page-header {
  padding: calc(var(--nc-header-height) + 48px) 24px 48px;
  text-align: center;
  background: var(--nc-gradient-card);
}

.nc-page-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.nc-page-header__desc {
  color: var(--nc-espresso-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Footer ── */
.nc-footer {
  background: var(--nc-espresso);
  color: rgba(255, 252, 250, 0.85);
  padding: 60px 24px 24px;
}

.nc-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.nc-footer__col h4 {
  color: var(--nc-foam);
  font-size: 1rem;
  margin-bottom: 16px;
}

.nc-footer__col p,
.nc-footer__col a {
  font-size: 0.9rem;
  color: rgba(255, 252, 250, 0.7);
  line-height: 1.8;
}

.nc-footer__col a:hover {
  color: var(--nc-teal);
}

.nc-footer__brand {
  font-family: 'Pacifico', cursive;
  font-size: 1.3rem;
  color: var(--nc-foam);
  margin-bottom: 12px;
}

.nc-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 252, 250, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 252, 250, 0.5);
}

/* ── Cookie Banner ── */
.nc-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  max-width: 560px;
  width: calc(100% - 48px);
  background: var(--nc-foam);
  border-radius: var(--nc-radius-pill);
  padding: 16px 24px;
  box-shadow: 0 8px 40px rgba(59, 47, 47, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.5s ease;
  border: 1px solid rgba(94, 183, 176, 0.15);
}

.nc-cookie--visible {
  transform: translateX(-50%) translateY(0);
}

.nc-cookie__text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--nc-espresso-light);
  line-height: 1.5;
}

.nc-cookie__text a {
  color: var(--nc-teal-dark);
  font-weight: 600;
}

.nc-cookie__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.nc-cookie__btn {
  padding: 8px 20px;
  border-radius: var(--nc-radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all var(--nc-transition);
}

.nc-cookie__btn--accept {
  background: var(--nc-teal);
  color: var(--nc-foam);
}

.nc-cookie__btn--accept:hover {
  background: var(--nc-teal-dark);
}

.nc-cookie__btn--decline {
  background: transparent;
  color: var(--nc-espresso-light);
  border: 1px solid rgba(59, 47, 47, 0.15);
}

.nc-cookie__btn--decline:hover {
  background: rgba(59, 47, 47, 0.05);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .nc-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nc-about-grid,
  .nc-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nc-burger {
    display: flex;
  }

  .nc-nav {
    position: fixed;
    top: var(--nc-header-height);
    left: 0;
    right: 0;
    background: rgba(255, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--nc-transition);
    border-bottom: 1px solid rgba(94, 183, 176, 0.15);
  }

  .nc-nav--open {
    transform: translateY(0);
    opacity: 1;
  }

  .nc-nav__link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nc-hero__photo {
    width: 220px;
    height: 220px;
  }

  .nc-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nc-cookie {
    flex-direction: column;
    border-radius: var(--nc-radius-lg);
    text-align: center;
  }

  .nc-cookie__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nc-section {
    padding: 60px 16px;
  }

  .nc-hero {
    min-height: 80vh;
  }

  .nc-menu-grid {
    grid-template-columns: 1fr;
  }
}
