/* Omaya Restaurant - Static Site */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Inter:wght@300;400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --color-gold: #C9A96E;
  --color-gold-dark: #A8874D;
  --color-bg-dark: #1A1A1A;
  --color-bg-darker: #111111;
  --color-bg-section: #0D0D0D;
  --color-white: #FFFFFF;
  --color-text: #E0E0E0;
  --color-text-muted: #999999;
  --color-overlay: rgba(0,0,0,0.6);
  --font-heading: 'Marcellus', Georgia, serif;
  --font-body: 'Inter', 'Lato', sans-serif;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-dark);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-gold-dark); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
  background: rgba(17,17,17,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.top-bar {
  background: var(--color-bg-darker);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--color-text-muted); }
.top-bar a:hover { color: var(--color-gold); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo img { height: 50px; width: auto; }
.site-logo { display: flex; align-items: center; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-gold); }

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-gold);
  color: var(--color-bg-dark) !important;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.btn:hover { background: var(--color-gold-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold) !important;
}
.btn-outline:hover { background: var(--color-gold); color: var(--color-bg-dark) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gold);
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../images/Table-elegamment-dressee-pour-un-diner-avec-Omaya-768x768.jpg') center/cover;
  color: var(--color-white);
  text-align: center;
  padding: 160px 20px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content { max-width: 700px; }
.hero-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 15px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--color-white);
}
.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  opacity: 0.85;
}

/* SECTIONS */
section { padding: 80px 0; }
section.dark { background: var(--color-bg-section); }
section.darker { background: var(--color-bg-darker); }

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* KNIFE DIVIDER */
.divider {
  text-align: center;
  margin: 20px 0 30px;
}
.divider img { height: 50px; display: inline-block; opacity: 0.6; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--color-white);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s;
  color: var(--color-text-muted);
}
.service-card:hover p { opacity: 1; max-height: 100px; }

/* PARALLAX */
.parallax-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/Soiree-tranquille-a-la-francaise-avec-un-verre-de-vin-chez-Omaya-768x768.jpg') center/cover fixed;
  text-align: center;
  padding: 100px 20px;
}
.parallax-section h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-gold);
  margin-bottom: 25px;
  letter-spacing: 5px;
}
.parallax-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.9;
}

/* PHOTO GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s, filter 0.3s;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); filter: brightness(1.1); }

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-text p { margin-bottom: 20px; color: var(--color-text); line-height: 1.9; }
.two-col-image img { border-radius: 4px; width: 100%; height: 400px; object-fit: cover; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 4px;
}
.review-stars { color: var(--color-gold); margin-bottom: 15px; font-size: 1rem; letter-spacing: 2px; }
.review-card p { font-style: italic; margin-bottom: 15px; font-size: 0.95rem; line-height: 1.7; }
.review-author { font-weight: 700; color: var(--color-gold); font-style: normal; font-size: 0.9rem; }
.review-meta { font-size: 0.8rem; color: var(--color-text-muted); }

/* FOOTER */
.site-footer {
  background: var(--color-bg-darker);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--color-gold); }
.footer-col p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 15px; margin-top: 15px; }
.footer-social a {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--color-gold); }
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ARTICLE */
.article-header {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/Sardines-grillees-mediterraneennes-chez-Omaya-768x768.jpg') center/cover;
  color: var(--color-white);
  text-align: center;
  padding: 120px 20px 60px;
}
.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.3;
  font-weight: 400;
}
.article-meta { font-size: 0.85rem; color: var(--color-text-muted); }

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  font-weight: 400;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin: 30px 0 15px;
  font-weight: 400;
}
.article-content p { margin-bottom: 18px; line-height: 1.9; }
.article-content img {
  border-radius: 4px;
  margin: 30px 0;
}

/* BLOG LISTING */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 25px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; color: var(--color-white); font-weight: 400; }
.blog-card p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.blog-card .read-more { font-weight: 700; color: var(--color-gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* PAGE HEADER */
.page-header {
  background: var(--color-bg-darker);
  color: var(--color-white);
  text-align: center;
  padding: 100px 20px 60px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.page-header h1 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 400; margin-bottom: 10px; }
.page-header p { color: var(--color-text-muted); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}
.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 25px;
  border-radius: 4px;
  text-align: center;
}
.contact-card .icon { font-size: 2rem; color: var(--color-gold); margin-bottom: 15px; }
.contact-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-white); margin-bottom: 10px; font-weight: 400; }
.contact-card p { color: var(--color-text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-darker);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  .main-nav.open { display: flex; }
  .top-bar { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero { padding: 100px 20px; min-height: 60vh; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .parallax-section h2 { font-size: 2rem; }
}
