/* ==========================================================================
   OPG Dionis — design overrides (loaded after template styles)
   ========================================================================== */

:root {
  --od-gold: #d4a24c;
  --od-gold-dark: #b8893a;
  --od-dark: #1f1a14;
  --od-cream: #faf7f2;
  --od-text: #3a3530;
  --od-muted: #6f675e;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--od-text);
  background: var(--od-cream);
}

h1, h2, h3, h4, .section-title, .bradcam_text h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--od-dark);
}

main a {
  color: var(--od-gold-dark);
}

main a:hover {
  color: var(--od-dark);
}

/* --- header ------------------------------------------------------------ */

.header-area .main-header-area {
  background: rgba(31, 26, 20, 0.92);
  padding: 10px 0;
}

.header-area .main-header-area .logo img {
  max-height: 56px;
  width: auto;
}

.header-area .main-header-area .main-menu ul li a {
  color: #f5efe6;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-area .main-header-area .main-menu ul li a:hover,
.header-area .main-header-area .main-menu ul li a.active {
  color: var(--od-gold);
}

.lang-switch {
  margin-left: 18px;
  border-left: 1px solid rgba(245, 239, 230, 0.25);
  padding-left: 18px;
}

.lang-switch a {
  display: inline-block !important;
  padding: 22px 6px !important;
  font-size: 13px !important;
  opacity: 0.7;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--od-gold) !important;
}

/* --- hero --------------------------------------------------------------- */

.hero-overlay {
  position: relative;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.55) 0%, rgba(20, 15, 10, 0.35) 50%, rgba(20, 15, 10, 0.6) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  color: #f0e9dd;
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn-hero-primary {
  background: var(--od-gold);
  color: var(--od-dark);
  border: 2px solid var(--od-gold);
}

.btn-hero-primary:hover {
  background: var(--od-gold-dark);
  border-color: var(--od-gold-dark);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-content p {
    font-size: 16px;
  }
}

/* --- page banner (menu / contact) ---------------------------------------- */

.page-banner {
  position: relative;
  padding: 160px 0 90px;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, 0.55);
}

.page-banner .bradcam_text {
  position: relative;
  z-index: 1;
}

.page-banner .bradcam_text h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  margin: 0;
}

/* --- sections ------------------------------------------------------------ */

.about-section,
.menu-section {
  padding: 70px 0;
}

.reviews-section {
  padding: 0 0 70px;
}

.section-title {
  font-size: 34px;
  margin: 40px 0 30px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--od-gold);
  margin: 14px auto 0;
}

.about-section .lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--od-muted);
}

/* --- dish cards ----------------------------------------------------------- */

.dish-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 26, 20, 0.08);
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: calc(100% - 30px);
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31, 26, 20, 0.14);
}

.dish-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dish-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-thumb img {
  transform: scale(1.05);
}

.dish-card h3 {
  font-size: 21px;
  margin: 18px 16px 8px;
}

.dish-card p {
  color: var(--od-muted);
  font-size: 15px;
  margin: 0 18px 22px;
  line-height: 1.6;
}

.menu-note {
  font-size: 17px;
  color: var(--od-muted);
  font-style: italic;
  margin-top: 30px;
}

/* --- contact -------------------------------------------------------------- */

.map-wrap iframe {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(31, 26, 20, 0.08);
  display: block;
}

.contact-title {
  font-size: 30px;
}

.contact-reminder {
  color: var(--od-muted);
  margin-bottom: 28px;
}

.contact-section .form-control {
  border-radius: 6px;
  border: 1px solid #ddd3c4;
  background: #fff;
}

.contact-section .form-control:focus {
  border-color: var(--od-gold);
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.18);
}

.contact-section .boxed-btn,
.contact-section .button-contactForm {
  background: var(--od-gold);
  color: var(--od-dark);
  border: none;
  border-radius: 4px;
  padding: 13px 38px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-section .boxed-btn:hover,
.contact-section .button-contactForm:hover {
  background: var(--od-gold-dark);
  color: #fff;
}

.contact-info a {
  color: var(--od-text);
}

/* --- footer ----------------------------------------------------------------- */

.site-footer {
  background: var(--od-dark);
  color: #cfc6b8;
  padding: 60px 0 0;
  margin-top: 40px;
}

.site-footer h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 16px;
}

.site-footer a {
  color: var(--od-gold);
}

.site-footer a:hover {
  color: #fff;
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 16px;
}

.footer-col {
  margin-bottom: 30px;
}

.btn-reserve {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 26px;
  border: 1px solid var(--od-gold);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-reserve:hover {
  background: var(--od-gold);
  color: var(--od-dark) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding: 18px 0;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}
