/*
Theme Name: Ammerstube
Theme URI: https://ammerstube.de
Description: Premium holiday apartment theme for Ammerstube in Oberammergau
Version: 1.0
Author: Ammerstube
Author URI: https://ammerstube.de
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ammerstube
Domain Path: /languages
*/

:root {
  --color-bg: #FAF7F0;
  --color-dark: #232D1F;
  --color-dark-secondary: #33422E;
  --color-green: #A9C6A0;
  --color-green-light: #E3EBDD;
  --color-green-dark: #5C7A52;
  --color-text-primary: #2E3A29;
  --color-text-secondary: #4B5744;
  --color-text-tertiary: #5C6B53;
  --color-text-light: #B7C2AE;
  --color-border: #E4E0D4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  gap: 12px;
  min-height: auto;
  height: auto;
  margin: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  height: auto;
  margin: 0;
  padding: 0;
}

.site-logo img,
.site-logo .custom-logo {
  height: 48px;
  width: auto;
  max-width: none;
  max-height: none;
  display: block;
  margin: 0;
  padding: 0;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.site-name {
  font-family: 'Jost', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-primary);
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
  height: auto;
}

.site-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: var(--color-text-secondary);
  display: none;
  line-height: 1.15;
  max-width: 140px;
  margin: 1px 0 0 0;
  padding: 0;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  line-height: 1;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.primary-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}

.primary-nav a:hover {
  color: var(--color-dark-secondary);
}

.primary-nav a.active,
.primary-nav a.current-menu-item {
  color: var(--color-dark-secondary);
  border-bottom: 2px solid var(--color-green);
  padding-bottom: 4px;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lang-toggle {
  background: none;
  border: 1px solid #C7CFC0;
  border-radius: 20px;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark-secondary);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  line-height: 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle:hover {
  background: var(--color-green-light);
  border-color: var(--color-green);
}

.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-switcher .lang-toggle {
  padding: 6px 10px;
  font-size: 12px;
  min-width: 30px;
  text-align: center;
}

.lang-switcher .lang-toggle.active {
  background: var(--color-green-light);
  border-color: var(--color-green);
  cursor: default;
  opacity: 1;
}

.btn-header {
  background: var(--color-dark-secondary);
  color: var(--color-bg);
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-header:hover {
  background: var(--color-dark);
}

.btn-hero {
  background: var(--color-dark-secondary);
  color: var(--color-bg);
  border: 1.5px solid var(--color-dark-secondary);
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
}

/* Backward compatibility */
.btn-primary {
  background: var(--color-dark-secondary);
  color: var(--color-bg);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-text-primary);
  line-height: 1;
  flex-shrink: 0;
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: 0 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 247, 240, 0.94) 0%, rgba(250, 247, 240, 0.68) 42%, rgba(250, 247, 240, 0.18) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: fadeUp 0.7s ease-out;
}

.hero-kicker {
  font-family: 'Jost', serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--color-green-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Jost', serif;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 22px;
  color: var(--color-dark);
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 34px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.btn-secondary {
  background: transparent;
  color: var(--color-dark-secondary);
  border: 1.5px solid var(--color-dark-secondary);
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-green-light);
  border-color: var(--color-green);
}

.hero .btn-primary {
  padding: 15px 28px;
  font-size: 15px;
}

/* ========================================
   PAGE TEMPLATES
   ======================================== */

.page-hero {
  padding: 76px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-family: 'Jost', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--color-dark);
  max-width: 760px;
}

/* ========================================
   SECTIONS
   ======================================== */

.highlights {
  padding: 90px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.highlight-item {
  text-align: center;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Jost', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark-secondary);
}

.highlight-item h3 {
  font-family: 'Jost', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.highlight-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-tertiary);
  margin: 0;
}

.section-intro {
  padding: 20px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.section-kicker {
  font-family: 'Jost', serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  color: var(--color-green-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Jost', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--color-dark);
}

.section-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0 0 28px;
}

.section-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Rooms Section */
.rooms-section {
  padding: 100px 48px;
  background: var(--color-dark);
}

.rooms-header {
  max-width: 1200px;
  margin: 0 auto 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.rooms-header .section-kicker {
  color: var(--color-green);
}

.rooms-header .section-title {
  color: var(--color-bg);
}

.rooms-header a {
  color: var(--color-green);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--color-green);
  padding-bottom: 3px;
}

.rooms-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.room-card img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.room-card h3 {
  font-family: 'Jost', serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-bg);
  margin-bottom: 6px;
}

