
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: white;
    color: #555;
    line-height: 1.6;
    padding-top: 100px;
    font-family: "Open Sans", sans-serif;
  }
  
  a {
    text-decoration: none;
    transition: 0.3s;
  }
  
  /* Navbar */
  .navbar {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  }
  
  .logo a {
    font-weight: 700;
    font-size: 30px;
    color: rgb(33, 37, 41);
    letter-spacing: 1px;
  }
  
  .logo span {
    color: rgb(230, 20, 20);
  }
  
  /* Navbar Links */
  .nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
  }
  
  .nav-links ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    color: #555;
    font-weight: 500;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
    transition: 0.3s;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: rgb(230, 20, 20);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-out;
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: black;
  }
  
  /* Navbar Toggle (Small Screens) */
  .navbar-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Theme Toggle */
  .theme-toggle {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
  }
  
  .theme-toggle i {
    font-size: 30px;
  }

  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 5%;
      gap: 10px;
    }
  
    .nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
  
    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }
  
    .navbar-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      width: 100%;
    }
  
    .nav-links.show {
      display: flex;
      flex-direction: column;
    }
  
    .nav-links.active {
      display: block;
    }
  
    .nav-links ul {
      flex-direction: column;
      gap: 15px;
      background-color: white;
      padding: 10px;
      align-items: center;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        color: #555;
        font-size: 18px;
        font-weight: 500;
        position: relative;
        transition: 0.3s;
      }
      
      
  
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: rgb(230, 20, 20);
      bottom: 0;
      left: 0;
      transition: width 0.3s ease-out;
    }
  
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
  
    .nav-links a:hover,
    .nav-links a.active {
      color: black;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #ccc; 
      }
    
      .nav-links li:last-child {
        border-bottom: none; 
      }
  
    body.dark-mode .nav-links ul {
      background-color: #111;
    }
  }
  
/* Main Section */
.main-section {
    padding: 120px 0;
    background-color: white;
  }
  
  .main-section .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
  }
  
  .main-content {
    flex: 1;
    max-width: 600px;
  }
  
  .main-title {
    font-size: 65px;
    font-weight: 700;
    color: #37373f;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Amatic SC", sans-serif;
  }
  
  .main-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: "Open Sans", sans-serif;
  }
  
  .main-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }
  
  .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: rgb(230, 20, 20);
    color: white;
    border: 2px solid rgb(230, 20, 20);
  }
  
  .btn-primary:hover {
    background-color: rgb(242, 46, 46);
    border-color: rgb(242, 46, 46);
  }
  
  .btn-outline {
    background-color: transparent;
    color: #2a2828;
    border: none;
    font-size: 18px;
  }
  
  .btn-outline:hover {
    color: rgb(230, 20, 20);
  }
  
  .main-image {
    flex: 1;
    text-align: center;
    margin-top: 60px;
  }
  
  .main-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .main-image:hover img {
    animation: gentleVibration 0.3s ease infinite;
  }
  
  @keyframes gentleVibration {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-2px) rotate(-0.5deg); }
    50% { transform: translateX(2px) rotate(0.5deg); }
    75% { transform: translateX(-2px) rotate(-0.5deg); }
  }
  
  /* Main Section Responsive */
  @media (max-width: 992px) {
    .main-section .container {
      flex-direction: column-reverse;
      gap: 50px;
    }
  
    .main-title {
      font-size: 48px;
      text-align: center;
    }
  
    .main-content {
      align-items: center;
      text-align: center;
    }
  
    .main-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .main-title {
      font-size: 40px;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 16px;
    }
  
    .main-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  }
/* Chefs Section */
.chefs-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-subtitle {
    font-size: 16px;
    color: #7f7f90;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #37373f;
    font-family: "Amatic SC", sans-serif;
  }
  
  .section-title span {
    color: #e61414;
  }
  
  .chefs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .chef-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .chef-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  
  .chef-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .chef-info {
    padding: 25px;
    text-align: center;
    background-color: #f9f9f9 !important;
    background-image: none !important;
  }
  
  
  
  .chef-name {
    font-size: 22px;
    font-weight: 700;
    color: #37373f;
    margin-bottom: 5px;
  }
  
  .chef-role,
  .chef-bio {
    font-size: 14px;
    color: #7f7f90;
    line-height: 1.6;
  }
  
  /* Chefs Section Responsive */
  @media (max-width: 992px) {
    .chefs-container {
      gap: 20px;
    }
  
    .chef-card {
      min-width: 280px;
    }
  }
  
  @media (max-width: 768px) {
    .chefs-container {
      flex-direction: column;
      align-items: center;
    }
  
    .chef-card {
      max-width: 100%;
      width: 100%;
    }
  
    .section-title {
      font-size: 36px;
    }
  }
  
  @media (max-width: 576px) {
    .chefs-section {
      padding: 60px 0;
    }
  
    .section-header {
      margin-bottom: 40px;
    }
  
    .section-title {
      font-size: 32px;
    }
  }
