@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital, wght@0,400;0,500;0,600;0,700;1,400&display=swap');

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --white-color: #fff;
  --dark-color: black;
  --primary-color: rgba(164, 161, 161, 0.6);
  --secondary-color: rgb(184, 216, 236);
  --tertiary-color: rgb(177, 239, 177);

  --section-bg: linear-gradient(145deg, rgba(164, 161, 161, 0.7), rgba(184, 216, 236, 0.3));
  --section-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --section-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  --section-border: 2px solid rgba(255, 255, 255, 0.3);
  --section-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);

  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  --site-max-width: 1300px;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
p {
  font-family: Arial;
}
img {
  width: 100%;
}
header {
  position: fixed;
  width: 100%;
  z-index: 10001;
  background: var(--white-color);
}
header .navbar {
  display: flex;
  padding: 20px;
  padding-bottom: 0px;
  align-items: center;
  justify-content: space-between;
}
.hamburger {
  position: relative;
  cursor: pointer;
  width: 34px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: transform 0.3s ease;
  padding: 0;
  z-index: 10002;
}
.hamburger:hover {
  transform: scale(1.1); 
}
.hamburger span {
  width: 100%;          
  height: 4px;
  background: var(--dark-color);
  border-radius: 3px;
  display: block;
  padding: 0;            
  transition: 0.3s ease;
}
.logo {
  height: 45px;
  object-fit: contain;
  cursor: pointer;
  margin-left: 0;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}
.logo:hover { 
  transform: scale(1.05); 
}
.nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  background-color: var(--dark-color);
  font-size: var(--font-size-n);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}
.nav-link:hover {
  background-color: transparent;
  color: var(--dark-color);
  border-style: solid;
  border-width: 0px;
  box-shadow: 0 0 15px rgba(69, 254, 78, 0.6);
  font-size: var(--font-size-m);
}
.nav-menu {
  display: flex;
  gap: 10px;
  font-family: 'times new roman';
  position: relative;  
  z-index: 9999;
}
.header-left {
  display: flex;
  gap: 10px;
}
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  margin: 100px 0 30px;
  /*
  max-width: var(--site-max-width);
  */
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  gap: 0;
  position: relative;
  width: 100%;
}
.welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    var(--tertiary-color), 
    var(--secondary-color));
  z-index: 10;
}
.hero {
  position: relative;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  background-color: burlywood;
}
.hero-img {
  max-height: 650px;
  min-height: 430px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 1.2s ease, filter 0.8s ease;
  will-change: transform;
  animation: fadeInScale 1.5s ease-in-out forwards;
  transform-origin: center center;
}
.hero-img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);;
}
.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1.6s ease both;
}
.advert {
  background-color: var(--tertiary-color);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 25px;
  position: relative;
  z-index: 5;
}
.advert-logos {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  z-index: 6;
}
.advert-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.advert-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  border-radius: 50%;
  pointer-events: none; 
  user-select: none;
}
.no-restaurants {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
h1, h2 {
  font-size: 7.5rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  animation: fadeInUp 1.5s ease forwards;
}
.title {
  font-size: 6.5rem;
  font-family: Arial;
}
.subtitle {
  font-size:2rem;
  margin-top: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  animation: fadeIn 2s ease forwards 0.5s;
}
h3 {
  font-size: 3.5rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  animation: fadeInUp 1.5s ease forwards;
}
.steps-hed-size {
  font-size: 2.2rem;
  margin: 0 0 25px 0;
  color: var(--dark-color);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: left;
}
.steps-hed-size::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--dark-color);
  border-radius: 2px;
}
.section {
  padding: 40px 20px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: var(--site-max-width);
  text-align: center;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  margin: auto;
  text-align: left;
}
.steps {
  padding: 10 30px;
  border-radius: 20px;
  font-size: var(--font-size-l);
  box-shadow: var(--section-shadow);
  font-family: Arial, sans-serif;
  background: var(--section-bg);
  transition: var(--section-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: var(--section-border);
  backdrop-filter: blur(5px);
  transform: translateY(0);
}
.steps:hover {
  transform: translateY(-12px);
  box-shadow: var(--section-hover-shadow);
  background: linear-gradient(145deg, rgba(184, 216, 236, 0.3), rgba(164, 161, 161, 0.7));
}
.steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--tertiary-color), var(--secondary-color));
  border-radius: 20px 20px 0 0;
}
.steps > div {
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  position: relative;
  padding-left: 15px;
  text-align: left;
}
.steps > div::before {
  content: '•';
  color: var(--tertiary-color);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: -5px;
  top: -2px;
}
.steps p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}
.steps strong {
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-block;
  margin-right: 5px;
}
.why-style {
  max-width: 800px;
  margin: auto;
  font-family: Arial;
  Font-size: 2.2rem;
}
.tc{
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.terms-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 12px;

  background: var(--tertiary-color);
  color: var(--dark-color);

  font-family: Arial;
  font-size: 1.2rem;
  font-weight: 700;

  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);

  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.terms-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  border-color: rgba(0,0,0,0.25);
}

.terms-btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.fd {
  text-align: center;
  background-color: var(--primary-color);
  margin: auto;
  max-width: 1210px;
}
.romela {
  background-color: var(--tertiary-color);
  color: var(--dark-color);
  font-family: Arial;
  font-size: var(--font-size-xxl);
  padding: 5px;
  border-radius: 5px;
}
.fb {
  font-size: var(--font-size-xxl);
  padding-left: 10px;
  align-items: flex-start;
}
.section-image {
  border-radius: var(--border-redius-s);
  max-width: 350px;
  margin: 25px auto 0;
  height: auto;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--section-transition);
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.section-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 30px;
  text-align: center;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1300px;
  padding-right: 300px;
  text-align: left;
}
.footer-about, .footer-contact {
  flex: 1 1 300px;
}
.footer h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-item i {
  color: #c7b8ff;
}
.contact-item a {
  color: #fff;
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-grid{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .title {
    font-size: 3.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .welcome {
    display: grid;
    grid-template-columns: 1fr;
    margin: 80px 0 0;
    gap: 0;
    border-radius: 0;
  }
  .hero-img {
    object-fit: cover;
    min-height: 0px;
  }
  .title {
    font-size: 3.5rem;
    padding-top: 35px;
  }
  .subtitle {
    font-size: 1rem;
  }
  .section {
    margin-top: 10px;
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 25px;
  }
  .steps {
    margin-bottom: 0;
    padding: 0;
  }
  .steps-hed-size {
    font-size: 2rem;
  }
  .steps > div, .steps p {
    font-size: 1.1rem;
  }
  .section-image {
    max-width: 280px;
  }
  h3 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    animation: fadeInUp 1.5s ease forwards;
  }
  .fb {
    font-size: 1.5rem;
  }
  .romela {
    font-size: 1.3rem;
  }
  .footer-container {
    margin-left: 0;
    padding-right: 10px;
  }
  .terms-btn {
    width: 100%;
    max-width: 260px;
    font-size: 1rem;
  }
}
.typed-text {
  font-size: 2.6rem;        
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  padding: 0 20px;           
}
@media (max-width: 600px) {
  .typed-text {
    font-size: 1.7rem;
  }
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10000;
}
.hamburger-menu {
  position: fixed;
  top: 110px;
  left: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10002;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.hamburger-menu a {
  color: black;
  font-size: 1.1rem;
  text-decoration: none;
}
.hamburger-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .nav-menu .nav-item { 
    display: none; 
  }
  .nav-menu .nav-item:last-child { 
    display: block; 
  }
}
/* ADD these keyframes if not already in your CSS */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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