

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

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 1s;
}


/* NavBar */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .navbar-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo {
    width: 100px;
    height: auto;
    border-radius: 0.5rem;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-links a {
    color: wheat;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: 1s;
  }
  
  .nav-links a:hover {
    color: #333;
    text-decoration: underline;
    padding-bottom: 1rem;
  }

  .nav-menu-btn {
    display: none;
  }

  .order-btn {
    padding: 1rem 1.5rem;
    border: 2px solid black;
    height: 5rem;
    width: 10rem
  }


  @media (max-width: 768px) {
    .nav-logo-dark {
      display: block;
    }
  
    .nav-logo-white {
      display: none;
    }
  
    .nav-menu-btn {
      display: block;
      font-size: 2.5rem;
      position: relative;
      z-index: 1001;
      color: wheat;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%); /* hidden off-screen to the right */
      transition: transform 0.3s ease-in-out;
      z-index: 1000;
    }
  
    .nav-links li {
      margin: .7rem 0;
    }
  
    .nav-links.active {
      transform: translateX(0); /* slides into view */
    }

    .nav-links li a {
      text-align: center;
      margin-left: 1.5rem;
    }
  
  }
  

  @media (max-width: 480px) {
    .nav-logo-dark {
      display: block;
    }
  
    .nav-logo-white {
      display: none;
    }
  
    .nav-menu-btn {
      display: block;
      font-size: 2.5rem;
      position: relative;
      z-index: 1001;
      color: wheat;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%); /* hidden off-screen to the right */
      transition: transform 0.3s ease-in-out;
      z-index: 1000;
    }
  
    .nav-links li {
      margin: .7rem 0;
    }

    .nav-links li a {
      text-align: center;
   
    }
  
    .nav-links.active {
      transform: translateX(0); /* slides into view */
    }
  }
  

/* Header */

header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/bg6.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); 
    z-index: 1;
}

.header-container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center; 
    width: 100%;
}

.header-image img {
    background: transparent;
    width: 500px;
    height: auto;
    object-fit: contain;
    margin-right: 12rem;
    margin-top: -4rem;
}

.header-content {
    flex: 1; 
    margin-left: 6rem;
}

.header-content h2 {
    width: 100%; 
    margin-bottom: 2rem;
    margin-left: 2rem;
    padding: 1rem 2rem;
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.5rem;
    /* border: 2px dashed black; */
    text-shadow: 2px 2px wheat;
}

.header-content h1 {
    font-size: 4.5rem;
    margin-left: 4rem;
    font-family: 'Alfa Slab One';
    letter-spacing: .2rem;
}

.section-description {
    /* background-color: #F58546; */
    border-radius: .5rem;
    padding: 1.5rem;
    height: auto;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 4rem;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.burger-span {
    color: wheat;
}

.top-btn {
    position: relative;
    margin-left: 4rem;
    padding: 1.5rem 3.5rem;
    background: black;
    color: wheat;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    z-index: 99;
  }

  .top-btn:hover {
    background-color: wheat;
    color: black;
    transition: 1s;
  }
  
  
  @media (max-width: 768px) {
    .header {
      overflow-x: hidden;
    }
    .header-container {
      flex-direction: column;
      padding: 2rem 1rem;
      text-align: center;
    }
    
    .header-content {
      order: 2;
      margin: 0; /* Reset margins */
      padding: 1rem;
      width: 100%;
      z-index: 2; /* Make sure content is above the overlay */
    }
    
    .header-image {
      order: 1;
      width: 100%;
      margin: 0; /* Reset margins */
      display: flex;
      justify-content: center;
    }
    
    .header-image img {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin: 0; /* Reset margins */
      padding-top: 2rem;
      margin-top: -4rem;
    }
    
    .header-content h2 {
      font-size: 1.5rem;
      line-height: 2.5rem;
      margin: 1rem 0;
      width: 100%;
    }
    
    .header-content h1 {
      font-size: 3.5rem;
      margin: 0 0 1rem 0;
      text-align: center;
    }
    
    .top-btn {
      margin: 1rem 0;
      padding: 1rem 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .header-content h2 {
      font-size: 2rem;
      margin-top: -1.5rem;
    }
    
    .header-content h1 {
      margin-top: -4rem;
      font-size: 3rem;
    }

    .header-image img {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin-top: -2rem;
      margin-left: 1.8rem;
      padding-top: 2rem;
    }
    
    .top-btn {
      margin-top: 1.5rem;
      padding: 1.2rem 3rem;
    }

  }


/* Order Section */

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-left: 4rem;
    margin-right: 4rem;
}

.order-card {
    padding: 1rem 0;
    border-radius: 1rem;
    text-align: center;
    transition: .3rem;
    margin-left: 4rem;
    margin-right: 4rem;
}


.order-container h3 {
    max-width: fit-content;
    margin-inline: auto;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding: .5rem 2rem;
    font-size: 2.5rem;
    font-weight: 400;
    color: black;
    border-radius: .5rem;
    background-color: #F58546;
}

.order-img {
    width: 250px;
    height: 400px;
    filter: drop-shadow(10px 10px 30px rgba(0,0,0.3));
    margin: 0 auto; 
}

.order-card h4 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: -1rem;
}

