/* Base Styles */
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
 
}
/* ===== FACILITIES SECTION Page ===== */
.facilities-section {
  padding: 5rem 0;
  background-color: #f9f7f4;
}

.facilities-header1 {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.facilities-header1 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2a3439;
  margin-bottom: 0.8rem;
}

.facilities-header1 .subtitle1 {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.facility-filters1 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn1 {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid #c19a6b;
  color: #c19a6b;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.filter-btn1.active, .filter-btn1:hover {
  background: #c19a6b;
  color: white;
}

.facilities-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.facility-card1 {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card1:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.facility-media1 {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.facility-media1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card1:hover .facility-media1 img {
  transform: scale(1.05);
}

.facility-badge1 {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c19a6b;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.view-gallery-btn1 {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.view-gallery-btn1:hover {
  background: white;
}

.facility-info1 {
  padding: 1.5rem;
}

.facility-header1 {
  margin-bottom: 1rem;
}

.facility-header1 h2 {
  font-size: 1.5rem;
  color: #2a3439;
  margin-bottom: 0.3rem;
}

.facility-rating1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars1 {
  color: #f8c455;
  font-size: 0.9rem;
}

.review-count1 {
  color: #777;
  font-size: 0.8rem;
}

.facility-description1 {
  color: #555;
  line-height: 1.6;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.facility-highlights1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.highlight-item1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #555;
}

.highlight-item1 i {
  color: #c19a6b;
  font-size: 1rem;
}

.explore-btn1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c19a6b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.explore-btn1:hover {
  color: #a67c52;
  gap: 0.8rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .facilities-grid1 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .facilities-header1 h1 {
    font-size: 2rem;
  }
  
  .facilities-header1 .subtitle1 {
    font-size: 1rem;
  }
  
  .facility-media1 {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .facilities-section {
    padding: 3rem 0;
  }
  
  .facilities-grid1 {
    grid-template-columns: 1fr;
  }
  
  .filter-btn1 {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}






/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #f9f7f4;
}

.contact-hero {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
 color: black;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 90%;
  margin: 0 auto;
}

.contact-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.contact-card {
  display: flex;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
}

.contact-info2 {
  flex: 1;
  padding: 3rem;
  background: #2a3439;
  color: white;
}

.contact-info2 h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(193, 154, 107, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: #c19a6b;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #c19a6b;
}

.contact-text p {
  line-height: 1.6;
  color: #ddd;
}

.contact-hours {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #c19a6b;
}

.contact-hours p {
  line-height: 1.6;
  color: #ddd;
}

.social-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #c19a6b;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #c19a6b;
  transform: translateY(-3px);
}

.social-icons i {
  font-size: 1.1rem;
}

.contact-form-wrapper {
  flex: 1;
  padding: 3rem;
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #2a3439;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #c19a6b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.btn-send {
  padding: 12px 25px;
  background: #c19a6b;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-send:hover {
  background: #a67c52;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.required-note {
  font-size: 0.8rem;
  color: #777;
}

.map-container {
  position: relative;
  height: 500px;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.map-directions {
  padding: 10px 15px;
  background: white;
  border: none;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.map-directions:hover {
  background: #f0f0f0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .contact-card {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .map-container {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 3rem 1rem 1.5rem;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-method {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .map-container {
    height: 350px;
  }
}






/* ===== BOOKING SECTION ===== */
.booking-section {
  padding: 4rem 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
              url('images/austina1.png') center/cover no-repeat;
}

.booking-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.booking-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2a3439;
  margin-bottom: 0.5rem;
}

.booking-header .subtitle {
  color: #666;
  font-size: 1.1rem;
}

.booking-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 3rem;
}

.booking-form {
  flex: 2;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #c19a6b;
}

.select-wrapper {
  position: relative;
}

.select-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #c19a6b;
  pointer-events: none;
}

input, select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

input:focus, select:focus {
  border-color: #c19a6b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
}

select {
  appearance: none;
  -webkit-appearance: none;
}

.promo-group {
  margin-top: 1rem;
}

.btn-book {
  width: 100%;
  padding: 15px;
  background: #c19a6b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-book:hover {
  background: #a67c52;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-summary {
  flex: 1;
}

.summary-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.summary-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #2a3439;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-details {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state {
  text-align: center;
  color: #777;
}

.empty-state i {
  font-size: 2rem;
  color: #ddd;
  margin-bottom: 1rem;
  display: block;
}

.benefits-list {
  background: #f9f7f4;
  padding: 1.5rem;
  border-radius: 10px;
}

.benefits-list h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #2a3439;
}

.benefits-list ul {
  list-style: none;
}

.benefits-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
}

.benefits-list i {
  color: #c19a6b;
}

