:root {
  --heading-font: 'Open Sans', sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
  --accent-font: 'Amatic SC', cursive;
  --primary-background: #FFFFFF; /* White for main content background */
  --primary-text: #000000; /* Black for body text and headings */
  --accent-red: #b71c1c; /* Red for buttons and call-to-action elements */
  --accent-orange: #F4A261; /* Orange for food imagery or highlights */
  --secondary-text: #333333; /* Dark gray for secondary text or footer */
  --section-divider: #D3D3D3; /* Light gray for backgrounds or borders */
  --highlight-yellow: #FFD60A; /* Yellow for promotional accents */
  --fresh-green: #2A9D8F; /* Green for food imagery or freshness accents */
  --food-brown: #8B4513; /* Brown for grilled food imagery */
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--body-font);
            background-color: var(--primary-background);
            color: var(--primary-text);
            line-height: 1.6;
        }
        
        /* Header Styles */
        .header {
          background-color: var(--accent-red);
          color: white;
          position: sticky;
          top: 0;
          z-index: 1030;
        }
        
        /* end */
        
        /* Navbar */
        .custom-navbar {
          background-color: #b71c1c !important;
          padding: 10px 0;
      }
      
      .navbar-brand {
          margin-right: 30px;
      }
      
      .navbar-brand img {
          height: 40px;
          vertical-align: middle;
      }
      
      .navbar-nav {
          margin-left: auto; /* Pushes nav links to the right */
      }
      
      .navbar-nav .nav-link {
          color: white !important;
          font-weight: 500;
          margin: 0 15px;
          transition: opacity 0.3s;
      }
      
      .navbar-nav .nav-link:hover {
          opacity: 0.8;
      }
      
      /* end */

.main-content {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),

        url('../images/🥙\ Mouthwatering\ Shawarma_\ A\ Perfect\ Blend\ of\ Meat\ and\ Veggies\ 🌯.jpeg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    opacity: 1;
    background-attachment: fixed;
}
       
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .hero-content {
            padding: 40px 0;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            color: var(--primary-background);
            margin-bottom: 30px;
            line-height: 1.1;
        }
        
          .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: flex-start; /* Align to the left */
            margin-top: 30px;
        }
      
        
        .btn-secondary-custom {
            background-color: #d32f2f;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
       .btn-secondary-custom:hover {
    background-color: var(--primary-background);
    color: var(--accent-red);
}
        
        /* Booking Form */
        .booking-form {
            margin-top: 25px;
            background: linear-gradient(135deg, #b39ddb 0%, #9575cd 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .booking-form h3 {
            color: #4a4a4a;
            font-size: 24px;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            background-color: white;
        }
        
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            background-color: white;
            cursor: pointer;
        }
        
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            background-color: white;
            resize: vertical;
            min-height: 80px;
        }
        
        .submit-btn {
            width: 100%;
            background-color: #3f51b5;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #303f9f;
        }
        
        
    
      
      /* Responsive Design */
      @media (max-width: 768px) {
          .content-container {
              grid-template-columns: 1fr;
              gap: 30px;
          }
          
          .hero-title {
              font-size: 2.5rem;
          }
          
          .logo-search-container {
              flex-direction: column;
              gap: 15px;
          }
          
          .search-container {
              max-width: 100%;
          }
      
          /* Shift background image downward on small screens */
          .main-content {
              background-position: center 20%; /* Moves image down to show more of the bottom */
              min-height: 120vh; /* Increased height to ensure form visibility */
              align-items: flex-start; /* Align content to top to avoid clipping */
              padding-top: 20px; /* Add padding to give form breathing room */
          }
      
          .booking-form {
              margin-bottom: 30px; /* Add bottom margin to ensure form isn't cut off */
          }
      }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-content {
            animation: fadeInUp 1s ease-out;
        }
        
        .booking-form {
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        
 .features {
  font-family: 'Segoe UI', sans-serif;
}

.feature-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(91%) saturate(2413%) hue-rotate(338deg) brightness(99%) contrast(101%);
}

.feature-text .card-title {
  font-size: 18px;
  font-weight: bold;
}

