:root {
  --primary-color: #b8860b; /* Sophisticated Dark Goldenrod */
  --secondary-color: #0f0f0f; /* Deep Charcoal */
  --accent-color: #faf9f6; /* Off-white / Cream */
  --text-color: #1a1a1a;
  --light-text: #ffffff;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(0, 0, 0, 0.6);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--accent-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--accent-color);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 20px 0;
}

header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

header:not(.scrolled) .nav-links a {
    color: #fff;
}

header:not(.scrolled) .logo {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Outer Area + Reception/main-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

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

.hero-content h1 {
  font-size: 5rem;
  color: var(--light-text);
  margin-bottom: 25px;
  letter-spacing: -1px;
  animation: fadeInUp 1.2s ease;
}

.hero-content p {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 1px;
  opacity: 0.9;
  animation: fadeInUp 1.4s ease;
}

.btn {
  display: inline-block;
  padding: 18px 45px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 0; /* Modern Sharp Corners */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.btn:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(184, 134, 11, 0.1);
}

/* Sections */
section {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.section-title p {
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Rooms Card */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.room-card {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.room-card.horizontal {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 0;
}

.room-card.horizontal .room-img {
    flex: 1;
    height: auto;
    min-height: 450px;
}

.room-card.horizontal .room-info {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.room-img {
  height: 350px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

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

.room-info {
  padding: 40px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.room-info h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.room-info p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.room-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

/* Feature Icons */
.feature-card {
    padding: 50px 30px;
    background: #fff;
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.feature-card:hover {
    border-top-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Footer */
footer {
  background: var(--secondary-color);
  color: var(--light-text);
  padding: 100px 0 30px;
}

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

.footer-info h3 {
  color: var(--light-text);
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.footer-info p {
  color: #999;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact-link {
  color: #999;
}

.footer-contact-link:hover {
  color: var(--primary-color);
}

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

.footer-links a {
    color: #999;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #555;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal Helper Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none;
  }
  .section-title h2 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .room-card.horizontal {
    flex-direction: column;
  }
  .room-card.horizontal .room-img {
    height: 300px;
    min-height: auto;
  }
}

/* Virtual Tour Section */
#virtual-tour {
    background: var(--accent-color);
}

.tour-container {
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
    line-height: 0;
}

@media (max-width: 768px) {
    .tour-container iframe {
        height: 400px;
    }
}
