*{
margin: 0;
padding: 0;
box-sizing: border-box;
scrollbar-color: #F5A228 transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
font-family:  Archivo, sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px; /* adjust to your header height */
}

a {
  text-decoration: none;
}

body, html {
display: flex;
flex-direction: column;
padding: 0 2%;
}

/* Main Header */
.header {
  height: 80px;
  padding: 0 3.9%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 6px -5px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Nav Structure */
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Icon */
.menu-icon {
  display: none; /* shown only on mobile via media query */
  cursor: pointer;
}

/* Mobile Menu Links */
.mobile-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons img {
  height: 24px;
  width: 24px;
}

.content {
position: relative;
width: 100%;
height: fit-content;
padding-top: 80px; /* matches header height */
}


.main-image-container{
height: 78.8vh;
display: flex;
align-items: center;
justify-content: space-between;
margin-left: 0px;
background-color:  #f9f8f8;
/* background-color:#ebeaea; */
position: relative;
}

.main-image-container img {
padding-top: 2.5px;
}

.main-image-container .right-side{
padding: 2%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}


.main-image-container .right-side .slogan{
font-size: 2.5rem;
font-weight: 600;
/* color: #000; */
color: #333;
text-align: center;
margin-bottom: 10%;
}

.main-image-container .right-side .explore-button{
background-color: #F5A228;
color: #fff;
border: none;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
cursor: pointer;
padding: 1rem 2rem;
font-size: 1.1rem;
font-weight: 500;
border-radius: 8px;
align-items: center;
text-transform: uppercase;
}

.main-image-container .right-side .explore-button:hover{
background-color: #43000A;
color:  #fff;
}

.text-horizontal-container {
position: relative;
width: 100%;
overflow: hidden;
border-top: 1px solid #000;
border-bottom: 1px solid #000;
height: 80px;
display: flex;
align-items: center;
background-color: #fff;
}

.scrolling-text {
display: inline-block;
white-space: nowrap;
animation: scroll-left 12s linear infinite;
}

.scrolling-text p {
display: inline-block;
font-size: 5rem;
font-weight: 700;
color: #000;
text-transform: uppercase;
}

.square {       
color: #F5A228;         
}


.text-horizontal-container .lavash {
font-size: 5rem;
font-weight: 700;
margin-right: 10px;
color:#000;
}

/* Animation: Start from neutral (visible), scroll left, reappear */
@keyframes scroll-left {
0% {
transform: translateX(0); /* visible immediately */
}
50% {
transform: translateX(-100%); /* scroll out */
}
50.0001% {
transform: translateX(100%); /* jump to right */
}
100% {
transform: translateX(0); /* return to visible */
}
}


.about {
margin-top: 5%;
display: flex;
align-items:center;
justify-content: center;
flex-direction: column;
}

.about p{
font-size: 1.2rem;
font-weight: 400;
margin-bottom: 2%;
text-align: center;
max-width: 800px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
}

.highlight {
font-size: 2rem; 
font-weight: bold;
color: #000;
}

.rolling_pin {
width: 100px;
height: 100px;
margin-bottom: 5%;
}

.products {
color: #333;
margin-top: 5%;
align-items: center;
display: flex;
flex-direction: column;
}

.products .section-title {
font-size: 2rem;
font-weight: 700;
text-align: center;
margin-bottom: 0%;
color: #000000;
}

.products .section-description {
font-size: 1.2rem;
line-height: 1.6;
text-align: center;
max-width: 800px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-list {
margin-top: 5%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
justify-items: center;
}

.product-item {
background-color: #fff;
border-radius: 1rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
padding: 1.5rem;
text-align: center;
transition: transform 0.3s ease;
}

.product-item:hover {
transform: translateY(-5px);
}

.product-item img {
width: 100%;
max-height: 200px;
object-fit: cover;
border-radius: 0.75rem;
margin-bottom: 1rem;
}

.product-item h3 {
font-size: 1.4rem;
color: #000000;
margin-bottom: 0.5rem;
}

.product-item .price {
font-size: 1.1rem;
font-weight: 600;
color: #F5A228;
}


.order-button-wrapper {
text-align: center;
margin-top: 5%;
}

.order-button {
padding: 1rem 2rem;
font-size: 1.1rem;
background-color: #ccc; /* Initial disabled color */
color: #fff;
border: none;
border-radius: 8px;
cursor: not-allowed;
transition: background-color 0.3s ease;
font-weight: 500;
}

.order-button:enabled {
background-color: #F5A228;
cursor: pointer;
}

.order-button:enabled:hover {
background-color: #d88f1f;
}


/* Modal base styles */
.modal-overlay {
display: none; /* Hidden by default */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
z-index: 1000;
justify-content: center;
align-items: center;
}

.modal {
background: white;
padding: 2rem;
border-radius: 1rem;
width: 90%;
max-width: 500px;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close-button {
position: absolute;
top: 1rem;
right: 1.2rem;
font-size: 2rem;
cursor: pointer;
color: #888;
}

.modal form {
display: flex;
flex-direction: column;
gap: 1rem;
}

.modal form label {
font-weight: 600;
color: #444;
}

.modal form input,
.modal form select {
padding: 0.6rem;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 1rem;
}

.modal form button {
background-color: #F5A228;
color: #fff;
border: none;
padding: 0.8rem;
border-radius: 6px;
font-weight: bold;
font-size: 1rem;
cursor: pointer;
}

.modal form button:hover {
background-color: #d88f1f;
}

.rolling_pin_two{
width: 100px;
height: 100px;
align-items: center;
margin-bottom: 5%;
margin-top: 50%;
}


.news {
margin-top: 2%;
background-color:  #ffffff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items:flex-start;
padding: 20px;
gap: 5%;

}

.news_text {
max-width: 800px;
padding: 2%;
font-size: 1.2rem;
font-weight: 400;
margin-bottom: 2%;
text-align: center;
color: #333;
border-top:  1px solid #000;;

}

.news_text h2 {
font-size: 4rem;   
font-weight: 700;
margin-bottom: 10px;
text-transform: uppercase;
border-bottom: 1px solid #000;
}

h3 {
font-size: 1.4rem;
margin-top: 20px;
color: #000000;
text-transform: uppercase;
}

p {
font-size: 1rem;
line-height: 1.6;
margin-top: 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

strong {
color: #000;
}




.expo_img img {
max-width: 500px;
max-height: 500px;
display: block;
background-color: #fff;
border-radius: 1rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease;
}



@keyframes float {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(8px);
  }
}


.contact_details{
margin-top: 5%;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}

.collaboration{
font-size: 1.2rem;
font-weight: 400;
margin-bottom: 2%;
text-align: center;
max-width: 800px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
}

.main_info {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
text-align: center;
}

.contact_details .rolling_pin { 
width: 100px;
height: 100px;
margin-top: 5%;
margin-bottom: 5%;
}

.contact_details .icons_small{
width: 20px;
height: 20px;
margin: 0 10px;
} 

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background-color: #f1f1f1; /* light background, optional */
  font-family: sans-serif;
  font-size: 0.9rem;
  text-align: center;
  flex-wrap: wrap; /* makes it responsive */
}

.footer .rolling_pin {
  width: 60px;
  height: auto;
}

.footer_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer_social {
  display: flex;
  gap: 15px;
}

.footer .icons {
  width: 20px;
  height: 20px;
}



/* Base styles - unchanged from your CSS */

/* Add responsive enhancements */

/* Mobile: 0px - 600px */
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 10px 3.9%;
  }

  .logo img {
    height: 40px;
  }

  

 
  /* Hide the mobile menu by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 60px; /* adjust based on your header height */
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 1rem;
}