.room-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}

/* Area Section */
.area-section {
  padding: 100px 48px;
  background: var(--color-green-light);
}

.area-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.area-section .section-kicker {
  color: var(--color-green-dark);
}

.area-section .section-title {
  color: var(--color-dark);
}

.area-section .section-text {
  color: var(--color-text-secondary);
}

.area-section a {
  color: var(--color-dark-secondary);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--color-dark-secondary);
  padding-bottom: 3px;
  display: inline-block;
}

/* Workation Section */
.workation-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.work-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  margin-top: 24px;
}

.work-tag {
  background: var(--color-green-light);
  color: var(--color-dark-secondary);
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.workation-section a,
.section-intro a,
.area-section a {
  color: var(--color-dark-secondary);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--color-dark-secondary);
  padding-bottom: 3px;
  display: inline-block;
  transition: all 0.3s ease;
}

.workation-section a:hover,
.section-intro a:hover,
.area-section a:hover {
  transform: translateX(4px);
}

/* Booking Banner */
.booking-banner {
  padding: 90px 48px;
  background: var(--color-dark-secondary);
  text-align: center;
}

.booking-content {
  max-width: 640px;
  margin: 0 auto;
}

.booking-banner h2 {
  font-family: 'Jost', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-bg);
  margin: 0 0 16px;
}

.booking-banner p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0 0 32px;
}

.btn-booking {
  background: var(--color-green);
  color: var(--color-dark);
  padding: 16px 34px;
  border-radius: 4px;
  font-size: 15.5px;
  font-weight: 700;
  display: inline-block;
}

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

.site-footer {
  padding: 56px 48px 36px;
  background: var(--color-dark);
  color: var(--color-text-light);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  grid-auto-flow: dense;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-brand img,
.footer-brand .custom-logo {
  height: 28px;
  width: auto;
  display: block;
}

.footer-brand span {
  font-family: 'Jost', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-bg);
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 260px;
  margin: 0;
  color: #8A9581;
}

.footer-heading {
  font-family: 'Jost', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: var(--color-text-light);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-green);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid #354131;
  font-size: 13px;
  color: #6E7965;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom-left {
  flex: 1;
}

.footer-bottom-right {
  flex-shrink: 0;
}

.footer-legal-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-nav a {
  color: #6E7965;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal-nav a:hover {
  color: var(--color-green);
}

/* ========================================
   WORDPRESS CONTENT
   ======================================== */

.entry-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.entry-content p {
  line-height: 1.75;
  margin-bottom: 20px;
}

