/* =====================================================
   PADDY'S VIEW HOTEL - LANDING PAGE STYLES
   ===================================================== */

/* ROOT VARIABLES — LIGHT THEME (default) */
:root {
  /* Neutral surfaces */
  --bg: #f7f5f1;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #fbfaf7;
  --dark: #201d17;
  --dark-2: #2c2822;
  --bg-dark: #201d17;
  --text: #201d17;
  --text-inv: #f7f5f1;
  --text-on-dark: #ffffff;
  --text-muted-dark: rgba(255,255,255,0.7);
  --muted: #767068;
  --muted-inv: #c7c1b7;
  --line: rgba(32,29,23,.09);
  --line-2: rgba(32,29,23,.14);
  --line-inv: rgba(255,255,255,.12);
  --line-dark: rgba(255,255,255,0.1);

  /* Refined brass/gold accent */
  --gold: #b8863f;
  --gold-light: #e6cd9a;
  --bronze: #8a6430;

  /* Feedback colors */
  --success: #1f9d63;

  /* Spacing & sizing */
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-card: 0 1px 0 rgba(20,18,14,.03), 0 12px 30px -18px rgba(20,18,14,.20);
  --shadow-luxury: 0 20px 50px -22px rgba(20,18,14,.28);

  color-scheme: light;
}

/* DARK THEME OVERRIDES */
[data-theme="dark"] {
  --bg: #16140f;
  --bg-2: #1c1a15;
  --surface: #1e1c17;
  --surface-2: #221f19;
  --dark: #0f0d0a;
  --dark-2: #17150f;
  --bg-dark: #0f0d0a;
  --text: #f3efe6;
  --text-inv: #16140f;
  --text-on-dark: #f3efe6;
  --text-muted-dark: rgba(243,239,230,0.65);
  --muted: #a8a196;
  --muted-inv: #4b453b;
  --line: rgba(255,255,255,.09);
  --line-2: rgba(255,255,255,.14);
  --line-inv: rgba(0,0,0,.20);
  --line-dark: rgba(255,255,255,0.08);

  --gold: #d3ab63;
  --gold-light: #e9d3a4;
  --bronze: #b3894a;

  --shadow-card: 0 1px 0 rgba(0,0,0,.20), 0 12px 30px -18px rgba(0,0,0,.55);
  --shadow-luxury: 0 20px 50px -22px rgba(0,0,0,.65);

  color-scheme: dark;
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--dark);
}

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

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

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

/* LOADING SCREEN */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s, background 0.35s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#loader .wrap {
  position: relative;
  width: 168px;
  height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

#loader .loader-logo-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(184,134,63,0.25));
}

[data-theme="dark"] #loader .loader-logo-img {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)) brightness(0) invert(1);
}

#loader .loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}

#loader .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* NAVIGATION */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 36px);
  max-width: 1240px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-wrap.scrolled {
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow-luxury);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 10px 14px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.logo-img-dark { display: none; }
[data-theme="dark"] .logo-img-light { display: none; }
[data-theme="dark"] .logo-img-dark { display: block; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: block; }

.btn-nav {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: var(--bg);
}

.btn-primary {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--bronze);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.menu-btn:hover {
  background: var(--bg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.close-menu:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-links a {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,0.35), rgba(10,8,5,0.55));
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  gap: 8px;
}

.hero-dots .dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.hero-dots .dot-btn.active {
  width: 24px;
  background: var(--gold-light);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  margin-bottom: 48px;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.display {
  font-size: clamp(36px, 5.6vw, 68px);
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* BOOKING WIDGET */
.booking-widget {
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-luxury);
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.booking-field {
  min-width: 0;
  width: 100%;
}

.booking-field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.booking-field label i {
  color: var(--gold);
  font-size: 12px;
}

.booking-input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-size: 13.5px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  transition: all 0.25s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

select.booking-input {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23767068' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

input[type="date"].booking-input::-webkit-calendar-picker-indicator {
  filter: opacity(0.6);
  cursor: pointer;
}

.booking-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 14%, transparent);
}

.booking-btn {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.booking-btn:hover {
  background: var(--bronze);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* LOCATION CARD */
.location-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-luxury);
  max-width: 280px;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.location-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.location-address {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

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

/* SECTION */
.section {
  padding: 100px 0;
}

.section.bg-light {
  background: var(--bg-2);
}

.section-head {
  margin-bottom: 60px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.feature-item i {
  font-size: 20px;
  color: var(--gold);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,169,98,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ROOMS GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.room-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.room-badge.gold {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
}

.room-details {
  padding: 24px;
}

.room-details h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.room-price {
  color: var(--gold);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.room-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

.room-details p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.amenity-tag {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* AMENITIES GRID */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.amenity-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface-2);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.amenity-item:hover {
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.amenity-item i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}

.amenity-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.amenity-item p {
  font-size: 14px;
  color: var(--muted);
}

/* RESTAURANT CONTENT */
.restaurant-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.restaurant-image-stack {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.stack-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--surface);
}

.restaurant-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.restaurant-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

.restaurant-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-row {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 14px;
}

.feature-row i {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-row strong {
  color: var(--text);
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

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

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

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

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

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  transition: all 0.3s ease;
}

.input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,98,0.1);
}

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

.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border-radius: 16px;
  margin-bottom: 16px;
}

.contact-card i {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 60px 0 30px;
}

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-logo-dark {
  display: none;
}

[data-theme="dark"] .footer-logo-light {
  display: none;
}

[data-theme="dark"] .footer-logo-dark {
  display: block;
}

.footer-col p {
  color: var(--text-muted-dark);
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-on-dark);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: var(--text-muted-dark);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted-dark);
  font-size: 14px;
}

.contact-list i {
  color: var(--gold);
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted-dark);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted-dark);
  font-size: 14px;
}

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

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablets */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .restaurant-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-card {
    bottom: 20px;
    right: 20px;
    max-width: 280px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .rooms-grid,
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .location-card {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 520px) {
  .nav-wrap {
    top: 12px;
    width: calc(100% - 24px);
  }
  
  .nav-inner {
    padding: 10px 16px;
  }
  
  .logo img {
    height: 32px;
  }
  
  .nav-actions {
    display: none;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .booking-widget {
    padding: 20px;
  }
  
  .section-head {
    margin-bottom: 40px;
  }
}
