/* ======================
   GLOBAL BASE STYLES
====================== */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: #2a2a2a;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #111;
  font-weight: 700;
  margin-bottom: 0.5em;
}

a {
  color: #FF5722;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ======================
   HERO SECTION
====================== */
.hero {
  background-color: #fff3ec;
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.hero-logo {
  width: 80px;
  margin: 0 auto 1rem;
}

.tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #FF5722;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #e14b1c;
}

/* ======================
   SECTION WRAPPER
====================== */
.section {
  padding: 3rem 1.5rem;
  max-width: 1080px;
  margin: auto;
  text-align: center;
}

/* ======================
   ROOMS SECTION
====================== */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.room-card {
  background-color: #fff8f5;
  border: 1px solid #ffe1d6;
  padding: 1.2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 5px rgba(255, 87, 34, 0.05);
}

/* ======================
   DINING SECTION
====================== */
.dining {
  background-color: #fff7f3;
}

.dining-photo {
  margin-top: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================
   AMENITIES SECTION
====================== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.icon-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #444;
  font-weight: 500;
}

.icon-grid img {
  width: 32px;
  height: 32px;
  filter: invert(40%) sepia(87%) saturate(583%) hue-rotate(347deg) brightness(95%) contrast(95%);
}

/* ======================
   CONTACT SECTION
====================== */
.contact p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.contact img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

/* ======================
   FOOTER
====================== */
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}

/* ======================
   RESPONSIVE FIXES
====================== */
@media (max-width: 480px) {
  .cta-button {
    width: 100%;
    font-size: 1rem;
  }

  .hero-logo {
    width: 60px;
  }

  .section {
    padding: 2rem 1rem;
  }
}
