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

:root {
  --amber: #b45309;
  --amber-light: #f59e0b;
  --slate: #0f172a;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.92)),
    url("hotel-front.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(180, 83, 9, 0.18), transparent 45%);
}

.container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.logo-wrap {
  margin-bottom: 28px;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 16px;
  background: linear-gradient(to right, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: 999px;
  color: #fcd34d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.brands {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 40px;
}

.brand-item {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 16px;
  padding: 24px 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.brand-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.6);
}

.brand-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 700;
  color: #fcd34d;
  margin-bottom: 6px;
  line-height: 1.3;
}

.brand-desc {
  font-size: 13px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 17px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  text-align: left;
  margin-bottom: 32px;
}

.contact-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: #fcd34d;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item .icon {
  font-size: 22px;
  line-height: 1.3;
}

.contact-item .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.contact-item .value {
  font-size: 16px;
  font-weight: 500;
  color: #f1f5f9;
  text-decoration: none;
}

a.value:hover {
  color: var(--amber-light);
}

.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber-light);
  color: #1e293b;
}

.btn-primary:hover {
  background: #fbbf24;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 600px) {
  .brand {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .title {
    font-size: 34px;
  }
  .subtitle {
    font-size: 15px;
  }
  .contact-card {
    padding: 24px 20px;
  }
  .logo {
    width: 96px;
    height: 96px;
  }
}
