/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; color: #1C1A1A; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #1C1A1A;
  --gold: #B37720;
  --red: #8B1A1A;
  --cream: #DDDAD3;
  --light-bg: #F5F2EC;
  --text-muted: #5a5650;
  --radius: 4px;
}


/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: #6e1515; transform: translateY(-1px); }
.btn-primary.large { padding: 16px 52px; }

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.7);
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { background: white; color: var(--primary); border-color: white; }

.btn-outline {
  background: transparent;
  color: var(--red);
  padding: 11px 28px;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--red);
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--red); color: white; }

.btn-gold {
  background: var(--gold);
  color: white;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-gold:hover { background: #9a6618; }

/* ===== DECORATIVE DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 20px;
}
.divider::before, .divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.bull-icon {
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(179,119,32,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { text-align: center; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.1;
}
.logo-bull { color: var(--red); }
.logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #ccc;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}
.btn-nav:hover { background: #6e1515 !important; color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; }

/* ===== HERO ===== */
.hero {
  background: var(--primary);
  padding: 120px 24px 60px;
  text-align: center;
  position: relative;
}
.hero-bg { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-bull {
  font-size: 3.2rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: white;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 1rem;
  color: #b0a898;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== HERO PHOTO BANNER ===== */
.hero-photo {
  width: 100%;
  background: var(--primary);
  padding: 0;
}
.hero-photo-inner {
  width: 100%;
}
.hero-photo-inner img {
  width: 100%;
  height: auto;
  display: block;
}
/* gold bar below photo */
.hero-bar {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== SECTION TITLES ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title.light { color: white; }
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-sub.light { color: #b0a898; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--light-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
  font-size: 0.95rem;
  font-weight: 300;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.feature i { color: var(--gold); font-size: 1rem; }
.about-image { position: relative; }
.about-image img {
  border-radius: 2px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 12px 12px 0 var(--cream), 14px 14px 0 var(--gold);
}

/* ===== ROOMS ===== */
.rooms { padding: 100px 0; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}
.room-card {
  border: 1px solid var(--cream);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: white;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.room-card img { width: 100%; height: 240px; object-fit: cover; }
/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.slides img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: white;
  border: none;
  font-size: 1.8rem;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  padding: 0;
}
.slide-btn:hover { background: rgba(0,0,0,0.7); }
.slide-btn.prev { left: 8px; }
.slide-btn.next { right: 8px; }
.slide-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: white; }

.room-badge {
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  display: inline-block;
  margin: 18px 20px 0;
}
.room-info { padding: 12px 20px 24px; }
.room-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.room-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 300;
}
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}
.price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); }
.price small { font-family: 'Raleway', sans-serif; font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ===== BOOKING ===== */
.booking {
  padding: 100px 0;
  background: var(--primary);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(179,119,32,0.03) 40px,
      rgba(179,119,32,0.03) 80px
    );
}
.booking-form {
  background: white;
  padding: 52px;
  max-width: 920px;
  margin: 0 auto;
  border-top: 4px solid var(--red);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full-width { grid-column: 1/-1; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #d4d0c8;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  background: #fafaf8;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: white; }
.form-group textarea { min-height: 100px; resize: vertical; }
.booking-form .btn-primary { display: block; width: 100%; margin-top: 28px; text-align: center; cursor: pointer; }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 14px; font-style: italic; }

/* ===== BOOKING NOTICE ===== */
.booking-notice {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border-top: 4px solid var(--red);
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.notice-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.notice-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.notice-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}
.notice-cta {
  color: var(--primary) !important;
  font-weight: 600 !important;
  margin-bottom: 28px !important;
}
.notice-body .btn-primary {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  display: inline-block;
}
.notice-hours {
  font-size: 0.8rem !important;
  color: #aaa !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* ===== ATTRACTIONS ===== */
.attractions { padding: 100px 0; background: var(--light-bg); }
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.attraction-card {
  background: white;
  border: 1px solid var(--cream);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.attraction-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.attraction-card img { width: 100%; height: 200px; object-fit: cover; }
.attraction-info { padding: 22px; }
.attraction-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.attraction-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== BANNER STRIP ===== */
.banner-strip {
  background: var(--red);
  padding: 20px 0;
  text-align: center;
}
.banner-strip p {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.banner-strip a { color: var(--gold); font-weight: 700; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-item i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 3px;
  width: 20px;
  text-align: center;
}
.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-item p, .contact-item a { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; font-weight: 300; }
.contact-item a:hover { color: var(--red); }
.contact-map iframe { border-radius: 2px; }

/* ===== FOOTER ===== */
.footer { background: #111010; color: #888; padding: 70px 0 0; }
.footer-top {
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 1px solid #2a2828;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 6px;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 50px 0 40px;
}
.footer h4 {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
}
.footer p, .footer a { color: #888; font-size: 0.88rem; line-height: 1.9; font-weight: 300; }
.footer a:hover { color: var(--gold); }
.footer ul li { margin-bottom: 6px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b5998;
  color: white !important;
  padding: 9px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: fit-content;
  transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid #2a2828;
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #1C1A1A;
    padding: 24px 28px;
    gap: 18px;
    border-bottom: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 260px; box-shadow: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