/* Show it when the 'show' class is added */
.mobile-menu.show {
  display: flex;
}

  nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .menu-icon {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.product-item img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
}
.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
  .social-icons {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .main-image-container {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 20px 0;
  }

.left-side-img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-width: 800px; /* Adjust as needed */
  }

.expo_img{
    display: none;
  }

  .main-image-container img {
    width: 100%;
    height: auto;
    max-width: 800px; /* Adjust as needed */
  }

  .main-image-container .right-side {
    align-items: center;
    text-align: center;
    padding: 0;
}
  .main-image-container .right-side .slogan {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .scrolling-text p,
  .text-horizontal-container .lavash {
    font-size: 2.5rem;
  }

  .about p,
  .collaboration {
    font-size: 1rem;
    padding: 0 10px;
  }

  .products .section-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .product-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact_details .main_info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news {
    flex-direction: column;
    align-items: center;
  }

  .news_text h2 {
    font-size: 2rem;
  }

  .expo_img img {
    max-width: 100%;
    height: auto;
  }

  .main_info {
    grid-template-columns: 1fr;
  }
}

/* Tablets: 601px - 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
  .header {
    padding: 10px 3.9%;
  }

  .left-side-img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-width: 600px; /* Adjust as needed */
  }

.expo_img{
    display: none;
  }

  .main-image-container {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .news {
    flex-direction: column;
  }

  .main_info {
    grid-template-columns: 1fr 1fr;
  }
}

/* Larger screens: 1025px and up - optional fine-tuning */
@media (min-width: 1025px) {
  .mobile-menu {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
  }

  .menu-icon {
    display: none;
  }
}
