/*
Theme Name:       WoOrder-Greek
Theme URI:        https://woorder.app/themes/woorder-greek
Author:           Simon Kobler
Author URI:       https://sdkindustries.de
Description:      A modern Mediterranean luxury restaurant theme inspired by Greek hospitality. Features dark moody aesthetics, editorial typography, comprehensive customizer options, and modules for menus, reservations, testimonials, and more. Built for WooCommerce and the WoOrder plugin.
Version:          1.0.0
Requires at least: 6.0
Tested up to:     6.5
Requires PHP:     7.4
License:          GPL-2.0-or-later
License URI:      https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:      woorder-greek
Tags:             restaurant, food, greek, mediterranean, dark, one-page, custom-menu, custom-logo, featured-images, theme-options, translation-ready

WoOrder-Greek WordPress Theme, (C) 2024 Simon Kobler (sdkindustries.de)
WoOrder-Greek is distributed under the terms of the GNU GPL v2 or later.
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Colors */
  --wog-color-primary-dark: #faeada;
  --wog-color-secondary-dark: #f5e1cc;
  --wog-color-dark-surface: #fff3e8;
  --wog-color-dark-card: #fff8f2;
  --wog-color-cream: #f5f0e8;
  --wog-color-cream-light: #faf7f2;
  --wog-color-gold: #9b7420;
  --wog-color-gold-light: #7a5c16;
  --wog-color-white: #2a2a2a;
  --wog-color-text-light: #3a3530;
  --wog-color-text-muted: #7a7068;
  --wog-color-text-dark: #2a2a2a;
  --wog-color-mediterranean-blue: #4a7c8a;
  --wog-color-earth: #8b7355;
  --wog-color-border: rgba(0, 0, 0, 0.08);
  --wog-color-border-light: rgba(0, 0, 0, 0.05);
  --wog-color-overlay: rgba(250, 234, 218, 0.92);

  /* Typography */
  --wog-font-heading: "Playfair Display", Georgia, serif;
  --wog-font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --wog-font-accent: "Playfair Display", Georgia, serif;

  /* Font Sizes */
  --wog-text-xs: 0.75rem;
  --wog-text-sm: 0.875rem;
  --wog-text-base: 1rem;
  --wog-text-lg: 1.125rem;
  --wog-text-xl: 1.25rem;
  --wog-text-2xl: 1.5rem;
  --wog-text-3xl: 1.875rem;
  --wog-text-4xl: 2.25rem;
  --wog-text-5xl: 3rem;
  --wog-text-6xl: 3.75rem;
  --wog-text-7xl: 4.5rem;
  --wog-text-hero: clamp(3rem, 8vw, 6rem);

  /* Spacing */
  --wog-space-xs: 0.25rem;
  --wog-space-sm: 0.5rem;
  --wog-space-md: 1rem;
  --wog-space-lg: 1.5rem;
  --wog-space-xl: 2rem;
  --wog-space-2xl: 3rem;
  --wog-space-3xl: 4rem;
  --wog-space-4xl: 6rem;
  --wog-space-5xl: 8rem;
  --wog-space-section: clamp(4rem, 10vw, 8rem);

  /* Layout */
  --wog-max-width: 1200px;
  --wog-max-width-narrow: 800px;
  --wog-max-width-wide: 1400px;
  --wog-border-radius: 4px;
  --wog-border-radius-lg: 8px;

  /* Transitions */
  --wog-transition-fast: 150ms ease;
  --wog-transition-base: 300ms ease;
  --wog-transition-slow: 500ms ease;
  --wog-transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --wog-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --wog-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --wog-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
  --wog-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-base);
  line-height: 1.7;
  color: var(--wog-color-text-light);
  background-color: var(--wog-color-primary-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--wog-color-gold);
  text-decoration: none;
  transition: color var(--wog-transition-fast);
}

a:hover {
  color: var(--wog-color-gold-light);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--wog-font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--wog-color-white);
}

