/* =============================================================
   Emirah International Supermarket — Website Coming Soon
   Light, fresh, premium market theme · 2026
   ============================================================= */

:root {
  /* Surfaces */
  --bg: #faf7ef;          /* warm off-white */
  --bg-2: #f4efe1;        /* slightly deeper cream for accents */
  --surface: #ffffff;     /* card background */
  --surface-soft: #fbf9f3;

  /* Lines */
  --line: #ece4cf;
  --line-strong: #d9cfb3;

  /* Text */
  --ink: #15110a;         /* near-black, warm */
  --ink-2: #2a241a;
  --muted: #6b624f;
  --muted-2: #8a8270;

  /* Brand */
  --gold: #f0b400;        /* signage gold */
  --gold-deep: #c98f00;
  --gold-soft: #fff4c2;
  --gold-glow: rgba(240, 180, 0, 0.28);

  /* Fresh accent (used very sparingly) */
  --green: #0f8a4f;

  /* WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-deep: #1ebe5d;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(20, 16, 8, 0.04);
  --shadow-sm: 0 6px 18px -10px rgba(20, 16, 8, 0.12), 0 2px 6px -2px rgba(20, 16, 8, 0.06);
  --shadow: 0 30px 60px -30px rgba(20, 16, 8, 0.22), 0 10px 25px -10px rgba(20, 16, 8, 0.1);
  --shadow-lg: 0 50px 100px -40px rgba(20, 16, 8, 0.28), 0 18px 40px -18px rgba(20, 16, 8, 0.14);

  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
}

/* ----------------------------------- Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-soft);
}

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Lucide icons baseline */
[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* Brand icons — inline SVGs that follow the button's text colour. */
.brand-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
}

/* ----------------------------------- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* Soft daylight glow in the page background */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(800px 500px at 85% -10%, rgba(240, 180, 0, 0.12), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(255, 244, 194, 0.45), transparent 60%);
}

/* ----------------------------------- Brand bar ----- */
.brand-bar {
  display: flex;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 8px;
}

@media (min-width: 768px) {
  .brand-bar {
    padding-top: 40px;
    padding-bottom: 12px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.25s var(--ease);
}

.brand:hover { opacity: 0.85; }

.brand__logo {
  display: block;
  height: 120px;
  width: auto;
  /* TODO: adjust height here if you want the logo bigger/smaller */
}

@media (min-width: 768px) {
  .brand__logo { height: 160px; }
}

@media (min-width: 1200px) {
  .brand__logo { height: 190px; }
}

/* ----------------------------------- Hero ----- */
.hero {
  position: relative;
  padding: 24px 0 56px;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero { padding: 36px 0 72px; }
}

@media (min-width: 1024px) {
  .hero { padding: 48px 0 88px; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero__content {
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(240, 180, 0, 0.35);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(240, 180, 0, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero__title {
  margin: 22px 0 18px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw + 0.6rem, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero__title-accent {
  display: inline;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.hero__subtitle {
  font-size: clamp(1rem, 0.6vw + 0.85rem, 1.18rem);
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__note {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__note::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--line-strong);
}

/* Hero image */
.hero__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 5;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}

.hero__media:hover img {
  transform: scale(1.03);
}

.hero__media-caption {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.hero__media-caption [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--gold-deep);
}

@media (min-width: 768px) {
  .hero__media-caption {
    left: 20px;
    top: 20px;
    font-size: 13px;
  }
}

/* ----------------------------------- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}

.btn [data-lucide] {
  width: 18px;
  height: 18px;
}

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

.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 8px 22px -10px rgba(20, 16, 8, 0.45);
}

.btn--primary:hover {
  background: #000;
  color: var(--gold);
  box-shadow: 0 14px 28px -12px rgba(20, 16, 8, 0.55);
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-xs);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  box-shadow: 0 8px 22px -12px var(--gold-glow);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
  box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.5);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-deep);
  border-color: var(--whatsapp-deep);
  color: #fff;
}

/* ----------------------------------- Sections ----- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
  position: relative;
  padding-left: 32px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--gold-deep);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.section-lede {
  color: var(--muted);
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.08rem);
  margin: 0;
}

/* ----------------------------------- Visit ----- */
.visit {
  position: relative;
  padding: 8px 0 56px;
}

@media (min-width: 768px) {
  .visit { padding: 16px 0 72px; }
}

.visit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 640px;
}

.visit__head {
  text-align: center;
}

.visit__head .eyebrow {
  padding-left: 32px; /* keep the line+eyebrow combo */
  margin-bottom: 10px;
}

.visit__head .section-title {
  margin: 0;
  font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem);
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 28px;
  display: grid;
  gap: 22px;
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .info-list { padding: 36px; }
}

.info-list__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

.info-list__item + .info-list__item {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.info-list__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border: 1px solid rgba(240, 180, 0, 0.3);
}

.info-list__icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.info-list__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 4px;
}

.info-list__value {
  font-size: 0.98rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}

.info-list__value a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: border-color 0.25s, color 0.25s;
}

.info-list__value a:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* Socials */
/* Contact icons — single row of round brand-coloured icon buttons */
.contact-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.icon-btn {
  --icon-bg: var(--surface);
  --icon-fg: var(--ink);
  --icon-border: var(--line-strong);
  --icon-hover-bg: var(--ink);
  --icon-hover-fg: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon-fg);
  border: 1px solid var(--icon-border);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.icon-btn .brand-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s var(--ease);
}

.icon-btn:hover {
  background: var(--icon-hover-bg);
  color: var(--icon-hover-fg);
  border-color: var(--icon-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(20, 16, 8, 0.25);
}

.icon-btn:hover .brand-icon {
  transform: scale(1.08);
}

.icon-btn--whatsapp  { --icon-hover-bg: var(--whatsapp); }
.icon-btn--instagram { --icon-hover-bg: #d6249f; }
.icon-btn--facebook  { --icon-hover-bg: #1877f2; }

/* ----------------------------------- Footer ----- */
.site-footer {
  position: relative;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 720px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer p {
  margin: 0;
}

.credit a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.credit a:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.credit__heart {
  display: inline-block;
  color: var(--gold-deep);
  animation: heartbeat 2.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%      { transform: scale(1.2); }
  20%      { transform: scale(1); }
  30%      { transform: scale(1.18); }
  40%      { transform: scale(1); }
}

/* ----------------------------------- Reveal animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------- Mobile polish ----- */
@media (max-width: 560px) {
  .hero__ctas .btn,
  .visit__actions .btn {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__media:hover img { transform: none; }
}
