/* CSS Variables for consistent theming */
:root {
  --primary-gold: #c9a94e;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f8f8;
  --text-dark: #333;
  --text-light: #fff;
  --accent-brown: #8B7355;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

#location {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

#location .section-header h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3a2c1a;
}

#location .text-content {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #555;
}

.map-container {
  margin: 30px auto;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.location-info {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.location-info a.map-link {
  color: #a67c52;
  font-weight: 600;
  text-decoration: none;
}

.location-info a.map-link:hover {
  text-decoration: underline;
}


/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

/* Navigation */
.navbar {
  background-color: var(--dark-bg);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  height: 35px;
  width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  height: 100vh;
  min-height: 600px;

  /* ✅ Background image + overlay */
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
    url("foto/hero-bg.jpg"); /* <-- change to your image path */

  background-size: cover;          /* fill entire area */
  background-position: center;     /* center focus */
  background-repeat: no-repeat;    /* no tiling */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--text-light);
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.cta-button:hover {
  background: #b8973e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 169, 78, 0.3);
}

/* Logo Section */
.logo-section {
  text-align: center;
  padding: 40px 0;
  background: var(--light-bg);
}

.logo {
  width: min(220px, 50vw);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Info Sections */
.info-section {
  padding: 60px 0;
}

.info-section:nth-child(even) {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--primary-gold);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
}

.text-content {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 20px;
}

.text-content p {
  color: var(--text-dark);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

/* Slider Container */
.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow);
  height: clamp(300px, 50vw, 500px);
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--text-light);
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Slider Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 10px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: clamp(35px, 8vw, 50px);
  height: clamp(35px, 8vw, 50px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--dark-bg);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Contact Info Styles */
.contact-info {
  text-align: center;
  margin-top: 20px;
}

.contact-info p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: #b8973e;
  text-decoration: underline;
}

.contact-btn {
  background: var(--primary-gold);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin-top: 10px;
}

.contact-btn:hover {
  background: #b8973e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 169, 78, 0.3);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s;
  padding: 20px;
  overflow-y: auto;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: #fefefe;
  margin: 2% auto;
  border-radius: 15px;
  width: 95%;
  max-width: 800px;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 2001;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  color: var(--primary-gold);
}

/* Booking Section Styles */
.booking-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
}

.booking-header {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 1.5rem;
  text-align: center;
}

.booking-header h2 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

.booking-header p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.booking-form {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 78, 0.2);
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
}

.radio-option input {
  width: auto;
  margin-right: 0.5rem;
}

.radio-option label {
  margin-bottom: 0;
  font-weight: normal;
}

.date-inputs {
  display: flex;
  gap: 1rem;
}

.date-inputs > div {
  flex: 1;
}

.submit-btn {
  background: var(--primary-gold);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #b8973e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 169, 78, 0.3);
}

.required {
  color: #e74c3c;
}

.instructions {
  background: #e8f4ea;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-gold);
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

/* Room Cards */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 15px;
}

.room-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.room-image {
  height: 200px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-content {
  padding: 1.25rem;
}

.room-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.5rem;
  color: var(--dark-bg);
  line-height: 1.3;
}

.room-price {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
}

.room-description {
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.book-room-btn {
  background: var(--primary-gold);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.book-room-btn:hover {
  background: #b8973e;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  section {
    padding: 50px 0;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.8rem 4%;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .slider {
    height: 350px;
  }
  
  .date-inputs {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .modal-content {
    margin: 5% auto;
    width: 95%;
  }
  
  .booking-form {
    padding: 1.25rem;
  }
  
  .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .nav-container {
    padding: 0.7rem 3%;
  }
  
  .nav-logo {
    height: 30px;
  }
  
  .hero-section {
    min-height: 450px;
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .slider {
    height: 250px;
    border-radius: 10px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    margin: 0 5px;
  }
  
  .slide-caption {
    padding: 1rem 0.5rem 0.5rem;
  }
  
  .booking-form {
    padding: 1rem;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 10px;
  }
  
  .room-card {
    margin-bottom: 0.5rem;
  }
  
  .room-content {
    padding: 1rem;
  }
  
  .modal-content {
    margin: 10% auto;
    border-radius: 10px;
  }
  
  .booking-header {
    padding: 1.25rem;
  }
  
  .form-group input, .form-group select {
    padding: 10px;
  }
  
  .submit-btn {
    padding: 12px 20px;
  }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .slider {
    height: 200px;
  }
  
  .rooms-grid {
    gap: 1rem;
  }
  
  .room-image {
    height: 180px;
  }
  
  .modal-content {
    margin: 5% auto;
    width: 98%;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 50px;
  }
  
  .modal-content {
    margin: 1% auto;
    max-height: 98vh;
  }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .cta-button,
  .book-room-btn,
  .contact-btn,
  .slider-nav,
  .modal {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .hero-section {
    background: #fff !important;
    color: #000 !important;
    height: auto;
  }
  
  .hero-title,
  .hero-subtitle {
    color: #000 !important;
    text-shadow: none !important;
  }
}

/* Optional: make room6 & room7 fit without cropping */
.room-image img[src*="room6"],
.room-image img[src*="room7"] {
  object-fit: contain;
  background-color: #000; /* add subtle background if letterboxed */
}