h1 {
  font-size: var(--wog-text-hero);
}
h2 {
  font-size: clamp(2rem, 5vw, var(--wog-text-5xl));
}
h3 {
  font-size: var(--wog-text-3xl);
}
h4 {
  font-size: var(--wog-text-2xl);
}
h5 {
  font-size: var(--wog-text-xl);
}
h6 {
  font-size: var(--wog-text-lg);
}

h1 em,
h2 em,
h3 em,
h4 em {
  font-style: italic;
  color: var(--wog-color-gold);
}

p {
  margin-bottom: var(--wog-space-md);
  color: var(--wog-color-text-muted);
}

.wog-section-subtitle {
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-sm);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wog-color-gold);
  margin-bottom: var(--wog-space-md);
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.wog-container {
  width: 100%;
  max-width: var(--wog-max-width);
  margin: 0 auto;
  padding: 0 var(--wog-space-xl);
}

.wog-container--narrow {
  max-width: var(--wog-max-width-narrow);
}

.wog-container--wide {
  max-width: var(--wog-max-width-wide);
}

body.elementor-page:not(.home) .wog-main {
  padding-bottom: var(--wog-space-section);
}

body.elementor-page:not(.home) .wog-main > .elementor {
  max-width: var(--wog-max-width);
  margin: 0 auto;
  padding: 0 var(--wog-space-xl);
}

body.elementor-page:not(.home)
  .wog-main
  .elementor-section.elementor-section-boxed
  > .elementor-container {
  max-width: var(--wog-max-width);
  margin: 0 auto;
}

body.elementor-page:not(.home) .wog-main .e-con:not(.e-con-full) {
  max-width: var(--wog-max-width);
  margin: 0 auto;
  padding-left: var(--wog-space-xl);
  padding-right: var(--wog-space-xl);
}

.wog-wc-page__container {
  max-width: var(--wog-max-width);
  margin: 0 auto;
  padding: 0 var(--wog-space-xl);
}

.wog-section {
  padding: var(--wog-space-section) 0;
  position: relative;
}

.wog-section--dark {
  background-color: var(--wog-color-primary-dark);
}

.wog-section--dark h1,
.wog-section--dark h2,
.wog-section--dark h3,
.wog-section--dark h4,
.wog-section--dark h5,
.wog-section--dark h6 {
  color: var(--wog-color-text-dark) !important;
}

.wog-section--dark p,
.wog-section--dark span,
.wog-section--dark a:not(.wog-btn) {
  color: var(--wog-color-text-dark);
}

.wog-section--darker {
  background-color: var(--wog-color-secondary-dark);
}

.wog-section--darker h1,
.wog-section--darker h2,
.wog-section--darker h3,
.wog-section--darker h4,
.wog-section--darker h5,
.wog-section--darker h6 {
  color: var(--wog-color-text-dark) !important;
}

.wog-section--darker p,
.wog-section--darker span,
.wog-section--darker a:not(.wog-btn) {
  color: var(--wog-color-text-dark);
}

.wog-section--light {
  background-color: var(--wog-color-cream);
  color: var(--wog-color-text-dark);
}

.wog-section--light h2,
.wog-section--light h3,
.wog-section--light h4 {
  color: var(--wog-color-text-dark);
}

.wog-section--light p {
  color: #5a5a5a;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.wog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wog-space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--wog-border-radius);
  transition: all var(--wog-transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.wog-btn--primary {
  background-color: var(--wog-color-gold);
  color: #ffffff;
}

.wog-btn--primary:hover {
  background-color: var(--wog-color-gold-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--wog-shadow-md);
}

.wog-btn--outline {
  background: transparent;
  color: var(--wog-color-text-dark);
  border: 1px solid var(--wog-color-border);
}

.wog-hero .wog-btn--outline,
.wog-btn--outline.wog-btn--lg {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.wog-hero .wog-btn--outline:hover,
.wog-btn--outline.wog-btn--lg:hover {
  color: var(--wog-color-gold) !important;
  border-color: var(--wog-color-gold) !important;
}

.wog-btn--outline:hover {
  border-color: var(--wog-color-gold);
  color: var(--wog-color-gold);
  background-color: rgba(155, 116, 32, 0.05);
  transform: translateY(-2px);
}

.wog-btn--dark {
  background-color: var(--wog-color-primary-dark);
  color: var(--wog-color-white);
}

.wog-btn--dark:hover {
  background-color: var(--wog-color-secondary-dark);
  color: var(--wog-color-gold);
  transform: translateY(-2px);
}

.wog-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--wog-text-xs);
}

.wog-btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--wog-text-base);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.wog-announcement {
  position: relative;
  z-index: 1002;
  background-color: var(--wog-color-gold);
  color: var(--wog-color-primary-dark);
  padding: var(--wog-space-sm) var(--wog-space-xl);
  text-align: center;
  font-size: var(--wog-text-sm);
  font-weight: 500;
}

