body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f3e5d8;
  color: #3b2f2f;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background-color: #f3e5d8;
}

header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #3b2f2f;
  font-weight: 500;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 10px 20px;
  background-color: #f3e5d8;
}

.hero h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  text-align: center;
  margin: 28px auto 32px;
  max-width: 900px;
}

/* Featured Section */
.featured {
  padding: 40px 20px;
  text-align: center;
}

.featured h2 {
  color: var(--terracotta);
  margin-bottom: 30px;
}

.hotel-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0 32px 60px;
}

.hotel-card {
  width: 340px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  background-color: #fffaf5;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}


.hotel-card:hover img {
  transform: scale(1.03);
}


.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-info h3 {
  margin: 10px 0 5px;
  color: var(--wood);
}

.hotel-info p {
  margin: 0 0 15px;
  color: #6b4f3f;
}

.btn {
  background-color: var(--terracotta);
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
}

.btn:hover {
  background-color: var(--green);
}
/* Footer */
.footer {
  text-align: center;
  background-color: #a86034;
  color: #fffaf5;
  padding: 20px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.6;
}
/* Search Box Layout */
search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Wrap input and ✖ together */
.input-wrapper {
  position: relative;
  display: inline-block;
}

/* Input field */
#searchInput {
  padding: 10px 36px 10px 12px; /* space for ✖ */
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* City Dropdown */
#cityDropdown {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* ✖ button inside search box */
#clearSearch {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  display: none;
  transition: color 0.2s ease;
}

footer a {
  color: white;
  text-decoration: none;
}

.contact-page {
  min-height: 100vh;
  background: #efe1d2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 18px;
}

.contact-box {
  width: 100%;
  max-width: 560px;
  background: #fffaf5;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.contact-box h1 {
  font-family: 'Playfair Display', serif;
  color: #3b2f2f;
  margin-bottom: 12px;
  text-align: center;
}

.contact-box p {
  color: #5a3a2a;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-box label {
  font-weight: 500;
  color: #3b2f2f;
}

.contact-box input,
.contact-box textarea {
  padding: 12px;
  border: 1px solid #c8b8aa;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.contact-box button {
  margin-top: 12px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #b46532;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.contact-box button:hover {
  opacity: 0.85;
}

.back-link {
  display: block;
  margin-top: 22px;
  text-align: center;
  color: #5a3a2a;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}


/* mobile phone section */
@media (max-width: 768px) {


  .hero {
    padding: 24px 16px 16px;
  }


  .hero h1 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    line-height: 1.3;
    padding: 0 16px;
  }

  .search-row {
    gap: 10px;
    margin-bottom: 20px;
  }


  .search-row select,
  .search-row input {
    width: 100%;
    max-width: 420px;
  }

  .hotel-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 18px;
    padding: 0 16px 24px;
    scroll-snap-type: x mandatory;
  }

  .hotel-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

    footer {
    padding: 14px 10px;
    font-size: 0.85rem;
  }
}

.mockup-link {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #7a3f2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.mockup-link:hover {
  opacity: 0.9;
}

.contact-note {
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

.social-links {
  text-align: center;
  margin-top: 15px;
}

.social-links a {
  color: #555;
  font-size: 1.8rem;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #000;
}

.fa-youtube {
  color: #FF0000;
}

.fa-linkedin {
  color: #0A66C2;
}