@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;700&family=Raleway:wght@400;600;700&display=swap');
.body{
    margin: 0;
    
}

.logo-wrapper {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.logo-text {
  width: 70%;
  height: auto;
  padding: 4px;
}

.brand-name {
  font-size: clamp(14px, 2vw, 20px); 
  font-weight: 700;
  color: #000;
}

.hero-content h1{
  font-family: 'Raleway', sans-serif;
}

.hero-content p{
  font-family: 'Alegreya', sans-serif;
}

.hero-section {
    position: relative;
    height: 600px;
    color: white;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Default: show mobile, hide desktop */
.desktop-bg {
  display: none;
}
.mobile-bg {
  display: block;
  width: 100%;
  height: auto;
}

/* From medium screens and above (≥768px), show desktop image */
@media (min-width: 768px) {
  .desktop-bg {
    display: block;
    width: 100%;
    height: auto;
  }
  .mobile-bg {
    display: none;
  }
}

.hero-section h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.2;
  text-align: center;
  padding: 0 10px;
}

.hero-section p {
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.h1, h2,h3,h4,h5,h6{
    font-family: 'raleway',sans-serif;
  }

  p,a,th,td{
    font-family: 'Alegreya', sans-serif;
  }

.reservation-container {
            max-width: 650px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
.form-title {
  font-family: 'raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
            color: #333;
}
.form-subtitle {
  font-family: 'Alegreya', sans-serif;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.form-label {
    font-weight: 500;
    font-family: 'Alegreya', sans-serif;
            color: #333;
            margin-bottom: 8px;
            font-size: 0.9rem;
}
        .form-control, .form-select {
          font-family: 'Alegreya', sans-serif;
            border: 1px solid #ddd;
            padding: 10px 15px;
            border-radius: 4px;
            font-size: 0.95rem;
}
        .form-control:focus, .form-select:focus {
            border-color: #d4a574;
            box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}
        .btn-submit {
          font-family: 'Alegreya', sans-serif;
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px;
            border-radius: 4px;
            width: 100%;
            font-size: 1rem;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }
        .btn-submit:hover {
            background-color: #c29463;
        }