.wog-announcement a {
  color: var(--wog-color-primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.wog-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 234, 218, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    background-color var(--wog-transition-base),
    box-shadow var(--wog-transition-base);
}

/* WP admin bar: sticky top accounts for it */
.admin-bar .wog-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .wog-header {
    top: 46px;
  }
}

.wog-header--scrolled {
  background-color: rgba(250, 234, 218, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--wog-shadow-md);
}

.wog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--wog-space-lg) var(--wog-space-xl);
  max-width: var(--wog-max-width-wide);
  margin: 0 auto;
}

.wog-nav__logo {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-2xl);
  font-weight: 700;
  color: var(--wog-color-text-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.wog-nav__logo:hover {
  color: var(--wog-color-gold);
}

/* Logo image from Site Identity */
.wog-nav__logo img,
.wog-nav__logo .custom-logo {
  max-height: 50px;
  width: auto;
  display: block;
}

.wog-nav__logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.wog-nav__links {
  display: flex;
  align-items: center;
  gap: var(--wog-space-xl);
}

.wog-nav__menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: var(--wog-space-xl);
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wog-nav__menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.wog-nav__links ul,
.wog-nav__links li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.wog-nav__links a {
  font-size: var(--wog-text-sm);
  font-weight: 400;
  color: var(--wog-color-text-light);
  letter-spacing: 0.03em;
  transition: color var(--wog-transition-fast);
}

.wog-nav__links a:hover {
  color: var(--wog-color-gold);
}

.wog-nav__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wog-nav__actions .wog-nav__cta {
  margin-left: 0;
}

.wog-nav__actions .wog-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--wog-text-xs);
  color: var(--wog-color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.wog-nav__actions .wog-nav__phone:hover {
  color: var(--wog-color-gold);
}

.wog-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.wog-nav__toggle span {
  display: block;
  height: 2px;
  background-color: var(--wog-color-white);
  transition: all var(--wog-transition-base);
}

.wog-nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.wog-nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.wog-nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.wog-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 234, 218, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--wog-space-xl);
  opacity: 0;
  visibility: hidden;
  list-style: none;
  transition: all var(--wog-transition-base);
}

.wog-mobile-nav ul,
.wog-mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wog-mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.wog-mobile-nav a {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-3xl);
  color: var(--wog-color-text-dark);
  transition: color var(--wog-transition-fast);
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.wog-hero {
  position: relative;
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: var(--wog-space-3xl);
}

.wog-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wog-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.wog-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--wog-space-xl);
}

.wog-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: var(--wog-space-lg);
  letter-spacing: -0.02em;
  color: #ffffff;
}

.wog-hero__subtitle {
  font-size: var(--wog-text-lg);
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto var(--wog-space-2xl);
  line-height: 1.8;
}

.wog-hero__ctas {
  display: flex;
  gap: var(--wog-space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--wog-space-3xl);
}

.wog-hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wog-space-xl);
  flex-wrap: wrap;
  font-size: var(--wog-text-sm);
  color: #ffffff;
}

.wog-hero__badge {
  display: flex;
  align-items: center;
  gap: var(--wog-space-sm);
}

.wog-hero__badge-stars {
  color: var(--wog-color-gold);
}

