@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=DIN:wght@400;500;600;700&display=swap');

:root {
  --rr-color-theme-primary: #ed1c24;
  --rr-color-theme-secondary: #ffc226;
  --rr-color-heading-primary: #171717;
  --rr-color-text-body: #000000;
  --rr-color-common-white: #ffffff;
  --rr-color-common-black: #000000;
  --rr-color-common-dark: #232323;
  --rr-color-bg-1: #0b0a08;
  --rr-color-bg-light: #f8f8f8;
  --rr-color-grey-1: #F8F8F8;
  --rr-color-grey-2: #2D343E;
  --rr-color-border-1: #1E2228;
  --color-accent: #ed1c24;
  --color-secondary: #aa1717;
  --color-italy-green: #009246;
  --color-italy-red: #ce2b37;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  --font-primary: 'DIN', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--rr-color-text-body);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: .3s;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--rr-color-heading-primary);
  line-height: 1.2;
}

.section-title h2 strong {
  color: var(--color-accent);
}

.section-title p {
  font-size: 17px;
  color: #555;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-secondary);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--rr-color-heading-primary);
}

.btn-dark {
  background: var(--rr-color-heading-primary);
  color: #fff;
}

.btn-dark:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-lg {
  padding: 18px 45px;
  font-size: 16px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: .3s;
}

.header.scrolled {
  background: rgba(17, 21, 28, .95);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 5px 0;
  position: relative;
}

.header__nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: .3s;
}

.header__nav ul li a:hover::after,
.header__nav ul li a.active::after {
  width: 100%;
}

.header__nav ul li a:hover {
  color: var(--color-accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  background: var(--rr-color-bg-1);
}

.hero__content {
  max-width: 800px;
}

.hero__content h1 {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__content h1 strong {
  color: var(--color-accent);
}

.hero__content p {
  font-size: 19px;
  color: rgba(255,255,255,.85);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--rr-color-common-white);
}

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

.about__image img {
  width: 100%;
  border-radius: 8px;
}

.about__content .subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about__content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--rr-color-heading-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about__content h2 strong {
  color: var(--color-accent);
}

.about__content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about__contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.about__contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.about__contact a {
  font-size: 20px;
  font-weight: 600;
  color: var(--rr-color-heading-primary);
}

.about__contact a:hover {
  color: var(--color-accent);
}

/* ===== SPECIALS SECTION ===== */
.specials-section {
  background: var(--rr-color-grey-1);
}

.specials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.special-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.06);
  transition: .3s;
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.special-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.special-card__body {
  padding: 25px;
  text-align: center;
}

.special-card__day {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.special-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--rr-color-heading-primary);
  margin-bottom: 10px;
}

.special-card__desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.specials__cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== DISCOVER SECTION ===== */
.discover-section {
  background: #fff;
}

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

.discover__content .subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.discover__content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.discover__content h2 strong {
  color: var(--color-accent);
}

.discover__content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.discover__image img {
  width: 100%;
  border-radius: 8px;
}

/* ===== FRANCHISE SECTION ===== */
.franchise-section {
  background: var(--rr-color-bg-1);
  color: #fff;
  position: relative;
}

.franchise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
}

.franchise__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.franchise__content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.franchise__content h2 strong {
  color: var(--color-accent);
}

.franchise__content p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--rr-color-grey-1);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.review-card__stars {
  color: #ffc226;
  font-size: 16px;
  margin-bottom: 15px;
}

.review-card__text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
}

.review-card__author {
  font-weight: 600;
  color: var(--rr-color-heading-primary);
  font-size: 15px;
}

/* ===== CATERING CTA ===== */
.catering-cta {
  background: var(--rr-color-bg-1);
  color: #fff;
  position: relative;
}

.catering-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.catering-cta__content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.catering-cta__content h2 strong {
  color: var(--color-accent);
}

.catering-cta__content p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 25px;
}

.catering-cta__image img {
  width: 100%;
  border-radius: 8px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--rr-color-grey-1);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact__form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.contact__form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 10px;
}

