:root {
  --charcoal: #1c1c1c;
  --beige: #f5f0e6;
  --taupe: #d8cfc4;
  --accent: #c96a4b; /* Terracotta */
  --accent-sage: #8fa98f;
  --font-main: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--beige);
  color: var(--charcoal);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  z-index: 100;
  background: rgba(28,28,28,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: 2px;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--beige);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  position: absolute;
  left: 0; bottom: 0;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent);
  transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.nav-link.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-sage));
  color: var(--beige);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  margin-left: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 106, 75, 0.3);
}

.nav-link.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 106, 75, 0.4);
}

.nav-link.cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--beige);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.7) 0%, rgba(28,28,28,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--beige);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-top: 250px;
  text-shadow: 0 4px 30px rgba(28,28,28,0.5);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: var(--taupe);
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.hero-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-sage));
  color: var(--beige);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(201, 106, 75, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(201, 106, 75, 0.4);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  color: var(--beige);
  opacity: 0.8;
  cursor: pointer;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 30px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 8px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%, 20% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  80%, 100% { transform: translateY(20px); opacity: 0; }
}

.scroll-indicator p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 300;
}

/* Content Sections */
.intro {
  padding: 6rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.intro p {
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
}

.features {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--taupe), var(--beige));
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28,28,28,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(28,28,28,0.15);
}

.feature-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.feature-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
}

.feature-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
}

.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--charcoal);
  color: var(--beige);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--taupe);
}

.cta-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-sage));
  color: var(--beige);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(201, 106, 75, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(201, 106, 75, 0.4);
}

/* Content Grid */
.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.content-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(28,28,28,0.1);
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(28,28,28,0.15);
}

.content-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.content-info {
  padding: 2rem;
}

.content-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.content-info p {
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.content-info .btn {
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
}

.content-info .btn:hover {
  background: var(--accent-sage);
  transform: translateY(-2px);
}

/* Booking Section Styles */
.booking-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--beige) 0%, var(--taupe) 100%);
  min-height: 80vh;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(28, 28, 28, 0.1);
  backdrop-filter: blur(10px);
}

.booking-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 1rem;
}

.booking-container > p {
  text-align: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--taupe);
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 1rem;
  background: var(--beige);
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 106, 75, 0.1);
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.checkbox-group label:hover {
  background: var(--taupe);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.8rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-sage));
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 8px 25px rgba(201, 106, 75, 0.3);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 106, 75, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--beige);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--beige);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28,28,28,0.95);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    backdrop-filter: blur(10px);
  }
  
  .nav.open {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .feature-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    gap: 1rem;
  }
  
  .footer-nav {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .booking-container {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .booking-container h2 {
    font-size: 1.8rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
  }
}

/* Animation Classes */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
