/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --burgundy: #722f37;
  --burgundy-dark: #5a252c;
  --burgundy-light: #8c3a44;
  --gold: #c5a44e;
  --gold-light: #d4b96a;
  --gold-dark: #a8893d;
  --ivory: #faf8f2;
  --ivory-dark: #f0ede4;
  --text-dark: #2c2c2c;
  --text-medium: #555;
  --text-light: #888;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--burgundy);
}

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

a:hover {
  color: var(--gold);
}

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

.header.scrolled .nav-logo {
  color: var(--burgundy);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  transition: color var(--transition);
}

.header.scrolled .nav-logo {
  color: var(--burgundy);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-link.active {
  color: var(--gold);
}

.header.scrolled .nav-link.active {
  color: var(--gold-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--burgundy);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== INNER PAGE HEADER VARIANT ===== */
.header-inner {
  background: var(--burgundy);
}

.header-inner .nav-link {
  color: var(--ivory);
}

.header-inner .nav-logo {
  color: var(--ivory);
}

.header-inner .hamburger span {
  background: var(--ivory);
}

.header-inner.scrolled {
  background: var(--white);
}

.header-inner.scrolled .nav-link {
  color: var(--text-dark);
}

.header-inner.scrolled .nav-logo {
  color: var(--burgundy);
}

.header-inner.scrolled .hamburger span {
  background: var(--burgundy);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 6rem 0 1rem;
  background: var(--burgundy);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.breadcrumb-list li {
  color: var(--ivory);
  opacity: 0.7;
}

.breadcrumb-list li a {
  color: var(--gold);
  opacity: 1;
}

.breadcrumb-list li + li::before {
  content: '/';
  margin-right: 0.5rem;
  opacity: 0.5;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--burgundy);
  padding: 2rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--ivory);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--ivory);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== HOME HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(114, 47, 55, 0.5) 0%,
    rgba(114, 47, 55, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--gold);
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--burgundy-dark);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.btn-burgundy:hover {
  background: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--burgundy);
  color: var(--ivory);
}

.section-dark h2,
.section-dark h3 {
  color: var(--ivory);
}

.section-alt {
  background: var(--ivory-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-header .divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 1rem;
}

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

.section-dark .section-header p {
  color: var(--ivory);
  opacity: 0.8;
}

/* ===== HOME: HIGHLIGHTS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.highlight-card-content {
  padding: 1.5rem;
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ===== HOME: INTRO STRIP ===== */
.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-strip img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.intro-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* ===== ACCOMMODATIONS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-card-body {
  padding: 1.5rem;
}

.room-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.room-card .room-price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.room-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-amenity {
  background: var(--ivory);
  color: var(--text-medium);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ===== MENU PAGE ===== */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.menu-item:hover {
  transform: translateX(4px);
}

.menu-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.menu-item-price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-note {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.menu-note p {
  color: var(--text-medium);
  font-style: italic;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(114, 47, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: background var(--transition);
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--ivory);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-info-card a {
  color: var(--burgundy);
  font-weight: 600;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== EVENTS PAGE ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

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

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-card-body {
  padding: 1.5rem;
}

.event-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--burgundy-dark);
  color: var(--ivory);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h4 {
  font-family: 'Bodoni Moda', serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer p {
  color: var(--ivory);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--ivory);
  opacity: 0.8;
  font-size: 0.9rem;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--ivory);
  font-size: 1.2rem;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 242, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 4rem 1rem;
}

.cta-banner h2 {
  color: var(--ivory);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--ivory);
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip img,
  .about-story img {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--burgundy-dark);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links .nav-link {
    color: var(--ivory);
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-tagline {
    font-size: 1.1rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}