.wog-hero__scroll {
  position: absolute;
  bottom: var(--wog-space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wog-space-sm);
  color: var(--wog-color-text-muted);
  font-size: var(--wog-text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: wog-bounce 2s infinite;
}

@keyframes wog-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* ==========================================================================
   Philosophy / Filoxenia Section
   ========================================================================== */

.wog-philosophy {
  text-align: center;
  padding: var(--wog-space-5xl) 0;
}

.wog-philosophy__greek {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-4xl);
  color: var(--wog-color-gold);
  margin-bottom: var(--wog-space-md);
  letter-spacing: 0.1em;
}

.wog-philosophy__pronunciation {
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--wog-space-3xl);
}

.wog-philosophy__text {
  font-family: var(--wog-font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 2;
  color: var(--wog-color-text-dark);
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   Signature Plates / Cards Grid
   ========================================================================== */

.wog-plates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--wog-space-xl);
}

.wog-plate-card {
  background-color: var(--wog-color-dark-card);
  border-radius: var(--wog-border-radius-lg);
  overflow: hidden;
  transition:
    transform var(--wog-transition-base),
    box-shadow var(--wog-transition-base);
  border: 1px solid var(--wog-color-border);
}

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

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

.wog-plate-card__content {
  padding: var(--wog-space-xl);
}

.wog-plate-card__tag {
  font-size: var(--wog-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wog-color-gold);
  margin-bottom: var(--wog-space-sm);
}

.wog-section--dark .wog-plate-card h3,
.wog-section--dark .wog-plate-card__title,
.wog-plate-card h3,
.wog-plate-card__title {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-xl);
  color: #2a2a2a !important;
  margin-bottom: var(--wog-space-xs);
}

.wog-plate-card__greek-name {
  font-style: italic;
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted) !important;
  margin-bottom: var(--wog-space-md);
}

.wog-plate-card__desc {
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted) !important;
  line-height: 1.6;
}

.wog-plate-card__tag {
  color: var(--wog-color-gold) !important;
}

/* ==========================================================================
   Menu Section (Tabbed)
   ========================================================================== */

.wog-menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--wog-space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--wog-space-3xl);
  border-bottom: 1px solid var(--wog-color-border);
  padding-bottom: var(--wog-space-md);
}

.wog-menu-tab {
  padding: var(--wog-space-sm) var(--wog-space-lg);
  font-size: var(--wog-text-sm);
  font-weight: 500;
  color: var(--wog-color-text-muted);
  border-radius: var(--wog-border-radius);
  transition: all var(--wog-transition-fast);
  cursor: pointer;
  border: none;
  background: none;
}

.wog-menu-tab:hover,
.wog-menu-tab.active {
  color: var(--wog-color-gold);
  background-color: rgba(201, 169, 110, 0.1);
}

.wog-menu-panel {
  display: none;
}

.wog-menu-panel.active {
  display: block;
}

.wog-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--wog-space-lg) 0;
  border-bottom: 1px solid var(--wog-color-border);
}

.wog-menu-item:last-child {
  border-bottom: none;
}

.wog-menu-item__info {
  flex: 1;
}

.wog-menu-item__name {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-lg);
  color: var(--wog-color-white);
  margin-bottom: var(--wog-space-xs);
}

.wog-menu-item__desc {
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
  margin-bottom: var(--wog-space-xs);
}

.wog-menu-item__tags {
  display: flex;
  gap: var(--wog-space-sm);
}

.wog-menu-item__tag {
  font-size: var(--wog-text-xs);
  padding: 2px 8px;
  border-radius: 3px;
  background-color: rgba(201, 169, 110, 0.15);
  color: var(--wog-color-gold);
  font-weight: 500;
}

.wog-menu-item__allergens {
  display: flex;
  gap: 4px;
  margin-top: var(--wog-space-xs);
  flex-wrap: wrap;
}

.wog-menu-item__allergen {
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--wog-color-text-muted);
  font-weight: 500;
}