.entry-content h1 {
  font-family: 'Jost', serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.entry-content h2 {
  font-family: 'Jost', serif;
  font-size: 32px;
  margin: 40px 0 20px;
}

.entry-content h3 {
  font-family: 'Jost', serif;
  font-size: 24px;
  margin: 30px 0 15px;
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */

@media (max-width: 1024px) {
  .site-header {
    padding: 6px 24px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .site-logo {
    height: 28px;
  }

  .site-logo img,
  .site-logo .custom-logo {
    height: 28px;
    max-width: 60px;
    max-height: 28px;
  }

  .site-name {
    font-size: 14px;
  }

  .site-tagline {
    font-size: 8px;
    max-width: 120px;
  }

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

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

  .section-intro,
  .area-content,
  .workation-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {
  .site-header {
    padding: 5px 12px;
    flex-wrap: wrap;
    gap: 4px;
  }

  .site-logo {
    order: 1;
    gap: 5px;
    height: 24px;
  }

  .site-logo img,
  .site-logo .custom-logo {
    height: 24px;
    max-width: 50px;
    max-height: 24px;
  }

  .site-name {
    font-size: 12px;
    line-height: 1;
  }

  .site-tagline {
    font-size: 8px;
    max-width: 110px;
    line-height: 1.1;
  }

  .mobile-menu-toggle {
    display: block;
    order: 2;
  }

  .header-actions {
    order: 3;
    gap: 6px;
  }

  .lang-toggle {
    padding: 6px 12px;
    font-size: 11px;
    height: 32px;
  }

  .btn-primary {
    padding: 8px 16px;
    font-size: 12px;
    height: 32px;
  }

  .primary-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 8px 0 0 0;
    border-top: 1px solid var(--color-border);
  }

  .primary-nav.active {
    display: flex;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--color-border);
  }

  .primary-nav li:last-child {
    border-bottom: none;
  }

  .primary-nav a {
    padding: 12px 8px;
    font-size: 12px;
    display: block;
    border-bottom: none !important;
  }

  .primary-nav a.active,
  .primary-nav a.current-menu-item {
    background: var(--color-green-light);
    padding: 12px 12px;
  }

  .hero {
    padding: 0 16px;
    min-height: 60vh;
    align-items: flex-start;
    padding-top: 40px;
  }

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

  .hero p {
    font-size: 14px;
  }

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

  .highlights {
    padding: 60px 16px;
  }

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

  .section-intro,
  .area-content,
  .workation-section {
    padding: 40px 16px;
    gap: 32px;
  }

  .rooms-section,
  .area-section {
    padding: 60px 16px;
  }

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

  .booking-banner {
    padding: 60px 16px;
  }

  .site-footer {
    padding: 40px 16px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand img,
  .footer-brand .custom-logo {
    height: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .footer-bottom-left {
    width: 100%;
  }

  .footer-bottom-right {
    width: 100%;
    flex-shrink: 1;
  }

  .footer-legal-nav,
  .footer-legal-nav ul {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-legal-nav li {
    width: 100%;
  }

  .footer-legal-nav a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
}

/* ========================================
   BLOCK PATTERNS - HERO
   ======================================== */

.ammerstube-hero-block {
  padding: 0 48px !important;
  display: flex !important;
  align-items: center !important;
}

.ammerstube-hero-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,247,240,0.94) 0%, rgba(250,247,240,0.68) 42%, rgba(250,247,240,0.18) 100%) !important;
  z-index: 0;
  pointer-events: none;
}

.ammerstube-hero-block > * {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.ammerstube-hero-block h1 {
  font-family: 'Jost', sans-serif;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;
  color: #232D1F;
}

.ammerstube-hero-block .wp-block-buttons {
  display: flex;
  gap: 16px;
  width: 100%;
}

.ammerstube-hero-block .wp-block-button__link {
  border-radius: 4px;
  font-weight: 600;
  padding: 15px 28px !important;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Section Container - Max Width Constraint */
.ammerstube-section-container {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

  .entry-content {
    padding: 40px 16px;
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
  .site-header {
    padding: 6px 10px;
  }

  .site-logo img,
  .site-logo .custom-logo {
    height: 24px;
    max-width: 48px;
    max-height: 24px;
  }

  .site-name {
    font-size: 12px;
  }

  .site-tagline {
    font-size: 8px;
    max-width: 100px;
  }

  .lang-toggle {
    padding: 3px 8px;
    font-size: 9px;
  }

  .btn-primary {
    padding: 4px 10px;
    font-size: 9px;
  }

  .lang-toggle {
    padding: 5px 10px;
    font-size: 10px;
    height: 28px;
  }

  .btn-primary {
    padding: 6px 12px;
    font-size: 11px;
    height: 28px;
  }

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

  .hero p {
    font-size: 13px;
  }

  .highlights {
    padding: 40px 12px;
  }

  .section-intro,
  .area-content,
  .workation-section {
    padding: 32px 12px;
  }

  .section-title {
    font-size: 20px;
  }

  .rooms-section,
  .area-section,
  .booking-banner {
    padding: 40px 12px;
  }

  .site-footer {
    padding: 32px 12px 20px;
  }

  .entry-content {
    padding: 32px 12px;
  }
}

/* ========================================
   EXTRA SMALL (360px)
   ======================================== */

@media (max-width: 360px) {
  .site-header {
    padding: 6px 10px;
  }

  .site-logo img,
  .site-logo .custom-logo {
    height: 20px;
    max-width: 44px;
    max-height: 20px;
  }

  .site-name {
    font-size: 11px;
  }

  .site-tagline {
    font-size: 7px;
    max-width: 90px;
  }

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

  .hero p {
    font-size: 12px;
  }

  .section-title {
    font-size: 18px;
  }
}