.order-card p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: .5rem;
    width: 100%;
    color: black;
}

.order-card .order-btn {
    height: 4rem;
    width: 9rem;
    background-color: #F58546;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    border: none;
    margin-top: 1rem;
    border-radius: .5rem;
}

.order-card .order-btn:hover {
  background-color: wheat;
  color: black;
  transition: 1s;
}


#menu h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.price {
    font-weight: bold;
    font-size: 1.4rem;
    color: #F58546;
    margin: 10px 0;
  }

  @media (max-width: 768px) {
    .order-grid {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin: 0 1rem;
    }
  
    .order-card {
      margin: 0 auto;
    }
  
    .order-img {
      width: 100%;
      max-width: 250px;
      height: auto;
    }

    .order-container h3 {
      text-align: center;
      margin-left: 2rem;
      margin-right: 2rem;
      text-align: center;
      width: 100%;
  }

  .order-container .section-description {
    width: 95%;
  }
 }


 /* Banner Section */

.banner-container {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 1rem;
  padding: 2rem; 
  grid-auto-rows: 1fr; 
}

.banner-card {
  padding: 1rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1rem;
  display: flex; 
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  text-align: center; 
}

.banner-card:nth-child(1) {
  grid-column: 1 / 2; 
  grid-row: 1 / 3; 
  background-image: url("images/cityburger.jpg");
  height: 586px;
}

.banner-card:nth-child(2),
.banner-card:nth-child(3) {
  grid-column: 2 / 3; 
  background-size: cover; 
  height: 100%; 
}

.banner-card:nth-child(2) {
  background-image: url("images/banner1.jpg");
  margin-bottom: 1rem; 
  height: 275px;
}

.banner-card:nth-child(3) {
  background-image: url("images/shop.jpg");
  height: 275px;
}

.banner-card p {
  margin-top: -.5rem;
  font-size: 2.5rem; 
  font-weight: 500;
  color: beige;
}

.banner-card h4 {
  font-size: 1.5rem; 
  font-weight: 700;
  color: beige;
}

.banner-btn {
  padding: 1rem 2rem;
  background-color: #F58546;
  color: black;
  border: 2px solid black;
  border-radius: .5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .banner-container {
    grid-template-columns: 1fr; 
    width: 100%;
    padding: .5rem; /* You can increase this for wider outer spacing */
  }

  .banner-card:nth-child(1),
  .banner-card:nth-child(2),
  .banner-card:nth-child(3) {
    grid-column: 1 / 2; 
    margin: 0 auto; /* Adds vertical spacing between cards */
  }

  .banner-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
   
  }
}


  

/* Events Content */

