/* --------------------------------------------------
   BRAND COLOR SYSTEM
-------------------------------------------------- */
:root {
  --ink: #1C1610;
  --wine: #8C1F44;
  --stone: #ECE6D8;
  --paper: #F7F3EC;
  --gold: #C9A86A;

  --text-primary: var(--ink);
  --text-secondary: #4A433C;

  --radius-sm: 4px;
  --radius-md: 8px;

  --transition: 0.25s ease;
}

/* --------------------------------------------------
   GLOBAL RESET
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--text-primary);
  line-height: 1.6;
}

/* --------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
}

h1 {
  font-size: 3rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.text-sm { font-size: 0.9rem; color: var(--text-secondary); }
.text-muted { color: #7a7167; }
.text-responsive { font-size: 1.1rem; }

/* --------------------------------------------------
   LAYOUT & UTILITIES
-------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; }
.section { padding: 120px 80px; }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.mt-lg { margin-top: 60px; }
.mb-lg { margin-bottom: 60px; }
.pt-lg { padding-top: 60px; }
.pb-lg { padding-bottom: 60px; }

.sm-hide { display: inline-block; }
.md-hide { display: inline-block; }

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
.navbar {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

.navbar-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  height: 90vh;
  background: url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 80px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 16, 0.45);
}

.hero-content {
  position: relative;
  max-width: 600px;
  color: white;
}

.hero h1,
.hero-title {
  color: white;
}

.hero-subtitle {
  margin-top: 10px;
}

.hero .cta {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--wine);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--gold);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--ink);
}

/* --------------------------------------------------
   CARDS
-------------------------------------------------- */
.card {
  background: var(--stone);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid #dcd6c8;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.card-body {
  margin-top: 10px;
}

.card-ghost {
  background: transparent;
  border-radius: var(--radius-sm);
  border: 1px dashed #cfc7b8;
  padding: 20px;
}

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonial { margin-bottom: 30px; }

.quote {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--ink);
  position: relative;
  padding-left: 20px;
}

.quote::before {
  content: "“";
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  left: -5px;
  top: -10px;
}

/* --------------------------------------------------
   FORMS
-------------------------------------------------- */
.booking-form,
form {
  background: var(--stone);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 600px;
}

.form-group { margin-bottom: 20px; }

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--ink);
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #cfc7b8;
  font-size: 1rem;
  background: #fdfaf4;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--wine);
  outline: none;
  box-shadow: 0 0 0 2px rgba(140, 31, 68, 0.15);
}

.form-help { margin-top: 4px; font-size: 0.9rem; color: #7a7167; }
.form-error { margin-top: 4px; font-size: 0.9rem; color: #b3261e; }

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 80px;
  border-top: 4px solid var(--gold);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-link {
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
}

.footer-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------
   RESPONSIVE BREAKPOINTS
-------------------------------------------------- */

/* Tablet and below */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
  .section { padding: 60px 30px; }

  .navbar {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    height: 70vh;
    padding-left: 40px;
  }

  .hero-content {
    max-width: 90%;
  }

  .text-responsive { font-size: 0.95rem; }

  .grid-3 { grid-template-columns: 1fr; }

  .footer {
    padding: 40px 30px;
    flex-direction: column;
  }

  .md-hide { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  .section { padding: 40px 20px; }

  .hero {
    height: 60vh;
    padding-left: 20px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  p { font-size: 1rem; }

  .text-responsive { font-size: 0.85rem; }

  .btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }



  .nav-toggle {
    display: inline-block;
  }
  
  .sm-hide { display: none; }

  .footer {
    padding: 30px 20px;
  }

  .nav-links {
  transition: all 0.3s ease;
  opacity: 0;
}

  .nav-links.show {
  opacity: 1;
}


}