/* Gallery Section */
.gallery-section {
  padding: 80px 20px;
  background-color: #eeeeee;
}

.gallery-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.gallery-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  transition: bottom 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  bottom: 0;
}

.gallery-item-title {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Amatic SC', sans-serif;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.gallery-item-desc {
  font-size: 16px;
  line-height: 1.5;
  max-width: 80%;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .gallery-container {
    flex-direction: column;
  }

  .gallery-column {
    width: 100%;
  }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-subtitle {
    font-size: 16px;
    color: #7f7f90;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #37373f;
    font-family: "Amatic SC", sans-serif;
  }
  
  .section-title span {
    color: #e61414;
  }
      
  .contact-boxes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
  
  .contact-box {
    flex: 1 0 calc(50% - 20px);
    min-width: 250px;
    background-color: rgb(247, 247, 247);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-box h3 {
    font-size: 20px;
    color: #37373f;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
  }
  
  .contact-box p {
    color: #7f7f90;
    line-height: 1.6;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    margin: 0;
  }
  @media (max-width: 768px) {
    .contact-box {
      flex: 1 0 100%;
      padding: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .contact-icon {
      width: 22px;
      height: 22px;
    }
  
    .contact-box h3 {
      font-size: 18px;
    }
  
    .contact-box p {
      font-size: 14px;
    }
  }
/* Contact Form Section */
.contact-form-section {
    background-color: white;
    width: 100%;
    /* margin: 0 auto ; */
    margin-bottom: 5% !important;
  }
  .contact-box i {
    color: #ce1212; 
    font-size: 18px;
  }
  .contact-form-container {
    max-width: 100%;
    margin: 0 auto;
  }
  .map-wrapper {
    width: 100%;
    padding: 0 20px; 
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .form-row {
    display: flex;
    gap: 25px;
    width: 100%;
  }
  
  .form-group {
    width: 100%;
  }
  
  .half-width {
    flex: 1;
    min-width: 0;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #ffffff;
  }
  
  .form-group input {
    height: 55px;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: rgb(206, 18, 18);
    background-color: white;
  }
  
  .form-group textarea {
    min-height: 180px;
    line-height: 1.6;
  }
  .submit-btn {
    background-color: #e61414;
    color: white;
    border: none;
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Open Sans", sans-serif;
    margin-left: 45%;
    margin-bottom: 25px;
  }
  .contact-form-wrapper {
    width: 77%;
    margin: 0 auto;
  }
  
  
  .submit-btn:hover {
    background-color: #df3d3d;
  }
  @media (max-width: 992px) {
    .contact-form-section {
      padding: 70px 30px;
    }
  
    .contact-form {
      gap: 22px;
    }
  
    .form-row {
      gap: 22px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-form-section {
      padding: 60px 25px;
    }
  
    .form-row {
      flex-direction: column;
      gap: 22px;
    }
  
    .form-group input {
      height: 50px;
      font-size: 17px;
    }
  
    .form-group textarea {
      min-height: 160px;
    }
  
    .submit-btn {
      padding: 15px 60px;
      font-size: 17px;
      margin: 0 35%;
    }
  }
  
  @media (max-width: 576px) {
    .contact-form-section {
      padding: 50px 20px;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 14px 18px;
      font-size: 16px;
    }
  
    .submit-btn {
      width: 40%;
      padding: 8px;
      margin: 0 35%;
      font-size: 16px;
    }
  }

/* Footer */

footer {
    background-image: url('../photo/textured-metal-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .footer-section {
    width: calc(33.33% - 20px);
    min-width: 250px;
    position: relative;
    z-index: 1;
  }
  
  .logo--container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .footer-section img[alt="flogo"] {
    width: 40px;
    height: 40px;
  }
  
  .footer-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #fff;
  }
  
  .footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
  }
  
  .social-media h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
  }
  
  .social-media h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60%;
    height: 2px;
    background-color: #fff;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .social-icons i {
    font-size: 20px;
    color: #ffffff;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .social-icons i:hover {
    color: #b91b1b;
    transform: scale(1.2);
  }
  .newsletter {
    margin-bottom: 40px; 
  }  
  
  .newsletter h3,
  .quick-links h3,
  .contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .email-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .newsletter input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    background-color: #fff;
    color: #000;
    min-width: 250px;
    border-radius: 999px; 
  }
  
  .newsletter button {
    background-color: #ce1212;
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    border-radius: 999px; 
  }
  
  
  .newsletter button:hover {
    background-color: #fb3d3d;
  }
  
  .quick-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
    margin: 0px;
  }
  
  .quick-links li {
    background: rgba(0, 0, 0, 0.3);
    padding:1px 4px;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .quick-links li:hover {
    background: rgba(104, 102, 102, 0.333);
  }
  
  .quick-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
  }
  
  .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .contact-info i {
    color: #ce1717;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .footer-section {
      width: 100%;
      margin-bottom: 30px;
    }
  
    .email-container {
      flex-direction: column;
    }
  
    .newsletter input{
        width: 100%;
    }
    .newsletter button {
      width: 28%;
    }
  
    .contact-info p,
    .contact-info h3 {
      justify-content: flex-start;
      text-align: left;
    }
  
    .quick-links ul {
        grid-template-columns: repeat(2, 1fr);
    }
  
    footer {
      flex-direction: column;
      align-items: center;
    }
  }
