:root {
  --burgundy: #651d2c;
  --burgundy-dark: #43131e;
  --cream: #f8f3ec;
  --gold: #c8a36a;
  --olive: #7b8b5a;
  --white: #ffffff;
  --charcoal: #2f2f2f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  display: flex;
  width: 100%;
  height: 86px;
  align-items: center;
  justify-content: space-between;

  padding: 0 6vw;

  background: rgba(67, 19, 30, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

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

.brand img {
  display: block;
  width: auto;
  height: 66px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 5px;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.language-button {
  padding: 8px 12px;

  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 0;
  border-radius: 999px;

  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.language-button.active {
  color: var(--burgundy-dark);
  background: var(--cream);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;

  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 86px;
  left: 0;
  z-index: 999;

  display: none;
  width: 100%;
  flex-direction: column;
  padding: 24px;

  background: var(--burgundy-dark);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 15px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

/* HERO */

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(45, 10, 20, 0.92) 0%,
      rgba(67, 19, 30, 0.7) 48%,
      rgba(67, 19, 30, 0.3) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(760px, 86%);
  margin-inline-start: 7vw;
  padding-top: 95px;

  color: var(--white);
}

.hero-brand {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;

  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.98;
}

.hero-description {
  max-width: 650px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;

  padding: 15px 30px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--burgundy);
}

.button-primary:hover {
  background: #823147;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-outline:hover {
  color: var(--burgundy-dark);
  background: var(--white);
}

/* MOBILE */

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 76px;
    padding: 0 16px;
  }

  .brand img {
    height: 52px;
  }

  .mobile-nav {
    top: 76px;
  }

  .language-button {
    padding: 7px 8px;
    font-size: 10px;
  }

  .hero {
    min-height: 790px;
    align-items: flex-end;
    padding: 110px 22px 65px;
  }

  .hero-overlay {
    background: rgba(45, 10, 20, 0.76);
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-brand {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }
}
/* FEATURED MEALS */

.featured-meals {
  padding: 110px 7vw;
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-label {
  margin: 0 0 16px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--burgundy-dark);
  font-family: Georgia, serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: #706966;
  font-size: 17px;
  line-height: 1.8;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.meal-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(101, 29, 44, 0.12);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(67, 19, 30, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.meal-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(67, 19, 30, 0.16);
}

.meal-image {
  height: 330px;
  overflow: hidden;
  background: #eee3d4;
}

.meal-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.meal-card:hover .meal-image img {
  transform: scale(1.05);
}

.meal-content {
  padding: 28px;
}

.meal-content h3 {
  margin: 0;
  color: var(--burgundy-dark);
  font-family: Georgia, serif;
  font-size: 30px;
}

.meal-content p {
  min-height: 54px;
  margin: 13px 0 24px;
  color: #706966;
  line-height: 1.7;
}

.meal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.meal-price {
  color: var(--burgundy);
  font-size: 22px;
  font-weight: 800;
}

.meal-order {
  padding: 11px 18px;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.meal-order:hover {
  background: #823147;
  transform: translateY(-2px);
}

.featured-action {
  margin-top: 46px;
  text-align: center;
}

@media (max-width: 950px) {
  .meal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .featured-meals {
    padding: 78px 22px;
  }

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

  .meal-image {
    height: 290px;
  }
}
/* EVENTS AND CATERING */

.events-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  background: var(--burgundy-dark);
  color: var(--white);
}

.events-image {
  min-height: 760px;
  overflow: hidden;
}

.events-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.events-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 85px 7vw;
}

.events-content .section-label {
  color: var(--gold);
}

.events-content h2 {
  margin: 0;
  max-width: 650px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
}

.events-description {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.9;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 34px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
}

.event-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 21px;
}

.event-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: 16px;
}

.events-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.events-outline-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.events-outline-button:hover {
  color: var(--burgundy-dark);
  background: var(--white);
}

@media (max-width: 900px) {
  .events-section {
    grid-template-columns: 1fr;
  }

  .events-image,
  .events-image img {
    min-height: 520px;
  }

  .events-content {
    padding: 75px 22px;
  }
}

@media (max-width: 600px) {
  .events-image,
  .events-image img {
    min-height: 400px;
  }

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

  .events-buttons {
    flex-direction: column;
  }

  .events-buttons .button {
    width: 100%;
  }
}
/* ABOUT CHEF */

.about-chef{
    padding:110px 7%;
    background:#f8f3ec;
}

.about-container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-container h2{
    color:#651d2c;
    font-size:56px;
    margin-bottom:30px;
    font-family:Georgia,serif;
}

.about-text{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
}

.about-badges{
    margin-top:45px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.badge{
    background:white;
    border-radius:18px;

    padding:22px;

    font-size:18px;
    font-weight:600;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

@media(max-width:700px){

.about-container h2{
font-size:40px;
}

.about-badges{
grid-template-columns:1fr;
}

}
/* ===========================
   SOCIAL MEDIA
=========================== */

.social-section {
    padding: 100px 7vw;
    background: var(--cream);
}

.social-section .section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.social-grid {
    max-width: 1280px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.social-card {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 26px 18px;

    background: var(--burgundy-dark);
    color: var(--white);

    border-radius: 22px;
    border: 1px solid rgba(200,163,106,.20);

    text-decoration: none;
    text-align: center;

    transition: .3s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.social-card:hover{
    transform: translateY(-8px);
    background: var(--burgundy);
    box-shadow:0 22px 55px rgba(0,0,0,.15);
}

/* ICON */

.social-icon{
    width:82px;
    height:82px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    background:#fff;
    border-radius:22px;

    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.social-icon img{
    width:56px;
    height:56px;
    object-fit:contain;

    transition:.25s;
}

.social-card:hover .social-icon img{
    transform:scale(1.12);
}

/* TEXT */

.social-card h3{
    margin:0;

    color:#fff;

    font-size:26px;
    font-weight:700;
    line-height:1.2;
}

.social-card p{
    margin-top:10px;

    color:rgba(255,255,255,.72);

    font-size:15px;
    font-weight:600;
}

/* WhatsApp */

.whatsapp-card{
    position:relative;
}

.whatsapp-card::after{
    content:"";

    position:absolute;

    width:10px;
    height:10px;

    right:18px;
    bottom:18px;

    background:#25D366;

    border-radius:50%;
}

/* RESPONSIVE */

@media (max-width:1100px){

    .social-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:700px){

    .social-section{
        padding:70px 22px;
    }

    .social-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .social-card{
        min-height:170px;
    }

    .social-icon{
        width:72px;
        height:72px;
    }

    .social-icon img{
        width:48px;
        height:48px;
    }

    .social-card h3{
        font-size:22px;
    }

}

@media (max-width:480px){

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

}
/* ===========================
   FOOTER
=========================== */

.site-footer {
  background: var(--burgundy-dark);
  color: var(--white);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 55px;

  max-width: 1400px;
  margin: 0 auto;
  padding: 85px 7vw 65px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 92px;
  object-fit: contain;
}

.footer-brand h2 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
}

.footer-brand p {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 22px;

  color: var(--white);
  background: #2f8d4e;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.footer-whatsapp:hover {
  transform: translateY(-3px);
  background: #24713d;
}

.footer-column h3 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 17px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

[dir="rtl"] .footer-links a:hover {
  transform: translateX(-3px);
}

.footer-language-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-language-buttons .language-button {
  min-width: 110px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-language-buttons .language-button.active {
  color: var(--burgundy-dark);
  background: var(--cream);
}

.footer-bottom {
  padding: 22px 7vw;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 65px 22px 45px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-language-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-language-buttons .language-button {
    min-width: auto;
  }
}