/* ===== AVAILABLE ROOMS SECTION ===== */
.available-rooms {
  padding: 4rem 0;
  background: #f9f7f4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #2a3439;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #777;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.rooms-list .empty-state {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .booking-container {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .booking-header h1 {
    font-size: 2rem;
  }
  
  .booking-header .subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .booking-section {
    padding: 3rem 0;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
}



/** ===== ABOUT SECTION ===== */
.about-section {
  padding: 5rem 0;
  background-color: #fff;
}

.container4 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text {
  flex: 1;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2a3439;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #c19a6b;
  margin: 1rem 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-details p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.highlight-box {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f9f7f4;
  border-radius: 8px;
}

.highlight-item {
  text-align: center;
  padding: 0 1rem;
}

.highlight-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #c19a6b;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-text {
  font-size: 0.9rem;
  color: #666;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #c19a6b;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #a67c52;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-images {
  flex: 1;
}

.image-stack {
  position: relative;
  height: 500px;
}

.image-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  z-index: 1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  z-index: 2;
  border: 8px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-section {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid #eee;
}

.awards-title {
  font-size: 1.5rem;
  color: #2a3439;
  margin-bottom: 2rem;
  font-weight: 600;
}

.awards-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.awards-grid img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.awards-grid img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .image-stack {
    height: 400px;
    width: 100%;
  }
  
  .highlight-box {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .image-stack {
    height: 200px;
    width: 100%;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .awards-grid {
    gap: 2rem;
  }
  
  .awards-grid img {
    height: 50px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .image-stack {
    height: 300px;
  }
  
  .highlight-number {
    font-size: 1.8rem;
  }
  
  .awards-grid {
    gap: 1.5rem;
  }
  
  .awards-grid img {
    height: 40px;
  }
}





/* Header */
.main-header {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
 width: 100%;
  z-index: 1000;
  background: url('../images/hero-bg2.png') center/cover ;
  height: 100vh;
}

.main-header2 {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
 width: 100%;
  z-index: 1000;
  background: url('../images/hero-bg2.png') center/cover ;
  height: 300px;
}

.container1 {
  width: 100%;
 }

.logo {
  width:100%; /* Default */
  height: auto;
  margin: 0px auto;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .logo {
    width: 150px; /* Tablet */
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px; /* Mobile */
  }
}

.font_book {
  font-family: 'Script MT Bold';
  font-weight: 400; /* Regular (default) */
  font-size: 60px;
 
}
.container {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 15px;
 
}

.transparent-black-bg {
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  height: 300px;
  width: 100%;
  border-bottom: thick solid #FEE1B2;
  margin-bottom: 0px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #c19a6b;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #a67c52;
}



.main-nav ul {
  display: flex;
  list-style: none;
  
}

.main-nav a {
  padding: 15px 20px;
  text-decoration: none;
  color: white;
}
.main-nav a:hover {
  
  color: #FEE1B2;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
}
/* Hero Section */
.hero {
  height: 50vh;
  display: flow; 
  align-items: center;
  color: white;
  text-align: center;
  padding-top: 80px; /* Account for fixed header */
}

/* Room/Suite Cards */
.room-card, .suite {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* ===== SUITES SECTION ===== */
.suites-section {
  padding: 4rem 0;
  background-color: #f9f7f4;
}

.container3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.suites-header {
  text-align: center;
  margin-bottom: 3rem;
}

.suites-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2a3439;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.suites-subtitle {
  color: #777;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.suite-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid #c19a6b;
  color: #c19a6b;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter-btn.active, .filter-btn:hover {
  background: #c19a6b;
  color: white;
}

.suites-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.suite-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suite-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.suite-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.suite-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.suite-card:hover .suite-media img {
  transform: scale(1.05);
}

.suite-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c19a6b;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.view-gallery-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.view-gallery-btn:hover {
  background: white;
}

.suite-info {
  padding: 1.5rem;
}

.suite-header {
  margin-bottom: 1rem;
}

.suite-header h2 {
  font-size: 1.5rem;
  color: #2a3439;
  margin-bottom: 0.3rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #f8c455;
  font-size: 0.9rem;
}

.review-count {
  color: #777;
  font-size: 0.8rem;
}

.suite-highlights {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #555;
}

.highlight-item i {
  color: #c19a6b;
}

.suite-description {
  color: #555;
  line-height: 1.6;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.suite-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.price-container {
  line-height: 1.2;
}

.price-from {
  font-size: 0.8rem;
  color: #777;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a3439;
}

.price-night {
  font-size: 1rem;
  font-weight: normal;
  color: #777;
}

.book-now-btn {
  padding: 0.7rem 1.5rem;
  background: #c19a6b;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.book-now-btn:hover {
  background: #a67c52;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .suites-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .suites-title {
    font-size: 2rem;
  }
  
  .suites-subtitle {
    font-size: 1rem;
  }
  
  .suite-media {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .suites-section {
    padding: 3rem 0;
  }
  
  .suites-container {
    grid-template-columns: 1fr;
  }
  
  .suite-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  flex: 1;
    min-width: 100px;
  }
}

/* Footer Styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
.main-footer {
  background-color: #2a2a2a;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column {
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #c19a6b;
}

.footer-text, .newsletter-text {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c19a6b;
}

.contact-info {
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #b3b3b3;
}

.contact-item i {
  margin-right: 10px;
  color: #c19a6b;
  margin-top: 3px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  color: #ffffff;
  background-color: #3a3a3a;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: #c19a6b;
  transform: translateY(-3px);
}

.newsletter-form {
  margin-top: 20px;
}

.form-group {
  display: flex;
}

.form-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: #3a3a3a;
  color: #ffffff;
  border-radius: 4px 0 0 4px;
}

.form-input::placeholder {
  color: #b3b3b3;
}

.form-button {
  background-color: #c19a6b;
  color: #ffffff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #a8845d;
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 20px 0;
  border-top: 1px solid #3a3a3a;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright {
  color: #b3b3b3;
  font-size: 14px;
}

.payment-methods {
  display: flex;
  gap: 15px;
}

.payment-methods i {
  font-size: 24px;
  color: #b3b3b3;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: black;
  }
  
  .main-nav.active ul {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-content {
    padding: 0 20px;
    margin: 0px auto;
    align-items: center;
  }
  
  .booking-container {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
 /* .suite {
    flex-direction: column;
  } */
}

@media (min-width: 769px) {
  .booking-container, .contact-container {
    display: flex;
    gap: 30px;
  }
  
  .booking-form, .contact-form {
    flex: 1;
  }
  
  .booking-summary, .contact-info {
    flex: 1;
  }
  
/*  .suite {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .suite-image, .suite-details {
    flex: 1;
  } */
}

/* ===== FEATURED ROOMS SECTION ===== */
.featured-rooms {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.featured-rooms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/texture-bg.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.featured-rooms .container {
  position: relative;
  z-index: 1;
}

.featured-rooms h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--secondary);
  position: relative;
}

.featured-rooms h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.room-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card__image img {
  transform: scale(1.1);
}

.room-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.room-card__content {
  padding: 1.5rem;
}

.room-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.room-card__price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.room-card__price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: normal;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
  list-style: none;
}

