@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Anuphan', sans-serif;
  color: #0B1F44;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.header{
  padding: 0 5%;
}

/* Hero */
.banner-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.banner-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.banner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5% 60px;
}

.banner-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.banner-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Body */
.banner-body {
  padding: 80px 0;
}

.banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Intro */
.banner-intro {
  max-width: 800px;
  margin-bottom: 64px;
}

.banner-intro h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 1.3;
}

.banner-intro p {
  font-size: 1.125rem;
  color: #6B7280;
  line-height: 1.8;
  font-weight: 300;
}

/* Features */
.banner-features {
  margin-bottom: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  padding: 32px;
  background: #FAFAFA;
  border-radius: 12px;
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.7;
  font-weight: 300;
}

/* Hotel/Item List */
.banner-hotels {
  margin-bottom: 64px;
}

.banner-hotels h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hotel-list {
  display: flex;
  flex-direction: column;
}

.hotel-item {
  padding: 24px 0;
  border-bottom: 1px solid #F0F0F0;
}

.hotel-item:first-child {
  border-top: 1px solid #F0F0F0;
}

.hotel-item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.hotel-item p {
  font-size: 0.9375rem;
  color: #9CA3AF;
  font-weight: 300;
}

/* CTA */
.banner-cta {
  text-align: center;
  padding: 80px 0 0;
}

.banner-cta h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.banner-cta p {
  font-size: 1.125rem;
  color: #6B7280;
  font-weight: 300;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  background: #0B1F44;
  color: #fff;
  padding: 16px 48px;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #1C63E9;
}

/* Responsive */
@media (max-width: 1200px) {
  .banner-hero-content h1 {
    font-size: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .banner-intro h2 {
    font-size: 1.5rem;
  }

  .banner-cta h2 {
    font-size: 1.5rem;
  }

  .banner-hero {
    height: 50vh;
    min-height: 300px;
  }

  .banner-body {
    padding: 48px 0;
  }
}