@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-bg: #FDFCF9;
  --color-text: #1C1B1A;
  --color-accent: #D4AF37; /* Champagne Gold */
  --color-surface: #FFFFFF;
  --color-muted: #8E8B85;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-text);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(253, 252, 249, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 8%;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}
.navbar.scrolled .logo, .navbar.scrolled .navlist a {
  color: var(--color-text);
}

.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  transition: 0.4s;
}

.navlist {
  display: flex;
  gap: 40px;
  align-items: center;
}
.navlist a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  transition: 0.3s;
}
.navlist a:hover {
  color: var(--color-accent) !important;
}

.btn-book {
  background: var(--color-accent);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 0;
  font-size: 13px !important;
  letter-spacing: 2px;
  border: 1px solid var(--color-accent);
  transition: 0.4s;
}
.btn-book:hover {
  background: transparent;
  color: var(--color-accent) !important;
}

/* Mobile Menu */
#menu-icon {
  font-size: 28px;
  color: #fff;
  display: none;
  cursor: pointer;
}
.navbar.scrolled #menu-icon { color: var(--color-text); }

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
}

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

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: -1;
}

.hero-content {
  z-index: 1;
}
.hero-subtitle {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 14px;
  font-family: var(--font-sans);
  margin-bottom: 20px;
}
.hero-title {
  color: #fff;
  font-size: 80px;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 30px;
}
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Floating Booking Bar */
.booking-bar {
  background: var(--color-surface);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  padding: 30px 40px;
  display: flex;
  gap: 30px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1000px;
  z-index: 10;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0,0,0,0.1);
  padding-right: 20px;
}
.booking-field:last-child {
  border-right: none;
  padding-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.booking-field input, .booking-field select {
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  background: var(--color-text);
  color: #fff;
  border: none;
  padding: 16px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-submit:hover {
  background: var(--color-accent);
}

/* Sections */
.section-padding {
  padding: 150px 8% 100px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-text h2 {
  font-size: 45px;
  margin-bottom: 25px;
  line-height: 1.2;
}
.section-text p {
  color: var(--color-muted);
  font-size: 16px;
  margin-bottom: 35px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.4s;
}
.btn-outline:hover {
  background: var(--color-text);
  color: #fff;
}

.image-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.image-container:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--color-text);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  font-size: 14px;
  letter-spacing: 1px;
}
footer span {
  color: var(--color-accent);
}

/* Responsiveness */
@media (max-width: 1000px) {
  .hero-title { font-size: 60px; }
  .booking-bar {
    flex-wrap: wrap;
    bottom: -100px;
    width: 90%;
  }
  .booking-field { min-width: 40%; margin-bottom: 20px; border-right: none;}
  .section-padding { padding-top: 180px; }
  .section-grid { grid-template-columns: 1fr; gap: 40px; }
  .image-container { height: 400px; }
}

@media (max-width: 768px) {
  #menu-icon { display: block; }
  .navlist {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
  }
  .navlist.active { right: 0; }
  .navlist a { color: var(--color-text) !important; font-size: 20px; margin-bottom: 15px; }
  .logo { color: var(--color-text); }
  .navbar { background: var(--color-surface); }
  #menu-icon { color: var(--color-text); }
}
