
@import url('https://fonts.googleapis.com/css2?family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap'); #secon {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    background-color: #e4eaf1;
    padding: 3vw 0vw;
    display: block;
}
@font-face {
  font-family:library-3;
  src: url(css/font/Mileast.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:"Overlock", sans-serif;
  line-height: 1.6;
  background: #fff;
}
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: white;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-text h1 {
  font-size: 4rem;
  color:#454143;
  font-family:"Overlock", sans-serif;; font-weight: 800; font-style: normal
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color:#454143;
}
.btn {
  background: #e60023;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
}
section {
  padding: 60px 20px;
}
.container {
  max-width: 1100px;
  margin: auto;
}
.menu-items {
   display: grid;
  grid-template-columns: auto auto auto auto;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.menu-items .item {
  width: 22vw;
  text-align: center;
}
.menu-items img {
  width: 100%;
  border-radius: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}
.navbar {
  background: white;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #e60023;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight:800;
font-family:"Overlock", sans-serif;
}
.nav-links a:hover {
  color: #e60023;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin-bottom: 5px;
  border-radius: 5px;
}
footer {
  background: #111;
  color: #eee;
  padding: 30px 20px;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .socials a {
  margin-right: 10px;
}
footer .socials img {
  width: 24px;
  filter: invert(1);
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem; font-family:"Overlock", sans-serif; font-weight: 900; font-style: normal
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 20px;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}


@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  width: 150px;
  align-self: flex-end;
}
#menu {
  padding: 50px 0;
}

#menu h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  font-family:"Overlock", sans-serif; font-weight: 800; font-style: normal
}

.menu-items {
  display: grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 10%;
}

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

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

.item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.item h3 {
  font-size: 2vw;;
  margin: 15px 0;
  font-family:library-3; /*font-family:"Overlock", sans-serif;*/ font-weight: 600; font-style: normal
}

.item p {
  font-size: 1.2vw;
  color: #666;
}

.item .price {
  font-size: 1.2vw;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
#about-page {
  padding: 50px 0;
  background-color: #fff;
}

#about-page h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
font-family:"Overlock", sans-serif; font-weight: 800; font-style: normal
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

.about-content img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  max-width: 500px;
}

.about-textw {
  flex: 1;
  max-width: 100%;
}
.about-textw ol{margin:0vw; padding:0vw;}
.about-textw ol li{margin-left:3vw; margin-top:1vw;}

.about-textp {
  flex: 1;
  max-width: 100%;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}
#gallery-page {
  padding: 50px 0;
  background-color: #f8f8f8;
}

#gallery-page h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
#franchise {
  padding: 50px 0;
  background-color: #fff;
}

#franchise h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.franchise-info {
  margin: 0 auto;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.7;
}
.franchise-info p{text-align:center;margin-bottom:30px;}
.franchise-info h3 {
  margin-top: 30px;
  font-size: 24px;
  color: #222;
}

.franchise-info ul,
.franchise-info ol {
  margin-left: 20px;
  padding-left: 20px;
}

.franchise-info li {
  margin-bottom: 10px;
}

.franchise-info .btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #ff5722;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.franchise-info .btn:hover {
  background-color: #e64a19;
}

@media (max-width: 480px) {
.menu-items {
  display: grid;
  grid-template-columns: auto auto;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.menu-items .item {
  width: 40vw;
  text-align: center;
}
.menu-items img {
  width: 100%;
  border-radius: 10px;
}

.item .price {
  font-size: 2.5vw;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
.item p {
  font-size: 2.5vw;
  color: #666;
}
.item h3{
	font-size:3vw;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(78vw, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 20px;
}