/* =============================================
   ملحمة ومشاوي أنيس زاهده — style.css
   Aesthetic: Charcoal Dark · Ember Amber · Fire
   ============================================= */

:root {
  --fire-500: #f97316;
  --fire-600: #ea580c;
  --fire-700: #c2410c;
  --fire-400: #fb923c;
  --fire-200: #fed7aa;
  --fire-100: #ffedd5;

  --ember: #fbbf24;
  --ember-dark: #d97706;

  --coal-950: #0c0a09;
  --coal-900: #1c1917;
  --coal-800: #292524;
  --coal-700: #44403c;
  --coal-600: #57534e;
  --coal-400: #a8a29e;
  --coal-200: #e7e5e4;
  --coal-100: #f5f5f4;

  --white: #ffffff;
  --cream: #fef9f0;

  --shadow-fire: 0 8px 32px rgba(249, 115, 22, 0.35);
  --shadow-coal: 0 8px 32px rgba(12, 10, 9, 0.4);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;

  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Cairo", "Reem Kufi", sans-serif;
  background: var(--cream);
  color: var(--coal-900);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.75;
}

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

a {
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =================== WHATSAPP =================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--ease);
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  background: #1fb355;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--ease);
}
.navbar.scrolled {
  background: var(--coal-900);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}
.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-insta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  ) !important;
  color: #fff !important;
  padding: 0 !important;
  transition: var(--ease);
}
.nav-insta:hover {
  transform: scale(1.12);
  opacity: 0.9;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  ) !important;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-family: "Reem Kufi", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 11px;
  color: var(--fire-400);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.nav-links a:hover {
  color: var(--fire-400);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--fire-600) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-fire) !important;
}
.nav-cta:hover {
  background: var(--fire-700) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}

/*
  HERO BACKGROUND IMAGE
  ─────────────────────
  Replace "hero-bg.jpg" below with your actual image filename.
  The image file must be in the same folder as style.css.
  The dark overlays on top keep all text readable regardless of the photo.
*/
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("try2.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Dark tint so the fire-themed gradient still bleeds through slightly */
  filter: brightness(0.45) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Multi-layer overlay: keeps the fire/ember colour mood alive */
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(249, 115, 22, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(251, 191, 36, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at center bottom,
      rgba(249, 115, 22, 0.15) 0%,
      transparent 70%
    ),
    linear-gradient(to top, rgba(12, 10, 9, 0.6) 0%, transparent 50%);
}

/* Ember particles */
.hero-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--fire-500);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(249, 115, 22, 0.7);
  animation: emberFloat linear infinite;
  opacity: 0;
}
.e1 {
  left: 10%;
  bottom: 20%;
  animation-duration: 6s;
  animation-delay: 0s;
}
.e2 {
  left: 25%;
  bottom: 10%;
  animation-duration: 8s;
  animation-delay: 1s;
  background: var(--ember);
}
.e3 {
  left: 50%;
  bottom: 15%;
  animation-duration: 7s;
  animation-delay: 2s;
}
.e4 {
  left: 70%;
  bottom: 25%;
  animation-duration: 9s;
  animation-delay: 0.5s;
  background: var(--ember);
}
.e5 {
  left: 85%;
  bottom: 10%;
  animation-duration: 5s;
  animation-delay: 3s;
}
.e6 {
  left: 40%;
  bottom: 5%;
  animation-duration: 7.5s;
  animation-delay: 1.5s;
}

@keyframes emberFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-300px) translateX(30px) scale(0.3);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.12);
  backdrop-filter: blur(8px);
  color: var(--fire-200);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  letter-spacing: 0.03em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.hero-title-line1 {
  font-family: "Cairo", sans-serif;
  font-size: clamp(1.8rem, 5.5vw, 3.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeUp 0.9s ease both 0.1s;
  letter-spacing: 0.05em;
}

.hero-title-line2 {
  font-family: "Amiri", serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 30%, var(--fire-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 1s ease both 0.2s;
  text-shadow: none;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  animation: fadeUp 1.1s ease both 0.3s;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 1.2s ease both 0.4s;
}

.btn-fire {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire-500), var(--fire-700));
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: var(--shadow-fire);
  letter-spacing: 0.02em;
}
.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.45);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: var(--ease);
}
.btn-ghost:hover {
  border-color: var(--fire-400);
  color: var(--fire-400);
  background: rgba(249, 115, 22, 0.08);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fire-300, #fdba74);
  font-size: 1.1rem;
  font-weight: 700;
  animation: fadeUp 1.3s ease both 0.5s;
  transition: var(--ease);
}
.hero-phone:hover {
  color: var(--fire-400);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================== EMBER DIVIDER =================== */
.ember-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  background: var(--cream);
  overflow: hidden;
}
.ember-divider.dark-div {
  background: var(--coal-900);
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire-400), transparent);
}
.dark-line {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(249, 115, 22, 0.4),
    transparent
  ) !important;
}
.divider-icons {
  font-size: 1.1rem;
  white-space: nowrap;
  padding: 18px 0;
  color: var(--fire-500);
}

