: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: #ff0000; /* 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;
        }
        
        .top-bar {
            background-color: #b71c1c;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-links a {
            color: var(--primary-background);
            text-decoration: none;
            margin-right: 20px;
        }
        
        .login-btn {
            background: none;
            border: 1px solid white;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            cursor: pointer;
        }
        
        /* Logo and Search Container */
        .logo-search-row {
            padding: 15px 0;
            background-color: #d32f2f;
        }
        
        .logo-search-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-background);
            flex-shrink: 0;
        }
        
        .search-container {
            flex: 1;
            max-width: 400px;
            position: relative;
        }
        
        .search-bar {
            width: 100%;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
        }
        
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        
        .icons {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }
        
        .icon-btn {
            background: none;
            border: none;
            color: var(--primary-background);
            font-size: 20px;
            cursor: pointer;
        }
        /* end */
        
        /* Navbar */
        .custom-navbar {
            background-color: #b71c1c !important;
            padding: 10px 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: bold;
            margin-right: 30px;
        }
        
        .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;
        }
        
      .dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  background-color: white;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #b71c1c;
}
/* end */

        
        /* Main Content */
        .main-content {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

/* .main-content {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),

        url('../images/home.jpeg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    opacity: 20;
    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;
        }
        
        .tagline {
            font-size: 38px;
            color: #666;
            margin-bottom: 30px;
            text-align: left;
            width: 100%;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.1;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .btn-primary-custom {
            background-color: #ff6b35;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #e55a2b;
        }
        
        .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: #b71c1c;
        }
        
        /* Booking Form */
        .booking-form {
            margin-top: 30px;
            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;
        }
        
        /* Parallax Section */
        .parallax-section {
            height: 100vh;
            background-image: url('../images/home.jpeg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.7;
            z-index: 1;
        }
        
        /* 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%;
            }
        }
        
        /* 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 */
#carouselTrack .card img {
    height: 200px;
    object-fit: cover;
  }
  
  @media (max-width: 768px) {
    #carouselTrack .card {
      width: 100% !important;
      margin: 0 5px;
    }
  }
    /* 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;
  }
  
  .payment-logos img {
    filter: brightness(100%);
    transition: transform 0.3s;
  }
  
  .payment-logos img:hover {
    transform: scale(1.1);
  }
  

  .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);
  }

  .social-icons a i {
    transition: transform 0.3s;
  }
  .social-icons a:hover i {
    transform: scale(1.2);
  }


  @media (max-width: 767.98px) {
    .social-icons {
      justify-content: center !important;  /* Center on small screens */
      margin-top: 1rem;
    }
  }
  