/*
Theme Name: BentArk Hotel
Theme URI: https://bentarkhotel.com
Author: BentArk Hotel
Author URI: https://bentarkhotel.com
Description: A premium multi-page WordPress theme for BentArk Hotel - Experience Ethiopian hospitality at its finest in Addis Ababa. Features rooms, dining, gallery, reservations, special offers, FAQ, and feedback pages.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bentark-hotel
Tags: custom-colors, custom-menu, featured-images, theme-options, translation-ready, full-width-template
*/

/* ===== CSS Variables ===== */
:root {
  --hotel-gold: #D4A574;
  --hotel-bronze: #8B6914;
  --hotel-burgundy: #722F37;
  --hotel-cream: #FAF7F2;
  --hotel-charcoal: #2C2C2C;
  --hotel-warm-white: #FFFEF9;
  --hotel-dark: #1A1A1A;
  --hotel-primary: #2C2C2C;
  --hotel-muted: #666666;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--hotel-charcoal);
  background-color: var(--hotel-warm-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--hotel-charcoal);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hotel-gold), var(--hotel-bronze));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--hotel-charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--hotel-charcoal);
  border: 2px solid var(--hotel-charcoal);
}

.btn-outline:hover {
  background: var(--hotel-charcoal);
  color: white;
}

.btn-white {
  background: white;
  color: var(--hotel-charcoal);
}

.btn-white:hover {
  background: var(--hotel-cream);
  transform: translateY(-2px);
}

.btn-green {
  background: transparent;
  color: #16a34a;
  border: 2px solid #16a34a;
}

.btn-green:hover {
  background: #16a34a;
  color: white;
}

.btn-full { width: 100%; }

/* ===== Header & Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hotel-charcoal);
}

.site-logo span {
  color: var(--hotel-gold);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: var(--hotel-charcoal);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
  color: var(--hotel-gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hotel-gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after,
.main-nav .current_page_item a::after {
  width: 100%;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 12px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--hotel-charcoal);
  margin: 5px 0;
  transition: all 0.3s ease;
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-hero.hero-full {
  height: 100vh;
  min-height: 700px;
}

.page-hero.hero-short {
  height: 50vh;
  min-height: 350px;
}

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

.page-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.page-hero .hero-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--hotel-gold);
  margin-bottom: 20px;
}

.page-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: white;
  letter-spacing: -0.5px;
}

.page-hero .hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Gradient Hero (no image) ===== */
.gradient-hero {
  background: linear-gradient(135deg, var(--hotel-gold), var(--hotel-bronze));
  padding: 100px 0 60px;
  text-align: center;
  color: white;
}

.gradient-hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 15px;
}

.gradient-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== Section Styling ===== */
.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hotel-gold);
  margin-bottom: 15px;
}

.section-title {
  margin-bottom: 20px;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--hotel-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-dark {
  background: var(--hotel-dark);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: white;
}

.section-cream {
  background: var(--hotel-cream);
}

.section-white {
  background: white;
}

.section-muted {
  background: #f8f9fa;
}

.text-center { text-align: center; }
.text-gold { color: var(--hotel-gold); }
.text-muted { color: var(--hotel-muted); }
.text-white { color: white; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* ===== Grid Utilities ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-2-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ===== Cards ===== */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-body {
  padding: 30px;
}

.card-image {
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content h2 {
  color: var(--hotel-charcoal);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hotel-gold), var(--hotel-bronze));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-icon-light {
  width: 56px;
  height: 56px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hotel-gold);
  font-size: 24px;
  flex-shrink: 0;
}

/* ===== Rooms ===== */
.room-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.room-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-card-horizontal {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.room-card-horizontal .room-image {
  height: 100%;
  min-height: 300px;
}

.room-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--hotel-charcoal);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}

.room-content {
  padding: 30px;
}

.room-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.room-description {
  color: var(--hotel-muted);
  margin-bottom: 15px;
}

.room-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--hotel-muted);
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.amenity-tag {
  background: var(--hotel-cream);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--hotel-muted);
}

.room-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== Dining ===== */
.dining-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--hotel-gold);
  border-color: var(--hotel-gold);
  color: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.menu-item:hover {
  background: rgba(255,255,255,0.05);
}

.menu-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.menu-item-price {
  color: var(--hotel-gold);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 20px;
}

