:root {
  --font-family: 'Inria Sans', sans-serif;
  --white: #fff;
  --light-gray: #f5f5f5;
  --purple: rgba(70, 3, 70, 0.88);
  --gradient-bg: linear-gradient( #700570, #D60AD6);
  --background: linear-gradient(to bottom, rgb(248, 52, 246) 0.6%, rgb(152, 38, 252) 90%);
  --nav-test: purple; 
  --image: url('../Assets/images/other.jpeg')
}

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

body {
  font-family: var(--font-family);
  background-image: var(--image);
  background-size: cover;
  color: var(--white);
  min-height: 100vh;
  position: relative;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .site-header {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 10;
} */

/* .branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 64px;
  height: auto;
} */

/* .tagline {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-gray);
  font-family: var(--font-family);
  white-space: nowrap;
} */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-test); 
  color: var(--white);
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 40px;
  height: auto;
}

.nav-title {
  font-size: 25px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
  font-weight: 1000;
}

.nav-cta-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn.signup {
  background: var(--white);
  color: var(--nav-test);
}

.btn.signup:hover {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.login {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.login:hover {
  background: var(--white);
  color: var(--nav-test);
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.left-section {
  flex: 1 1 400px;
  text-align: center;
}

.headline {
  text-align: center;
  margin-bottom: 24px;
}

.headline-top,
.headline-bottom {
  display: block;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.headline-bottom {
  font-size: 45px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--light-gray); 
}




.cta-button {
  margin-top: 32px;
  display: inline-block;
  background-color: var(--purple);
  color: var(--light-gray);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: var(--purple); 
 border: 2px solid var(--purple);
}

.right-section .img {
  display: flex;
  grid-template-areas: 
    "biryani noodles"
    "biryani fries"
    "pasta pasta";
  gap: 16px;
  height: 100%;
  opacity: 20px;
}

.spicy-dum-biryani-2 {
  grid-area: biryani;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.node-4 {
  grid-area: noodles;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.node-5 {
  grid-area: fries;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.node-6 {
  grid-area: pasta;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ================================Generator-page=========================================== */







@media (max-width: 768px) {
  body {
    padding: 16px;
  }

  .site-header {
    top: 12px;
    left: 16px;
  }

  .branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .logo {
    width: 48px;
  }

  .tagline {
    font-size: 12px;
    max-width: 160px;
    line-height: 1.2;
  }

  .container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .right-section {
    order: -1;
  }

  .right-section .img {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .headline {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 40px;
  }
}