:root {
  --gold: #c98a43;
  --gold-light: #f0c27b;
  --dark: #070707;
  --card: rgba(12, 12, 12, 0.82);
  --text: #f5efe6;
  --muted: #b8aa99;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
}

.features{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:center;
    color:#d9c6b0;
    font-size:14px;
}

.feature img{
    width:24px;
    height:24px;
}

.coming-soon{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:24px;

    background:
        linear-gradient(
            rgba(0,0,0,.78),
            rgba(0,0,0,.88)
        ),
        url("../img/restaurant-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.location-badge{
    display:inline-block;
    padding:10px 18px;
    margin-bottom:24px;
    border-radius:999px;
    background:rgba(201,138,67,.12);
    border:1px solid rgba(201,138,67,.25);
    color:#d9b37a;
    font-size:14px;
}

.description{
    color:#b8aa99;
    line-height:1.8;
    margin-bottom:30px;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
}

.features{
    margin-top:28px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#d7c8b5;
    font-size:14px;
}

.feature img{
    width:24px;
    height:24px;
    object-fit:contain;
}

.card {
  width: 100%;
  max-width: 620px;
  text-align: center;
  padding: 52px 34px;
  border: 1px solid rgba(201,138,67,.35);
  background: var(--card);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
}

.logo-wrapper{
    text-align:center;
    margin-bottom:20px;
}

.logo{
    max-width:320px;
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
}

.subtitle {
  margin-top: 8px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
}

h1 {
  font-size: 44px;
  margin: 38px 0 18px;
}

.intro {
  max-width: 500px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.subscribe-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: white;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
}

.subscribe-form input:focus {
  border-color: var(--gold);
}

.subscribe-form button {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}

.privacy {
  margin-top: 18px;
  color: #8e8173;
  font-size: 13px;
}

.notice {
  margin: 22px auto 0;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.success {
  background: rgba(40, 167, 69, .15);
  color: #9ff0b2;
}

.info {
  background: rgba(255, 193, 7, .15);
  color: #ffd978;
}

.error {
  background: rgba(220, 53, 69, .15);
  color: #ff9aa8;
}

@media (max-width: 640px) {
  .card {
    padding: 42px 22px;
  }

  .logo {
    font-size: 48px;
    letter-spacing: 5px;
  }

  h1 {
    font-size: 34px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form button {
    width: 100%;
  }
}
@media (max-width:640px){

    .logo{
        max-width:220px;
    }

}