/* Dining highlights */
.highlight-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.highlight-card .card-body {
  padding: 20px;
  text-align: center;
}

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: transparent;
  color: var(--hotel-charcoal);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--hotel-charcoal);
  border-color: var(--hotel-charcoal);
  color: white;
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 30px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 3px;
}

.gallery-caption p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===== Special Offers ===== */
.offer-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #eee;
  transition: box-shadow 0.3s ease;
}

.offer-card:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.offer-header {
  background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(212,165,116,0.05));
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.offer-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.offer-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,165,116,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--hotel-gold);
}

.offer-badge {
  background: var(--hotel-charcoal);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.offer-discount {
  display: inline-block;
  background: rgba(212,165,116,0.2);
  color: var(--hotel-gold);
  font-size: 1.75rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
}

.offer-body {
  padding: 25px;
}

.offer-features {
  list-style: none;
  margin: 20px 0;
}

.offer-features li {
  padding: 6px 0;
  color: var(--hotel-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.offer-features li::before {
  content: '•';
  color: var(--hotel-gold);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 3px;
}

.offer-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.offer-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hotel-gold);
}

.offer-validity {
  font-size: 0.9rem;
  color: var(--hotel-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}

/* ===== Reservation Form ===== */
.reservation-form {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 40px;
  border: 1px solid #eee;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: var(--hotel-charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--hotel-gold);
  box-shadow: 0 0 0 3px rgba(212,165,116,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: var(--hotel-gold);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hotel-gold);
  flex-shrink: 0;
  font-size: 20px;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-card p, .contact-card a {
  color: var(--hotel-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--hotel-gold);
}

/* Dark contact form */
.contact-form-dark {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
}

.contact-form-dark .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-dark .form-group input,
.contact-form-dark .form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.contact-form-dark .form-group input:focus,
.contact-form-dark .form-group textarea:focus {
  border-color: var(--hotel-gold);
  background: rgba(255, 255, 255, 0.15);
}

.contact-form-dark .form-group input::placeholder,
.contact-form-dark .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FAQ ===== */
.faq-category {
  margin-bottom: 40px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--hotel-cream);
}

.faq-category-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,165,116,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hotel-gold);
  font-size: 18px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  background: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--hotel-charcoal);
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--hotel-cream);
}

.faq-question .faq-toggle {
  font-size: 1.5rem;
  color: var(--hotel-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--hotel-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== Feedback / Reviews ===== */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.review-stars {
  color: var(--hotel-gold);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-text {
  color: var(--hotel-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--hotel-charcoal);
}

.review-location {
  font-size: 0.9rem;
  color: var(--hotel-muted);
}

.review-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}

/* Star rating input */
.star-rating {
  display: flex;
  gap: 5px;
}

.star-rating .star {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating .star.filled,
.star-rating .star:hover,
.star-rating .star:hover ~ .star {
  color: var(--hotel-gold);
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 40px 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--hotel-gold), var(--hotel-bronze));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.service-title {
  margin-bottom: 10px;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  color: white;
}

.cta-section.cta-primary {
  background: var(--hotel-charcoal);
}

.cta-section.cta-gold {
  background: linear-gradient(135deg, var(--hotel-gold), var(--hotel-bronze));
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

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

/* ===== Payment Icons ===== */
.payment-methods {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ===== Social Links ===== */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--hotel-gold);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hotel-gold);
  margin-bottom: 15px;
}

.footer-logo span {
  color: white;
}

.footer-title {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--hotel-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Map Section ===== */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* ===== Form Messages ===== */
.form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .menu-toggle { display: block; }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .main-nav.active { display: block; }
  
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-cta { display: none; }

  .page-hero .hero-title { font-size: 2.5rem; }
  .page-hero .hero-description { font-size: 1rem; }
  
  .about-grid,
  .dining-content,
  .contact-grid,
  .grid-2,
  .grid-2-wide {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .grid-3,
  .grid-4,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .room-card-horizontal { grid-template-columns: 1fr; }
  .room-card-horizontal .room-image { min-height: 250px; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .social-links { justify-content: center; }
  .payment-methods { justify-content: center; }
  
  .section { padding: 60px 0; }
  .gradient-hero { padding: 80px 0 50px; }
  .gradient-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