.wog-menu-item__price {
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-lg);
  font-weight: 500;
  color: var(--wog-color-white);
  white-space: nowrap;
  margin-left: var(--wog-space-xl);
}

/* ==========================================================================
   Reservations Section
   ========================================================================== */

.wog-reservations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wog-space-3xl);
  align-items: stretch;
}

.wog-reservations__info h2 {
  margin-bottom: var(--wog-space-lg);
}

.wog-reservations__rating {
  display: flex;
  align-items: center;
  gap: var(--wog-space-sm);
  margin-bottom: var(--wog-space-xl);
}

.wog-reservations__stars {
  color: var(--wog-color-gold);
  font-size: var(--wog-text-lg);
}

.wog-reservations__rating-text {
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
}

.wog-reservations__contact {
  margin-top: var(--wog-space-xl);
}

.wog-reservations__contact a {
  display: flex;
  align-items: center;
  gap: var(--wog-space-sm);
  margin-bottom: var(--wog-space-sm);
  color: var(--wog-color-text-muted);
}

.wog-reservations__contact a:hover {
  color: var(--wog-color-gold);
}

.wog-reservations__widget {
  background-color: var(--wog-color-dark-card);
  border-radius: var(--wog-border-radius-lg);
  padding: var(--wog-space-xl);
  border: 1px solid var(--wog-color-border);
  width: 100%;
}

/* Force dark text inside the reservation widget */
.wog-reservations__widget,
.wog-reservations__widget * {
  color: var(--wog-color-text-dark);
}

.wog-reservations__widget label {
  color: var(--wog-color-text-dark) !important;
  font-weight: 500;
}

.wog-reservations__widget h1,
.wog-reservations__widget h2,
.wog-reservations__widget h3,
.wog-reservations__widget h4,
.wog-reservations__widget p,
.wog-reservations__widget span,
.wog-reservations__widget div {
  color: var(--wog-color-text-dark) !important;
}

/* Remove plugin's own card styling inside the reservation widget */
.wog-reservations__widget .woorder-reservation-form,
.wog-reservations__widget .woorder-reservation,
.wog-reservations__widget .woorder-reservation-wrapper,
.wog-reservations__widget [class*="woorder-reservation"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: var(--wog-space-sm) 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Ensure form inputs inside the reservation widget use theme styling */
.wog-reservations__widget input,
.wog-reservations__widget select,
.wog-reservations__widget textarea {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: var(--wog-color-text-dark) !important;
  border-radius: var(--wog-border-radius) !important;
  padding: 0.75rem var(--wog-space-md) !important;
  font-family: var(--wog-font-body) !important;
  font-size: var(--wog-text-base) !important;
  width: 100% !important;
}

.wog-reservations__widget input:focus,
.wog-reservations__widget select:focus {
  border-color: var(--wog-color-gold) !important;
  outline: none !important;
}

/* Style the submit button inside reservation widget */
.wog-reservations__widget button[type="submit"],
.wog-reservations__widget .woorder-reservation-submit,
.wog-reservations__widget input[type="submit"] {
  background-color: var(--wog-color-gold) !important;
  color: var(--wog-color-primary-dark) !important;
  border: none !important;
  border-radius: var(--wog-border-radius) !important;
  padding: 0.875rem 2rem !important;
  font-family: var(--wog-font-body) !important;
  font-size: var(--wog-text-sm) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all var(--wog-transition-base) !important;
  width: 100% !important;
}

.wog-reservations__widget button[type="submit"]:hover,
.wog-reservations__widget input[type="submit"]:hover {
  background-color: var(--wog-color-gold-light) !important;
  transform: translateY(-2px) !important;
}

/* Labels inside the widget */
.wog-reservations__widget label {
  color: var(--wog-color-text-light) !important;
  font-size: var(--wog-text-sm) !important;
  font-weight: 500 !important;
  margin-bottom: var(--wog-space-xs) !important;
  display: block !important;
}

/* Reduce internal spacing of the plugin form */
.wog-reservations__widget .woorder-reservation-field,
.wog-reservations__widget .form-group,
.wog-reservations__widget .woorder-field,
.wog-reservations__widget [class*="field"] {
  margin-bottom: var(--wog-space-md) !important;
}

/* ==========================================================================
   Our Spaces Section
   ========================================================================== */

.wog-spaces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wog-space-xl);
}