.room-card__amenities li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.room-card__amenities li::before {
  content: '•';
  color: var(--primary);
  margin-right: 0.3rem;
  font-weight: bold;
}

.room-card__btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding: 0.7rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: var(--transition);
  font-weight: 600;
}

.room-card__btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
  .featured-rooms {
    padding: 4rem 0;
  }
  
  .room-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .featured-rooms h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .room-card__content {
    padding: 1.2rem;
  }
}

@media (max-width: 576px) {
  .featured-rooms {
    padding: 3rem 0;
  }
  
  .room-grid {
    grid-template-columns: 1fr;
  }
  
  .room-card__image {
    height: 200px;
  }
}

/* ===== FACILITIES SECTION ===== */
.hotel-facilities {
  padding: 5rem 0;
  background-color: #f8f5f2;
}

.hotel-facilities .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hotel-facilities h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2a3439;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: #777;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility-image {
  height: 220px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
  transform: scale(1.1);
}

.facility-content {
  padding: 1.5rem;
}

.facility-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #2a3439;
}

.facility-content p {
  color: #666;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.facility-link {
  display: inline-block;
  color: #c19a6b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.facility-link:hover {
  color: #a67c52;
  transform: translateX(5px);
}

.facility-link::after {
  content: '→';
  margin-left: 5px;
  transition: margin 0.3s ease;
}

.facility-link:hover::after {
  margin-left: 8px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .hotel-facilities {
    padding: 4rem 0;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hotel-facilities h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .facility-content {
    padding: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hotel-facilities {
    padding: 3rem 0;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  
  .facility-image {
    height: 200px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 5rem 0;
  background-color: #fff;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: #2a3439;
  position: relative;
}

.testimonials h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #c19a6b;
  margin: 1rem auto 0;
}

/* Testimonial slider styles would go here */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .hotel-features,
  .testimonials {
    padding: 4rem 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .hotel-features h2,
  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .room-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .hotel-features,
  .testimonials {
    padding: 3rem 0;
  }
  
  .room-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .room-card img {
    height: 200px;
  }


/* Style for the search form */
.search-form {
  display: flex;
  align-items: center;
  max-width: 300px;
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
  background-color: #fff;
}

.search-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-form button {
  padding: 10px 15px;
  background-color: #FEE1B2; /* Austina brand blue */
  color: white;
  border: thin solid red;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  width: 50px;
}

