/* === Fonts === */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/manrope/manrope-v15-cyrillic_latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/manrope/manrope-v15-cyrillic_latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/manrope/manrope-v15-cyrillic_latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/manrope/manrope-v15-cyrillic_latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/manrope/manrope-v15-cyrillic_latin-800.woff2') format('woff2');
}

:root {
  --bg: #1a001f;
  --gradient: radial-gradient(circle, #5a005c 0%, #3a004d 50%, #1a001f 100%);
  --text: #fff;
  --accent: #eac76c;
  --card-radius: 16px;
  --body-font: 'Manrope', sans-serif;
  --heading-font: 'Manrope', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.13);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  background: #f0f2f5;
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: var(--gradient);
  color: var(--text);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
  padding: 2rem 1rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: softBounceIn 0.9s cubic-bezier(.6,-0.01,.36,1.05);
}
.info-box {
  text-align: center;
}

.header h1 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* === Buttons === */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 0.9em 1em;
  border-radius: 9px;
  font-weight: 600;
  font-family: var(--body-font);
  font-size: 1.02em;
  background: #fff1;
  color: #fff;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.16s, background 0.2s;
}
.social-btn:hover,
.social-btn:focus-visible {
  transform: scale(1.04);
  background: #fff2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
  outline: none;
}

.social-btn img, .social-btn svg {
  height: 28px;
  width: 28px;
  object-fit: contain;
}

.social-btn.google { background: #fff; color: #444; }
.social-btn.instagram {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}
.social-btn.facebook { background: #1877F2; }
.social-btn.tiktok { background: #000; }

.menu-btn {
  background: linear-gradient(90deg, #7c23a8 0%, #3a004d 100%);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(90,0,92,0.12);
}
.menu-btn:hover, .menu-btn:focus-visible {
  background: linear-gradient(90deg, #a55ff9 0%, #7c23a8 100%);
}

/* === Layout Sections === */
.brand-logo-box {
  background: #fff;
  padding: 8px;
  border-radius: 13px;
  box-shadow: 0 0 8px rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
  max-width: 80%;
  margin: 12px auto 0;
}
.brand-logo-box img {
  max-width: 100%;
  border-radius: 7px;
}
.logo-contrast-bg {
  background: #2a0033; /* Or your chosen contrasting color */
}
.business-description-box {
  background: #fff;
  color: #333;
  font-size: 0.98rem;
  padding: 1.1em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  text-align: center;
  line-height: 1.6;
  max-width: 98%;
  margin: 0 auto;
}

.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin: 1.6em 0 1.2em;
}

/* === Contact === */
.contact h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.7rem;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  width: 100%;
}
.contact-list li {
  display: flex;
  gap: 1em;
  text-align: left;
}
.contact-list .icon {
  font-size: 2em;
  width: 1.5em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.10));
}
.contact-list .label {
  font-weight: 700;
  font-size: 1.08em;
  color: var(--text);
  margin-bottom: 0.13em;
  display: block;
}
.contact-list p {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}
.contact-list a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-list a:hover,
.contact-list a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

/* === Footer === */
.footer {
  margin-top: 2.3rem;
  color: #fff;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.credit {
  display: flex;
  gap: 7px;
}
.credit .heart { color: #e74c3c; }
.credit a {
  color: #fff;
  background: #000;
  padding: 2px 6px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.credit a:hover {
  background: #fff;
  color: #000;
}

/* === Animation === */
@keyframes softBounceIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  65% { opacity: 1; transform: translateY(-7px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

/* === Responsive === */
@media (max-width: 600px) {
  html { font-size: 15px; }
  body { padding: 8px; }
  .container {
    max-width: 100vw;
    width: 100vw;
    padding: 1rem 0.7rem;
    border-radius: 6px;
  }
  .social-links { gap: 0.6em; }
  .brand-logo-box { max-width: 98%; }
  .business-description-box { padding: 0.6em 0.2em; }
  .contact h2 { font-size: 1.18rem; }
  .contact-list .icon { font-size: 1.5em; }
}

/* === Optional: Delivery Buttons === */
.delivery-btn.takeaway {
  background: #ff8000;
  color: #fff;
}
.delivery-btn.glovo {
  background: #ffe600;
  color: #444;
}
.delivery-btn img {
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

/* === Menu Section === */
.menu-section {
  margin: 2em 0 1em;
  text-align: center;
}
.menu-section h2 {
  font-size: 1.6em;
  color: var(--accent);
  margin-bottom: 1em;
  letter-spacing: 0.04em;
}
.menu-images {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.menu-images img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.13);
  margin-bottom: 0.4em;
}