.wog-space-card {
  position: relative;
  border-radius: var(--wog-border-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.wog-space-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wog-transition-slow);
}

.wog-space-card:hover .wog-space-card__image {
  transform: scale(1.05);
}

/* Subtle overall dark tint across the whole card */
.wog-space-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

.wog-space-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--wog-space-xl);
  /* transparent at top → very dark at bottom where the text sits */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.72) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
  z-index: 2;
}

/* Use .wog-space-card ancestor to beat .wog-section--dark p specificity */
.wog-space-card .wog-space-card__title {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-xl);
  color: #ffffff !important;
  margin-bottom: var(--wog-space-xs);
}

.wog-space-card .wog-space-card__desc {
  font-size: var(--wog-text-sm);
  color: rgba(255, 255, 255, 0.85) !important;
}

.wog-space-card__tags {
  display: flex;
  gap: var(--wog-space-sm);
  margin-top: var(--wog-space-sm);
  flex-wrap: wrap;
}

.wog-space-card__tag {
  font-size: var(--wog-text-xs);
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--wog-color-white);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

/* Testimonials Infinite Slider */
.wog-testimonials-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.wog-testimonials-slider__track {
  display: flex;
  gap: var(--wog-space-xl);
  width: max-content;
  animation: wog-slider-scroll var(--slider-speed, 30s) linear infinite;
}

.wog-testimonials-slider:hover .wog-testimonials-slider__track {
  animation-play-state: paused;
}

@keyframes wog-slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - var(--wog-space-xl) / 2));
  }
}

.wog-testimonial-card {
  background-color: var(--wog-color-dark-card);
  border-radius: var(--wog-border-radius-lg);
  padding: var(--wog-space-2xl);
  border: 1px solid var(--wog-color-border);
  transition:
    transform var(--wog-transition-base),
    box-shadow var(--wog-transition-base);
  width: 350px;
  min-width: 350px;
  flex-shrink: 0;
}

.wog-testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.wog-testimonial-card__stars {
  color: var(--wog-color-gold);
  font-size: var(--wog-text-lg);
  margin-bottom: var(--wog-space-md);
}

.wog-testimonial-card__text {
  font-style: italic;
  font-size: var(--wog-text-base);
  color: var(--wog-color-text-light);
  margin-bottom: var(--wog-space-lg);
  line-height: 1.8;
}

.wog-testimonial-card__author {
  font-size: var(--wog-text-sm);
  font-weight: 500;
  color: var(--wog-color-white);
}

.wog-testimonial-card__occasion {
  font-size: var(--wog-text-xs);
  color: var(--wog-color-text-muted);
}

@media (max-width: 768px) {
  .wog-testimonial-card {
    width: 280px;
    min-width: 280px;
    padding: var(--wog-space-xl);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .wog-testimonials-slider__track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .wog-testimonial-card {
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   Our Story Section
   ========================================================================== */

.wog-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wog-space-3xl);
  align-items: center;
}

.wog-story__image {
  border-radius: var(--wog-border-radius-lg);
  overflow: hidden;
}

.wog-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wog-story__content blockquote {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-2xl);
  font-style: italic;
  color: var(--wog-color-text-light);
  margin-bottom: var(--wog-space-xl);
  line-height: 1.5;
}

.wog-story__stat {
  display: flex;
  align-items: center;
  gap: var(--wog-space-md);
  padding: var(--wog-space-lg);
  background-color: var(--wog-color-dark-card);
  border-radius: var(--wog-border-radius-lg);
  border: 1px solid var(--wog-color-border);
  margin-top: var(--wog-space-xl);
}

.wog-story__stat-number {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-3xl);
  color: var(--wog-color-gold);
}

.wog-story__stat-label {
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
}

