:root{
  --bg:#0b0f12;
  --card:#111418;
  --text:#e9eef2;
  --accent:#f6a623;
  --muted:#9aa4ad;
  --glass: rgba(255,255,255,0.03);
  --container:1100px;
  --radius:14px;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{margin: 0;padding: 0;box-sizing: border-box;}
body{
    font-family:'Open Sans' , sans-serif;
    background: #fafafa;
    color:var(--dark);
    padding-top: var(--nav-height);
}
.navbar {
    position:relative;
    top: 0; 
    left: 0; 
    width: 100%;  
    z-index: 1000;
    background-color: #fff;
    padding: 1rem 5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo{
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}
.navbar ul{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.navbar li{
    margin: 0 1.5rem;
}
.navbar a{
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}
.navbar:hover{
    color: #000;
}
.navbar a[href="#home"]{
    position: relative;
    color: #000;
    font-weight: bold;
}
.navbar a[href="#home"]::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left:0 ;
    width: 100%;
    height: 3px;
    background-color: red;
}
.nav-buttons{
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero{
    display:flex ;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    height: 100vh;
}
.container.hero-inner{
    flex: 1;
    padding-right: 20px;

}
.hero-image img{
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
h1{
    font-size: 3em;
    font-family:sans-serif;
    color: #333;
}
p{
    font-size: 1.2em;
    color: #666;
}
.cta{
    margin-top: 30px;
    display: flex;
    gap: 20px;
}
.cta{
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}
.btn{display:inline-block;background:var(--accent);color:#111;padding:12px 18px;border-radius:10px;text-decoration:none;font-weight:700}
.link-video{align-self:center;color:#fff;text-decoration:none;background-color: rgb(168, 26, 26);padding: 12px 18px;}
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}
#chefs {
  padding: 60px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
#chefs .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
#chefs .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#chefs .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

#chefs .card img {
  width: 100%;
  display: block;
}

#chefs .card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
  color: #222;
}

#chefs .card p {
  margin: 0 15px 15px;
  font-size: 14px;
  color: #555;
}
#gallery{
  padding: 60px 0;
  background: #f8f8f8;
  font-family: "poppins",sans-serif;
  text-align: center;
}
#gallery h2{
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}
#gallery p{
  color: #555;
  margin-bottom: 40px;
}
.gallery-container{
  max-width: 1100px;
  margin: 0 20px;
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 16px;
}
.gallery-grid .item{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-grid img{
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-grid .item:hover img{
  transform: scale(1.1);
}
.gallery-grid .overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-grid .item:hover .overlay{
  opacity: 1;
}
#contact{
  padding:60px 0;
  background: #fff;
  font-family: poppins, sans-serif;
  text-align: center;
}
#contact h2{
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}
#contact p{
  color: #555;
  margin-bottom: 40px;
}
.contact-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-content{
  display: grid;
  grid-template-columns: 1fr,1fr;
  gap: 24px;
  text-align: left;
}
.form-box{
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
}
.form-box .info p{
  margin: 0 0 10px;
  font-size: 14px;
  color: #444;
}
.form-box form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-box input,
.form-box textarea{
width: 100%;
padding: 10px;
border: 1px solid#ddd;
border-radius: 6px;
font-size: 14px;
}
.form-box button{
  background: #cf3f1f;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition:background 0.3s ;
}
.form-box button:hover {
  background: #e65a3c;
}
@media(max-width: 768px){
  .contact-content{
    grid-template-columns: 1fr;
  }
}
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-col {
  flex: 1 1 250px;
  margin: 15px;
}

.footer-col h2.logo {
  font-size: 24px;
  color: #ffb727;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ffb727;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffb727;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  color: #ccc;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ffb727;
}

.copy {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}