/* =================== SECTIONS =================== */
.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  background: var(--fire-100);
  color: var(--fire-700);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--fire-200);
}

.section-title {
  font-family: "Reem Kufi", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--coal-900);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title.light {
  color: var(--white);
}

.section-desc {
  max-width: 660px;
  margin: 0 auto 48px;
  color: var(--coal-600);
  font-size: 16px;
  line-height: 1.85;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

/* =================== ABOUT =================== */
.about-section {
  background: var(--cream);
  text-align: center;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--fire-500);
  text-align: right;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow var(--ease);
}
.about-card.visible {
  opacity: 1;
  transform: none;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-fire);
}

.about-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--coal-900);
  margin-bottom: 8px;
}
.about-card p {
  font-size: 14px;
  color: var(--coal-600);
  line-height: 1.8;
}

/* =================== MENU =================== */
.menu-section {
  background: var(--coal-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(249, 115, 22, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(251, 191, 36, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.menu-item-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--r-md);
  padding: 32px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background var(--ease),
    border-color var(--ease);
  cursor: default;
}
.menu-item-card.visible {
  opacity: 1;
  transform: none;
}
.menu-item-card:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
}

.mic-emoji {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.menu-item-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.menu-item-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.pdf-cta-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(249, 115, 22, 0.1);
  border: 1.5px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: right;
}

.pdf-icon-wrap {
  font-size: 2.8rem;
  flex-shrink: 0;
}
.pdf-cta-text {
  flex: 1;
  min-width: 200px;
}
.pdf-cta-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pdf-cta-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.pdf-cta-text code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--fire-300, #fdba74);
}

/* =================== LOCATION =================== */
.location-section {
  background: var(--cream);
  text-align: center;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  text-align: right;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-md);
  border-right: 4px solid var(--fire-500);
  opacity: 0;
  transform: translateX(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.loc-card.visible {
  opacity: 1;
  transform: none;
}
.loc-icon {
  font-size: 1.6rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.loc-card strong {
  display: block;
  font-size: 14px;
  color: var(--coal-900);
  margin-bottom: 4px;
  font-weight: 700;
}
.loc-card p {
  font-size: 13px;
  color: var(--coal-600);
  line-height: 1.7;
}
.loc-link {
  color: var(--fire-600);
  font-weight: 600;
  transition: var(--ease);
}
.loc-link:hover {
  color: var(--fire-700);
}

.map-open-btn {
  display: block;
  text-align: center;
  margin-top: 8px;
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-coal);
  height: 400px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =================== QUOTE BANNER =================== */
.quote-banner {
  background: linear-gradient(135deg, var(--coal-950) 0%, #1a0f08 100%);
  padding: 72px 24px;
  text-align: center;
  border-top: 2px solid rgba(249, 115, 22, 0.2);
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
}
.quote-main {
  font-family: "Amiri", serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.quote-en {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  letter-spacing: 0.06em;
}

/* =================== CONTACT =================== */
.contact-section {
  background: var(--white);
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.cc-card {
  background: var(--coal-100);
  border-radius: var(--r-lg);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--ease);
  opacity: 0;
  transform: translateY(16px);
  border-bottom: 4px solid transparent;
}
.cc-card.visible {
  opacity: 1;
  transform: none;
}
.cc-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--fire-500);
  box-shadow: var(--shadow-fire);
}
.cc-icon {
  font-size: 2.4rem;
}
.cc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--coal-900);
}
.cc-card p {
  font-size: 14px;
  color: var(--coal-600);
}
.cc-wa {
  background: #f0fdf4;
}
.cc-wa:hover {
  border-bottom-color: #25d366;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}
.cc-map {
}

/* =================== FOOTER =================== */
.footer {
  background: var(--coal-950);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-logo-main {
  color: var(--white) !important;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  color: var(--fire-400);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: var(--ease);
}
.footer-links a:hover {
  color: var(--fire-400);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .location-inner {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    height: 320px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--coal-900);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--r-sm);
  }
  .nav-links a:hover {
    background: rgba(249, 115, 22, 0.12);
    color: var(--fire-400) !important;
  }
  .nav-cta {
    background: var(--fire-600) !important;
    color: var(--white) !important;
    text-align: center;
  }
  .menu-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-fire,
  .btn-ghost {
    width: 240px;
    text-align: center;
  }

  .section {
    padding: 64px 0;
  }

  .pdf-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .pdf-cta-text {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ember-divider {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .menu-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
}