/* ==========================================================================
   Visit / Contact Section
   ========================================================================== */

.wog-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wog-space-3xl);
}

.wog-visit__details {
  display: flex;
  flex-direction: column;
  gap: var(--wog-space-xl);
}

.wog-visit__item {
  display: flex;
  gap: var(--wog-space-md);
}

.wog-visit__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 169, 110, 0.1);
  border-radius: var(--wog-border-radius);
  color: var(--wog-color-gold);
  flex-shrink: 0;
}

.wog-visit__label {
  font-size: var(--wog-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wog-color-text-muted);
  margin-bottom: var(--wog-space-xs);
}

.wog-visit__value {
  font-size: var(--wog-text-base);
  color: var(--wog-color-white);
}

.wog-visit__map {
  border-radius: var(--wog-border-radius-lg);
  overflow: hidden;
  min-height: 350px;
  background-color: var(--wog-color-dark-card);
}

.wog-visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.wog-faq__item {
  border-bottom: 1px solid var(--wog-color-border);
}

.wog-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--wog-space-lg) 0;
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-base);
  font-weight: 500;
  color: var(--wog-color-white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.wog-faq__question::after {
  content: "+";
  font-size: var(--wog-text-xl);
  color: var(--wog-color-gold);
  transition: transform var(--wog-transition-fast);
}

.wog-faq__item.active .wog-faq__question::after {
  content: "−";
}

.wog-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--wog-transition-base);
}

.wog-faq__item.active .wog-faq__answer {
  max-height: 500px;
}

.wog-faq__answer p {
  padding-bottom: var(--wog-space-lg);
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.wog-footer {
  background-color: var(--wog-color-secondary-dark);
  border-top: 1px solid var(--wog-color-border);
  padding: var(--wog-space-4xl) 0 var(--wog-space-xl);
}

.wog-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--wog-space-3xl);
  margin-bottom: var(--wog-space-3xl);
}

.wog-footer__brand-desc {
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
  margin-top: var(--wog-space-md);
  line-height: 1.8;
}

.wog-footer__social {
  display: flex;
  gap: var(--wog-space-md);
  margin-top: var(--wog-space-lg);
}

.wog-footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--wog-color-border);
  color: var(--wog-color-text-muted);
  transition: all var(--wog-transition-fast);
}

.wog-footer__social a:hover {
  border-color: var(--wog-color-gold);
  color: var(--wog-color-gold);
}

.wog-footer__heading {
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wog-color-white);
  margin-bottom: var(--wog-space-lg);
}

.wog-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--wog-space-sm);
}

.wog-footer__links ul,
.wog-footer__links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wog-footer__links a {
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
}

.wog-footer__links a:hover {
  color: var(--wog-color-gold);
}

.wog-footer__bottom {
  border-top: 1px solid var(--wog-color-border);
  padding-top: var(--wog-space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--wog-space-md);
}

.wog-footer__copyright {
  font-size: var(--wog-text-xs);
  color: var(--wog-color-text-muted);
}

.wog-footer__acknowledgment {
  font-size: var(--wog-text-xs);
  color: var(--wog-color-text-muted);
  font-style: italic;
}

/* ==========================================================================
   Opening Hours Table
   ========================================================================== */

.wog-hours-table {
  display: table;
  width: 100%;
  font-size: var(--wog-text-sm);
  color: var(--wog-color-text-muted);
}

.wog-hours-row {
  display: table-row;
}

.wog-hours-day {
  display: table-cell;
  padding: 0.25em 1em 0.25em 0;
  font-weight: 500;
  white-space: nowrap;
}

.wog-hours-time {
  display: table-cell;
  padding: 0.25em 0;
  text-align: right;
  white-space: nowrap;
}

/* ==========================================================================
   Mobile Sticky CTA Bar
   ========================================================================== */

.wog-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background-color: var(--wog-color-primary-dark);
  border-top: 1px solid var(--wog-color-border);
  padding: var(--wog-space-sm) var(--wog-space-md);
}