.event-container {  
    background-image: url('images/header-bg.png');
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    border-radius: .5rem;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;
    padding: 1rem;
    margin-top: 4rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    border-radius: .5rem;
    /* box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5); */
  }

  .event-title {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 3rem;
  }

  .event-header {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
  }

  .event-description {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .event-details {
    margin-top: 1rem;
    text-align: left; 
  }
  
  .event-details h3 {
    font-size: 2rem;
    font-weight: 500;
  }
  
  .event-image {
    margin-top: 1rem;
    display: flex; 
    justify-content: center; 
    align-items: center;
  }
  
  .event-image img {
    max-width: 100%; 
    height: auto;
    margin-top: 1rem;
  }


  /* Main events */

  .main-event-container {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .main-event-tag {
    margin-top: 2.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F58546;
    font-weight: 600;
    margin-bottom: .5rem;
  }
  
  .main-event-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
  }
  
  .main-event-headline:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #F58546;
  }
  
  .main-event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .main-event-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 1s;
  }
  
  .main-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .main-event-date {
    background-color: #F58546;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
  }
  
  .main-event-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .main-event-month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .main-event-content {
    padding: 1.5rem;
  }
  
  .main-event-content h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .main-event-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
  }
  
  .main-event-link {
    color: #F58546;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
  }
  
  .main-event-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
  }
  
  .main-event-link:hover {
    color: #F58546;
  }
  
  .main-event-link:hover i {
    transform: translateX(3px);
  }
  
  .main-event-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-event-button {
    display: inline-block;
    background-color: transparent;
    color: #222;
    border: 2px solid #F58546;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .main-event-button:hover {
    background-color: #F58546;
    color: white;
  }
  
  .main-event-social {
    font-size: 0.9rem;
    color: #555;
  }
  
  .main-event-social a {
    color: #F58546;
    text-decoration: none;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .event-container {
      width: 95%;
      margin: 0 auto;
    }

    .event-content {
      grid-template-columns: 1fr; 
      grid-template-rows: 1fr auto; 
    }
    
    .event-image {
      grid-row: 1; 
    }
    
    .event-details {
      grid-row: 2;
      text-align: center; 
    }
    #contact .reservation-bg-1 {
        display: none;
      }
    
     #contact .reservation-bg-2 {
      display: none;
    }

    .main-event-tag {
      margin-left: 2.8rem;
      margin-bottom: 1.5rem;
    }

    .main-event-headline {
      margin-left: 2.5rem;
    }

    .main-event-cards {
      grid-template-columns: 1fr;
      margin-left: 2rem;
      margin-right: 2rem;
    }
  
    .main-event-cta {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      
    }
  }


  /* Reservation */

  .reservation {
    border-radius: .5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 1rem;
    width: 100%;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .reservation-title {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    color: #333;
  }

  .reservation-header {
    text-align: center;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 3rem;
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
  }

  .reservation-container h3 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
  }

  .reservation-container form {
    max-width: 400px;
    margin-inline: auto;
    margin-top: auto;
    display: grid;
    gap: 1rem;
  }

  .reservation-container input {
    padding: 1rem 1.25rem;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    transition: 1s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  }

  .reservation-container input:focus {
    border-color: #F58546;
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.15);
  }

  .reservation-container input::placeholder {
    color: #777;
  }

  .reservation img {
    display: flex;
    position: absolute;
    z-index: -1;
  }

 .reservation-bg-1 {
    left: 0;
    top: 0;
    width: clamp(100px, 25vw, 350px);
  }

  .reservation-bg-2 {
    right: 0;
    bottom: 0;
    width: clamp(100px, 20vw, 250px);
  }

  .btn {
    background-color: #F58546;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    color: black;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
  }

  .btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 768px) {
    .reservation-card {
      padding: 2rem 1rem;
    }
    
    .reservation-header {
      font-size: 2.5rem;
    }
  }


  /* Newsletter */

  .newsletter-section {
    position: relative;
    padding: 5rem 0;
    background-color: #f9f9f9;
    overflow: hidden;
  }
  
  .newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }
  
  .newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .newsletter-badge {
    display: inline-block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #F58546;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .newsletter-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .newsletter-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(231, 76, 60, 0.1);
    color: #F58546;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }
  
  .benefit-text {
    font-size: 1rem;
    color: #444;
  }
  
  .newsletter-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  
  .newsletter-form {
    padding: 2.5rem;
  }
  
  .form-header {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: #222;
  }
  
  .form-header p {
    color: #777;
    font-size: 0.95rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
  }
  
  .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: 1s
  }
  
  .form-group input:focus {
    border-color: #F58546;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    outline: none;
  }
  
  .form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .form-checkbox input {
    margin-top: 0.3rem;
    margin-right: 0.75rem;
  }
  
  .form-checkbox label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
  }
  
  .newsletter-submit-btn {
    width: 100%;
    background-color: #F58546;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .newsletter-submit-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .newsletter-submit-btn:hover {
    background-color: #F58546;
  }
  
  .newsletter-submit-btn:hover i {
    transform: translateX(3px);
  }
  
  .newsletter-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
  }
  
  .newsletter-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
  }
  
  .burger-icon {
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: url('images/burger-icon.png') no-repeat center center;
    background-size: contain;
  }
  
  .fries-icon {
    top: -80px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: url('images/fries-icon.png') no-repeat center center;
    background-size: contain;
  }
  
  @media (max-width: 992px) {
    .newsletter-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .newsletter-text h2 {
      font-size: 2rem;
    }
    
    .newsletter-text p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .newsletter-section {
      padding: 3rem 0;
    }
    
    .newsletter-form {
      padding: 1.5rem;
    }
    
    .newsletter-text h2 {
      font-size: 1.75rem;
    }
  }


  /* Footer */

  .footer {
    position: relative;
    background-image: url("images/footer.png");
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding-top: 5rem;
    margin-top: 4rem;
  }

  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
    z-index: 0;
  }
  
  .footer-container {
    margin-left: 4rem;
    position: relative;
    z-index: 1;
  }
  
  .footer-content-grid {
    display: grid;
    padding-bottom: 3rem;
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo-img {
    border-radius: .5rem;
    height: 6rem;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .footer-socials {
    display: flex;
    gap: 16px;
  }
  
  .footer-socials a {
    background: rgba(255, 255, 255, 0.1);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 1s;
  }
  
  .footer-socials a:hover {
    background: #F58546;
    transform: translateY(-3px);
  }
  
  .footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-links-column-1 {
    margin-left: 6rem;
  }

  .footer-links-column-2 {
    margin-left: 10.5rem;
    width: 100%;
  }

  .footer-links-column-1 h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-links-column-2 h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links-column-1 h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #F58546;
  }

  .footer-links-column-2 h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #F58546;
  }
  
  .footer-links-container .footer-connect {
    font-size: 1.5rem;
  }

  .footer-menu, .footer-contact {
    list-style: none;
    line-height: 1.5;
    width: 120%;
    padding: 0;
    margin: 0;
  }

  .footer-links-column-2 .footer-newsletter {
    font-size: 1.7rem;
  }

  .footer-links-column-2 .newsletter-tagline {
    font-size: 1.4rem;
  }
  
  .footer-menu li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }
  
  .footer-menu a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: 1s;
  }
  
  .footer-menu a:hover {
    opacity: 1;
    color: #F58546;
    padding-left: 5px;
  }
  
  .footer-contact li {
    display: flex;
    align-items: center;
  }
  
  .footer-contact span {
    margin-right: 10px;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    color: #F58546;
  }
  
  .footer-subscribe {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-subscribe input {
    padding: 12px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer-subscribe button {
    padding: 12px;
    border: none;
    background: #F58546;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: 1s;
  }
  
  .footer-subscribe button:hover {
    background: #F58546;
  }
  
  .footer-bar {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
  }
  
  .footer-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-legal {
    display: flex;
    gap: 20px;
  }
  
  .footer-legal a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: 1s;
  }
  
  .footer-legal a:hover {
    opacity: 1;
  }

  
  /* Responsive styles */

  @media (max-width: 992px) {
    .footer-content-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-links-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .footer {
      position: relative;
      background-image: url("images/footer.png");
      background-size: cover;
      background-position: center;
      color: white;
      overflow: hidden;
      padding-top: 5rem;
      margin-top: 4rem;
    }

    .footer-container {
      margin-left: -3.5rem;
    }

    .footer-links-container {
      grid-template-columns: 1fr;
    }

    .footer-logo {
      margin-left: 5rem;
    }
    .footer-description {
       margin-left: 5rem;
       width: 75%;
    }

    .footer-bar-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }

    .footer-socials {
      margin-left: 5rem;
    }

    .footer-connect {
      margin-left: -1rem;
    }
    .footer-contact {
      margin-left: -1rem;
    }
    .footer-newsletter {
      width: 75%;
      margin-top: 1rem;
      margin-left: -5.5rem;
    }

    .newsletter-tagline {
      margin-left: -5.5rem;
      width: 75%;
    }

    .footer-subscribe {
      margin-left: -5.5rem;
      width: 65%;
    }
  }