.feature-text .card-text {
  font-size: 14px;
  margin-bottom: 0;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: #000;
  opacity: 0.2;
  margin: auto; /* vertical center inside col-auto */
}


@media (max-width: 767.98px) {
  .features .row {
    flex-direction: column;
  }
  .divider {
    display: none;
  }
}
/* end */




/* carousel */

.shawarma-item {
  border: 1px solid var(--section-divider, #e0e0e0);
  border-radius: 12px;
  overflow: hidden;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.shawarma-item img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  font-size: 24px;
  margin: 0 10px;
}

.transition {
  transition: transform 0.5s ease-in-out;
}

    /* end  */


 
  /* promo */
  .promo-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 40px 80px; /* Controls space from left and right edges */
    box-sizing: border-box;
    flex-wrap: wrap;
  }
  
  /* Left promo (Wine) - Bigger */
  .promo-block:first-child {
    flex: 2;
  }
  
  /* Right promo (Cleaning) - Smaller */
  .promo-block:last-child {
    flex: 1.3;
  }
  

  .promo-block {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    padding: 30px;
    color: black;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .promo-content {
    max-width: 90%;
    color: #000;
    text-align: left;
    align-self: center;
    padding-left: 20px; 
  }
  
  .top-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
  }
  
  .promo-content h2 {
    font-size: 1.8rem;
    margin: 10px 0 5px;
  }
  
  .promo-content h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
  }
  
  .promo-content h1 span {
    font-size: 2.5rem;
  }
  
  .discount {
    font-size: 4rem;
    margin: 0;
  }
  
  .discount span {
    font-size: 1.5rem;
    vertical-align: top;
  }
  
  .small-text {
    font-size: 0.9rem;
    margin: 10px 0 15px;
  }
  
 
  .shop-btn {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--primary-background);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s ease;
  }
  
  .shop-btn:hover {
    background-color: var(--primary-background);
    color: var(--accent-red);
  }
  

  .limited-supply {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 120px;
    height: 120px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    transform: rotate(20deg);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }
  
  @media (max-width: 900px) {
    .promo-container {
      flex-direction: column;
      padding: 20px;
    }
  
    .promo-block {
      width: 100%;
      height: 400px;
    }
  
    .promo-block:first-child,
    .promo-block:last-child {
      flex: unset;
    }
  
    .limited-supply {
      top: 20px;
      right: 20px;
      width: 90px;
      height: 90px;
      font-size: 0.9rem;
    }
  
    .promo-content h1 {
      font-size: 2.2rem;
    }
  
    .promo-content h2 {
      font-size: 1.5rem;
    }
  
    .discount {
      font-size: 3rem;
    }
  }
  
  /* end */


/* subscribe */
  .subscribe-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/shawarma-img2.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; 
    color: white;
    overflow: hidden;
    transition: background-position 0.1s ease-out;
  }
  
 
  .subscribe-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
  }
  

.overlay-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    text-align: left;
  }
  
  
  .small-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .big-discount {
    font-size: 6rem;
    font-weight: bold;
    margin: 0;
  }
  
  .big-discount span {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: normal;
    margin-left: 5px;
  }
  
  .sub-heading {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
/* Form container */
.subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 20px;
    max-width: 100%;
  }
  
  /* Email input styling */
  .subscribe-form input[type="email"] {
    flex: 1;
    padding: 18px 20px;
    border: none;
    border-radius: 40px;
    font-size: 0.95rem; /* smaller font size for placeholder */
    outline: none;
    min-width: 300px;
    background-color: var(--secondary-text);
    color: var(--primary-background);
  }
  
  
.subscribe-form button {
    background-color: var(--accent-red);
    color: var(--primary-background);
    padding: 16px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
  }
  
  .subscribe-form button:hover {
    background-color: var(--primary-background);
    color: var(--accent-red);
  }
  
  

  @media (max-width: 768px) {
    .subscribe-section {
      justify-content: center;
      padding: 20px;
      text-align: center;
    }
  
    .overlay-content {
      max-width: 100%;
    }
  
    .big-discount {
      font-size: 4rem;
    }
  
    .sub-heading {
      font-size: 1.4rem;
    }
  
    .subscribe-form {
      flex-direction: column;
      align-items: center;
    }
  
    .subscribe-form input,
    .subscribe-form button {
      width: 100%;
      border-radius: 50px;
    }
  }
  /*end  */