.wog-mobile-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--wog-space-sm);
}

.wog-mobile-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: var(--wog-text-xs);
  color: var(--wog-color-text-muted);
  text-decoration: none;
}

.wog-mobile-bar__item--cta {
  background-color: var(--wog-color-gold);
  color: var(--wog-color-primary-dark);
  padding: var(--wog-space-sm) var(--wog-space-lg);
  border-radius: var(--wog-border-radius);
  font-weight: 600;
}

/* ==========================================================================
   Functions / Events Form
   ========================================================================== */

.wog-form {
  max-width: 600px;
}

.wog-form__group {
  margin-bottom: var(--wog-space-lg);
}

.wog-form__label {
  display: block;
  font-size: var(--wog-text-sm);
  font-weight: 500;
  color: var(--wog-color-text-light);
  margin-bottom: var(--wog-space-sm);
}

.wog-form__input,
.wog-form__textarea,
.wog-form__select {
  width: 100%;
  padding: 0.875rem var(--wog-space-md);
  font-family: var(--wog-font-body);
  font-size: var(--wog-text-base);
  color: var(--wog-color-white);
  background-color: var(--wog-color-dark-card);
  border: 1px solid var(--wog-color-border);
  border-radius: var(--wog-border-radius);
  transition: border-color var(--wog-transition-fast);
}

.wog-form__input:focus,
.wog-form__textarea:focus,
.wog-form__select:focus {
  outline: none;
  border-color: var(--wog-color-gold);
}

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

/* ==========================================================================
   Gift Cards Section
   ========================================================================== */

.wog-gift-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wog-space-3xl);
  align-items: center;
}

.wog-gift-card__visual {
  background: linear-gradient(
    135deg,
    var(--wog-color-dark-card) 0%,
    var(--wog-color-secondary-dark) 100%
  );
  border-radius: var(--wog-border-radius-lg);
  padding: var(--wog-space-3xl);
  border: 1px solid var(--wog-color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wog-gift-card__visual::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.05) 0%,
    transparent 70%
  );
}

.wog-gift-card__amount {
  font-family: var(--wog-font-heading);
  font-size: var(--wog-text-5xl);
  color: var(--wog-color-gold);
  margin: var(--wog-space-lg) 0;
}

.wog-gift-card__tagline {
  font-family: var(--wog-font-heading);
  font-style: italic;
  color: var(--wog-color-text-muted);
}

/* ==========================================================================
   Charcoal Grill Feature
   ========================================================================== */

.wog-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.wog-feature-split__image {
  position: relative;
  overflow: hidden;
}

.wog-feature-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wog-feature-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--wog-space-4xl);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.wog-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.wog-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.wog-animate--delay-1 {
  transition-delay: 0.1s;
}
.wog-animate--delay-2 {
  transition-delay: 0.2s;
}
.wog-animate--delay-3 {
  transition-delay: 0.3s;
}
.wog-animate--delay-4 {
  transition-delay: 0.4s;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .wog-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .wog-spaces {
    grid-template-columns: 1fr 1fr;
  }

  .wog-feature-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wog-nav__links {
    display: none;
  }

  .wog-nav__actions {
    display: none;
  }

  .wog-nav__toggle {
    display: flex;
  }

  .wog-mobile-bar {
    display: block;
  }

  .wog-hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .wog-reservations {
    grid-template-columns: 1fr;
  }

  .wog-story {
    grid-template-columns: 1fr;
  }

  .wog-visit {
    grid-template-columns: 1fr;
  }

  .wog-gift-cards {
    grid-template-columns: 1fr;
  }

  .wog-spaces {
    grid-template-columns: 1fr;
  }

  .wog-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--wog-space-xl);
  }

  .wog-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .wog-container {
    padding: 0 var(--wog-space-md);
  }

  .wog-hero__badges {
    flex-direction: column;
  }

  .wog-menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--wog-space-md);
  }
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

.alignwide {
  max-width: var(--wog-max-width-wide);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.wp-block-image img {
  border-radius: var(--wog-border-radius-lg);
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
