:root {
  --bg: #0e0e11;
  --panel: #15151c;
  --panel2: #101018;
  --text: #ffffff;
  --muted: #cfcfd4;
  --line: rgba(255,255,255,0.12);
  --accent: #e11d48;
  --accent2: #22c55e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --max: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HERO */

.hero {
  background: linear-gradient(135deg, #e11d48, #be123c);
  padding: 70px 16px 40px;
  text-align: center;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero h1 {
  margin: 0;
  font-size: 46px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.9);
}

.countdown-inline {
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.2);
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}

/* SUBSCRIBE */

.subscribe-block {
  margin-top: 16px;
}

.subscribe-title {
  margin: 0 0 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.95);
  font-size: 14px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.18);
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  outline: none;
  background: rgba(0,0,0,0.22);
  color: #ffffff;
}

.subscribe-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.7);
}

.subscribe-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.25);
}

.subscribe-form button {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.16);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.subscribe-form button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.35);
}

.subscribe-form button:disabled {
  opacity: 0.75;
  cursor: default;
  transform: none;
}

.subscribe-msg {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
}

/* CONTROLS */

.controls {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.search-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search {
  width: 320px;
  max-width: 75vw;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.15);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  outline: none;
}

.search::placeholder {
  color: rgba(255,255,255,0.75);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 700;
}

/* MAIN GRID */

.container {
  max-width: var(--max);
  margin: 36px auto 70px;
  padding: 0 16px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--panel2);
}

.card-body {
  padding: 16px;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  background: var(--accent2);
  color: #0e0e11;
  border-radius: 999px;
  text-transform: uppercase;
}

/* BOTTOM BANNER */

.bottom-banner {
  background: linear-gradient(135deg, #e11d48, #be123c);
  padding: 60px 16px;
  margin-top: 80px;
  text-align: center;
}

.bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.bottom-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bottom-banner h2 {
  margin: 0;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bottom-banner p {
  margin: 8px 0 0;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

.subscribe-block-bottom {
  margin-top: 18px;
}

/* FOOTER */

.site-footer {
  background: #0b0b0f;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 16px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner p {
  margin: 6px 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ACCESSIBILITY */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* MOBILE */

@media (max-width: 520px) {
  .hero {
    padding: 44px 16px 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-title-row,
  .bottom-title-row {
    flex-direction: column;
    align-items: center;
  }

  .bottom-banner h2 {
    font-size: 24px;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
  }

  .subscribe-form input[type="email"] {
    width: 100%;
    border-radius: 12px;
  }

  .subscribe-form button {
    width: 100%;
    border-radius: 12px;
  }
}

/*==========Logo================*/

.logo {
  position: absolute;
  top: 40px;       
  left: 30px;      
  z-index: 10;     
}

.logo img {
  max-height: 100px; 
  width: auto;
}

@media (max-width: 768px) {
  .logo img {
    max-height: 70px;
  }

  .logo {
    top: 20px;
    left: 15px;
  }
}


.hero {
  position: relative;
}

.logo {
  position: absolute;
  top: 50px;        
  left: 40px;       
  z-index: 10;      
}

.logo img {
  height: 140px;   
  width: auto;
  max-width: 90%;   
}

@media (max-width: 768px) {
  .logo {
    top: 20px;
    left: 20px;
  }

  .logo img {
    height: 80px; 
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;   
  }
}


.hero {
  position: relative;
}

.logo {
  position: absolute;
  top: 50px;
  left: 40px;
  z-index: 10;
}

.logo img {
  height: 140px;
  width: auto;
  max-width: 90%;
}

/* ======== Logo Mobile switch to relative, above hero title======== */
@media (max-width: 768px) {
  .logo {
    position: relative;  
    top: 0;
    left: 0;
    margin-bottom: 15px; 
  }

  .logo img {
    height: 80px;  
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;  
  }
}