/* shop */
  .shop-section {
    margin-top: 2rem;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
  }
  
  .background-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .content-layer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1300px;
  }
  
  .phone-image {
    max-width: 15rem;
    width: 100%;
    height: auto;
    border-radius: 2rem;
    margin-left: 0;
  }
  
  .text-content {
    max-width: 37.5rem;
    color: white;
    margin-left: 0;
  }
  
  .text-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
  }
  
  .text-content h1 span {
    display: block;
  }
  
  .small-text {
    font-size: clamp(1rem, 3vw, 1.7rem);
    margin-bottom: 0.625rem;
  }
  
  .text-content .description {
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    margin-top: 1.25rem;
    margin-bottom: 1.875rem;
  }
  
  .store-buttons {
    display: flex;
    gap: 0.9375rem;
    flex-wrap: wrap;
  }
  
  .store-buttons img {
    height: clamp(2.5rem, 5vw, 3.125rem);
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .store-buttons img:hover {
    transform: scale(1.05);
  }
  

  @media (max-width: 768px) {
    .shop-section {
      min-height: auto;
      padding: 2rem 0;
    }
  
    .content-layer {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
      padding: 1rem;
    }
  
    .phone-image {
      max-width: 15rem;
    }
  
    .text-content {
      max-width: 100%;
    }
  
    .text-content h1 {
      font-size: clamp(2rem, 6vw, 3rem);
    }
  
    .small-text {
      font-size: clamp(0.875rem, 2.5vw, 1.2rem);
    }
  
    .text-content .description {
      font-size: clamp(0.75rem, 2vw, 0.9rem);
    }
  
    .store-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .phone-image {
      max-width: 12rem;
    }
  
    .text-content h1 {
      font-size: clamp(1.5rem, 5vw, 2rem);
    }
  
    .small-text {
      font-size: clamp(0.75rem, 2vw, 1rem);
    }
  
    .text-content .description {
      font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }
  
    .store-buttons img {
      height: clamp(2rem, 4vw, 2.5rem);
    }
  }
      
/* end */


/* footer */
.footer-section {
  background-color: var(--accent-red);
  margin-top: 70px;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons a i {
  transition: transform 0.3s;
}

.social-icons a:hover i {
  transform: scale(1.2);
}

.payment-logos img {
  height: 35px;
  width: auto;
  object-fit: contain;
  background-color: white;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.payment-logos img:hover {
  transform: scale(1.1);
}

/* Mobile-specific styles */
@media (max-width: 767.98px) {
  .footer-section {
    padding-top: 2rem;
  }

  .footer-section h2 {
    font-size: 1.5rem;
  }

  .footer-section h5 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }

  .social-icons {
    justify-content: center !important;
    margin-top: 0.5rem;
  }

  /* Combine Menu and Info in one row */
  .col-md-4.mb-4:not(:first-child) {
    display: inline-block;
    width: auto;
    min-width: 120px;
    flex: 1;
  }

  .col-md-4.mb-4:nth-child(2) {
    margin-right: 1rem;
  }

  .col-md-4.mb-4 {
    margin-bottom: 1.5rem !important;
  }

  .row.text-center.text-md-start {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .payment-logos img {
    height: 25px;
  }

  .footer-section hr.line {
    opacity: 1; /* Preserve opacity-100 from line class */
    margin: 0.1rem 0; /* Shift divider up more */
  }

  .footer-section .text-center p {
    font-size: 0.85rem;
  }

  .footer-section .text-center h5 {
    margin-bottom: 1.5rem;
  }

  .d-flex.flex-wrap.justify-content-center.gap-4.mb-3 {
    gap: 2rem;
    margin-bottom: 1rem;
  }
}

/* Dropdown styles (unchanged) */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  z-index: 1000;
  border-radius: 6px;
  padding: 0;
}

.dropdown-menu a.dropdown-item {
  color: #333;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
}

.dropdown-menu a.dropdown-item:hover {
  background-color: var(--primary-background);
  color: var(--accent-red);
}