:root {
  --bg-primary: #0f172a;
  --bg-secondary: #111827;
  --bg-card: #ffffff;
  --bg-light: #f8fafc;
  --accent-primary: #c8a97e;
  --accent-primary-hover: #b3956b;
  --accent-secondary: #64748b;
  --text-primary: #0f172a;
  --text-secondary: #6b7280;
  --text-light: #ffffff;
  --container-max-width: 1200px;
  --spacing-desktop: 100px;
  --spacing-tablet: 70px;
  --spacing-mobile: 50px;
  --border-radius: 12px;
  --transition-speed: 0.3s;
  --shadow-sm: 0 4px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--spacing-desktop) 0;
}

.section-bg-white {
  background-color: var(--bg-card);
}

.section-bg-dark {
  background-color: var(--bg-primary);
  color: var(--text-light);
}

.section-bg-dark h1, 
.section-bg-dark h2, 
.section-bg-dark h3, 
.section-bg-dark p {
  color: var(--text-light);
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-bg-dark .section-header p {
  color: #cbd5e1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition-speed) ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 169, 126, 0.4);
  color: var(--text-light);
}

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

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--bg-primary);
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
  padding: 24px 0;
  background-color: transparent;
}

.header.scrolled {
  background-color: var(--bg-primary);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}

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

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

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

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

.nav-links .btn {
  color: var(--text-light);
}

.nav-links .btn::after {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Page Hero (Inner Pages) */
.page-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  color: var(--text-light);
  padding-top: 80px; /* Offset for header */
}

.page-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.page-hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  color: #e2e8f0;
}

/* Main Hero (Home Page) */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 24px;
  color: var(--text-light);
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #e2e8f0;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

/* Booking Bar */
.booking-section {
  position: relative;
  margin-top: -60px;
  z-index: 20;
  padding: 0 24px;
}

.booking-bar {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background-color: var(--bg-light);
  transition: border-color var(--transition-speed) ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
}

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

.room-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

.room-img-wrapper {
  height: 250px;
  overflow: hidden;
}

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

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

.room-details {
  padding: 24px;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.room-price {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.room-price span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.room-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.room-features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.amenity-card {
  text-align: center;
  padding: 40px 24px;
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.amenity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  background-color: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.amenity-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.amenity-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Dining Section */
.dining-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dining-img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.dining-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.dining-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.dining-features {
  margin-bottom: 32px;
}

.dining-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 500;
}

.dining-features li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: bold;
}

/* Internal Pages General Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}

.content-sidebar {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.content-sidebar h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.sidebar-links li {
  margin-bottom: 16px;
}

.sidebar-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--accent-primary);
}

.content-main {
  background-color: var(--bg-card);
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.content-main h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.content-main h3 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-main p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.content-main ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.content-main li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* FAQ Accordion */
.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background-color: var(--bg-light);
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--bg-card);
}

.faq-answer p {
  padding: 20px 0;
  margin: 0;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Footer */
.footer {
  background-color: var(--bg-secondary);
  color: #cbd5e1;
  padding: 80px 0 24px;
}

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

.footer-brand .logo {
  display: block;
  margin-bottom: 24px;
}

.footer-brand p {
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background-color var(--transition-speed) ease;
}

.social-icon:hover {
  background-color: var(--accent-primary);
}

.footer-title {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: #94a3b8;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Media Queries */
@media (max-width: 1024px) {
  :root {
    --spacing-desktop: var(--spacing-tablet);
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .booking-form {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .dining-showcase {
    gap: 32px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-desktop: var(--spacing-mobile);
  }

  .header {
    background-color: var(--bg-primary);
    padding: 16px 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .page-hero-content h1 {
    font-size: 2.5rem;
  }

  .booking-section {
    margin-top: -30px;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
  }
  
  .rooms-grid, .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .dining-showcase {
    grid-template-columns: 1fr;
  }
  
  .dining-content {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .content-main {
    padding: 24px;
  }
}