.contact__form p {
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--rr-color-heading-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: .3s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__info {
  background: var(--rr-color-bg-1);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 25px;
}

.contact__info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact__info-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.contact__info-text span,
.contact__info-text a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.contact__info-text a:hover {
  color: var(--color-accent);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 60px;
  background: var(--rr-color-bg-1);
}

.page-header__breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}

.page-header__breadcrumb a {
  color: rgba(255,255,255,.6);
}

.page-header__breadcrumb a:hover {
  color: #fff;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
}

/* ===== MENU PAGE ===== */
.menu-page {
  padding: 80px 0;
  background: var(--rr-color-grey-1);
}

.menu-page .section-title {
  margin-bottom: 40px;
}

.menu__categories {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu-category {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.menu-category__image {
  width: 100%;
  height: auto;
}

.menu__download {
  text-align: center;
  margin-bottom: 40px;
}

/* ===== SPECIALS PAGE ===== */
.specials-page {
  padding: 80px 0;
  background: var(--rr-color-grey-1);
}

.specials-page .section-title {
  margin-bottom: 40px;
}

.specials-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.specials-tab {
  padding: 10px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: .3s;
}

.specials-tab:hover,
.specials-tab.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.specials-group {
  margin-bottom: 60px;
}

.specials-group__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--rr-color-heading-primary);
  text-align: center;
  margin-bottom: 30px;
}

.specials-group__title strong {
  color: var(--color-accent);
}

.specials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.special-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.06);
  transition: .3s;
}

.special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.special-item__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.special-item__body {
  padding: 25px;
}

.special-item__label {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
}

.special-item__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--rr-color-heading-primary);
  margin-bottom: 10px;
}

.special-item__desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.special-item__actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.special-item__actions .btn {
  padding: 8px 18px;
  font-size: 12px;
}

/* ===== CATERING PAGE ===== */
.catering-page {
  padding: 80px 0;
  background: var(--rr-color-grey-1);
}

.catering-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.catering-hero__image img {
  width: 100%;
  border-radius: 8px;
}

.catering-hero__content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.catering-hero__content h2 strong {
  color: var(--color-accent);
}

.catering-hero__content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.catering-hero__content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-accent);
  margin-bottom: 25px;
}

.catering-hero__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.catering-form {
  background: var(--rr-color-bg-1);
  color: #fff;
  padding: 50px;
  border-radius: 8px;
}

.catering-form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

.catering-form > p {
  text-align: center;
  color: rgba(255,255,255,.7);
  margin-bottom: 30px;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--rr-color-bg-1);
  color: #fff;
  padding: 60px 0 0;
}

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

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer__col p,
.footer__col a {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

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

.footer__info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer__info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: #fff;
}

.footer__hours-table {
  width: 100%;
}

.footer__hours-table td {
  padding: 4px 0;
  font-size: 15px;
  color: rgba(255,255,255,.7);
}

.footer__hours-table td:last-child {
  text-align: right;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links li a {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer__links li a:hover {
  color: var(--color-accent);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: .3s;
}

.footer__social a:hover {
  background: var(--color-accent);
  color: #fff;
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer__bottom p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}

.footer__bottom-links a:hover {
  color: var(--color-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__content h1 { font-size: 50px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .specials__grid { grid-template-columns: repeat(2, 1fr); }
  .discover__grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .catering-cta__grid { grid-template-columns: 1fr; gap: 30px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .specials-list { grid-template-columns: repeat(2, 1fr); }
  .catering-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 21, 28, .98);
    padding: 20px;
  }
  .header__nav.open { display: block; }
  .header__nav ul { flex-direction: column; gap: 15px; }
  .mobile-toggle { display: block; }
  .hero__content h1 { font-size: 36px; }
  .section-title h2 { font-size: 30px; }
  .about__content h2 { font-size: 30px; }
  .discover__content h2 { font-size: 30px; }
  .franchise__content h2 { font-size: 30px; }
  .specials__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .page-header__title { font-size: 36px; }
  .specials-list { grid-template-columns: 1fr; }
  .catering-form { padding: 30px; }
  .contact__form { padding: 25px; }
  .contact__info { padding: 25px; }
  .catering-hero { padding: 25px; }
  .header__actions .btn { padding: 10px 20px; font-size: 13px; }
}