/* dark */
/* general body */
body.dark-mode {
    background-color: #111;
    color: #fff;
  }
  
  /* navbar */
  body.dark-mode .navbar {
    background-color: #111;
  }
  body.dark-mode .navbar-toggle {
    color: #fff;
  }
  body.dark-mode .logo a {
    color: #fff;
  }
  body.dark-mode .nav-links a {
    color: #eee;
  }
  body.dark-mode .nav-links a:hover,
  body.dark-mode .nav-links a.active {
    color: #fff;
  }
  body.dark-mode .nav-links a::after,
  body.dark-mode .nav-links a.active::after {
    background: #e61414;
  }
  body.dark-mode .theme-toggle {
    color: #fff;
  }
  
  /* main section (hero section) */
  body.dark-mode .main-section {
    background-color: #111;
    color: #fff;
  }
  body.dark-mode .main-title {
    color: #fff;
  }
  body.dark-mode .main-text {
    color: #ccc;
  }
  body.dark-mode .btn-outline {
    color: #fff;
  }
  body.dark-mode .btn-outline:hover {
    color: #e61414;
  }
  
  /* chefs section */
  body.dark-mode .chefs-section {
    background-color: #181818;
    color: #fff;
  }
  body.dark-mode .chefs-section h2,
  body.dark-mode .chefs-section {
    color: #fff;
  }
  body.dark-mode .chef-card {
    background-color: #1e1e1e;
  }
  body.dark-mode .chef-info {
    background-color: #1e1e1e !important;
  }
  body.dark-mode .chef-name {
    color: #fff;
  }
  body.dark-mode .chef-role,
  body.dark-mode .chef-bio {
    color: #cfc7c7;
  }
  
  /* gallery section */
  body.dark-mode .gallery-section {
    background-color: #111;
    color: #fff;
  }
  body.dark-mode .gallery-section h2,
  body.dark-mode .gallery-section p {
    color: #fff;
  }
  
  /* contact sections */
  body.dark-mode .contact-section {
    background-color: #181818;
    color: #fff;
    margin-bottom: 5%;
  }
  body.dark-mode .contact-form-section {
    background-color: #111;
    color: #fff;
  }
  body.dark-mode .contact-section h2,
  body.dark-mode .contact-section p,
  body.dark-mode .contact-section h3 {
    color: #fff;
  }
  body.dark-mode .contact-box {
    background-color: #1e1e1e;
    color: #fff;
  }
  body.dark-mode .contact-box p {
    color: #ccc;
  }
  body.dark-mode .contact-box i {
    color: #e61414;
  }
  
  /* form */
  body.dark-mode .form-group input,
  body.dark-mode .form-group textarea {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
  }
  body.dark-mode .form-group input::placeholder,
  body.dark-mode .form-group textarea::placeholder,
  body.dark-mode .newsletter input::placeholder {
    color: #ccc;
  }
  
  /* newsletter */
  body.dark-mode .newsletter,
  body.dark-mode .email-container {
    background-color: transparent;
    color: #fff;
  }
  body.dark-mode .newsletter input {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
  }
  body.dark-mode .newsletter button {
    background-color: #ce1212;
    color: #fff;
  }
  
  /* footer */
  body.dark-mode footer {
    background-color: #000;
  }
  body.dark-mode .footer-section {
    background-color: transparent;
    color: #fff;
  }
  body.dark-mode .footer-section h2,
  body.dark-mode .footer-section h3,
  body.dark-mode .footer-section p {
    color: #fff;
  }
  body.dark-mode .social-media h3::after {
    background-color: #fff;
  }
  body.dark-mode .social-icons i {
    color: #fff;

  }
  body.dark-mode .social-icons i:hover {
    color: #b91b1b;
    transform: scale(1.2);
  }
  body.dark-mode .quick-links li:hover {
    background: rgba(104, 102, 102, 0.333);
  }
  body.dark-mode .quick-links a {
    color: #fff;
  }
  body.dark-mode .contact-info p {
    color: #eee;
  }
  body.dark-mode .contact-info i {
    color: #e61414;
  }
  
  /* responsive nav background in dark */
  @media (max-width: 768px) {
    body.dark-mode .nav-links ul {
      background-color: #111;
    }
    body.dark-mode .nav-links li {
      border-bottom: 1px solid #333;
    }
  }
  