/* General Styles */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Aref+Ruqaa:wght@400;700&family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=El+Messiri:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Pinyon+Script&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Smooch+Sans:wght@100..900&display=swap');
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff; /* Light background color */
    color: #000000;
    text-align: center;
    overflow: hidden;
}

header {
    padding: 20px 0;
    position: sticky;
    top: 0%;
    position: sticky;
}

.logo-container {
    text-align: center;
    background-color: #ffffff;
}

.logo {
    max-width: 150px;
    height: auto;
}

 /* ---------- Desktop Navbar Styles ---------- */
 nav {
    margin-top: 0;
    border-top: 2px solid #c6af70;
    border-bottom: 2px solid #c6af70;
    padding: 15px 0;
    position: sticky; /* Make the navbar sticky */
    top: 0;
    background: rgb(255, 255, 255); /* Prevent content scrolling under it */
    z-index: 1000;
  }
  
  .navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a {
    text-decoration: none;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    color: #000000;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: #c6af70;
  }
  
  .navbar li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #c6af70;
    transition: width 0.5s linear;
  }
  
  .navbar li:hover::after {
    width: 100%;
  }
  
  /* ---------- Side Navigation Styles (Mobile) ---------- */
  .side-nav {
    height: 100%;
    width: 0; /* Hidden by default */
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align: center;
  }
  
  .side-nav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    background-color: #ffffff;
    color: #000000;
    display: block;
    transition: 0.3s;
    line-height: 40px;

  }
  
  .side-nav a:hover {
    color: #c6af70;
    transition: width 0.5s linear;

  }
  
  .side-nav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* ---------- Hamburger Icon (Visible on Mobile Only) ---------- */
  .hamburger {
    display: none; /* Hidden on desktop */
    font-size: 30px;
    cursor: pointer;
    margin: 15px;
    color: #000000;
  }
  
  /* ---------- Media Query for Mobile (max-width: 455px) ---------- */
  @media screen and (max-width: 455px) {
    /* Hide the desktop navbar */
    nav {
      display: none;
    }
    /* Show the hamburger icon */
    .hamburger {
      display: inline-block;
    }
  }

.banner {
    position: relative;
    width: 100%;
    height: 80vh; /* Default: 80% of viewport height */
    overflow: hidden;
}

.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Text */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 700;
    font-size: 5rem;
    letter-spacing: 2px;
    overflow: hidden; /* Ensures the text is hidden until it's revealed */
    white-space: nowrap;
    width: 0;
    animation: typewriter 5s steps(40) 1s forwards, fadeIn 3s ease-in-out 1s;
}

/* Media Query for phone screens (approx. 455px width) */
@media (max-width: 455px) {
     /* Let the banner's height be defined by the video’s aspect ratio */
     .banner {
        height: auto;
    }
    /* Adjust the video for responsive full-width display */
    .banner video {
        position: relative;   /* Remove absolute positioning */
        width: 100%;          /* Full screen width */
        height: auto;         /* Height adjusts to preserve aspect ratio */
        top: 0;
        left: 0;
        transform: none;
        min-width: initial;
        min-height:initial;
        object-fit: initial;
    }
    /* Adjust banner text so it’s still visible on small screens */
    .banner-text {
        font-size: 20px;
        letter-spacing: 1px;
        /* Keep it centered over the video */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.below-banner-text {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 20px 0;
    background-color: #ffffff;
}

.elevated-text {
    font-family: "Public Sans", sans-serif; /* Use your preferred font here */
    font-size: 14rem; /* Adjust as needed */
    font-weight: 600;
    color: #000000;
    display: inline-block;
}

.style-text {
    font-family: "Pinyon Script", sans-serif; /* Use your preferred font here */
    font-size: 14rem; /* Adjust as needed */
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
    display: inline-block;
    margin-left: 10px;
}

/* Media Query for phone screens (approx. 455px wide) */
@media screen and (max-width: 455px) {
    .below-banner-text {
        padding: 10px 0; /* Reduced padding for smaller screens */
    }
    .elevated-text {
        font-size: 3rem; /* Reduced font size for phone view */
    }
    .style-text {
        font-size: 3rem; /* Reduced font size for phone view */
        margin-left: 5px; /* Adjust margin as needed */
    }
}


.features-text {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #f8f8f8;
}

.feature {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem; /* Small font size */
    font-weight: 600;
    color: #000000;
    display: inline-block;
    margin: 0 160px; /* Equal spacing between text */
    letter-spacing: 1px;
}

@media screen and (max-width: 455px)
{
    .features-text {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        background-color: #f8f8f8;
    }
    .feature {
        font-family: "Montserrat", sans-serif;
        font-size: 5px; /* Small font size */
        font-weight: 600;
        color: #000000;
        display: inline-block;
        margin: 0 10px; /* Equal spacing between text */
        letter-spacing: 1px;
    }
}

/* ---------- Default Styles for Desktop ---------- */
.brand-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    text-align: center;
    margin-left: 0;
}

.brand-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin-left: 0;
}

.left-content {
    width: 60%;
    padding-right: 20px;
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    padding-left: 0;
    margin-left: 0;
    text-align: justify;
}

.right-content {
    width: 35%;
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    text-align: justify;
    font-family: "Montserrat", sans-serif;
}

.right-content h2 {
    font-size: 50px;
    margin-bottom: 5px;
    margin-left: 130px;
    color: #000000;
}

.right-content p {
    font-size: 18px;
    color: #000000;
    margin-left: 80px;
}

/* ---------- Mobile Styles for Screens up to 455px ---------- */
@media screen and (max-width: 455px) {
    /* Force the container to display as block so items stack vertically */
    .brand-section,
    .brand-content {
        display: block !important;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 10px; /* Optional horizontal padding */
        text-align: center;
    }
    
    /* Left content occupies full width */
    .left-content {
        width: 100% !important;
        padding-right: 0;
        font-size: 14px;  /* Reduce font size for mobile readability */
        text-align: justify;
        
    }
    
    /* Right content is placed below the left content */
    .right-content {
        width: 100% !important;
        margin: 20px 0 0 0; /* Add vertical spacing above the right-content */
        text-align: center;
        font-size: 32px;  /* Slightly reduce overall font size */
    }
    
    .right-content h2 {
        font-size: 40px;  /* Reduced heading size */
        margin: 0 auto;
    }
    
    .right-content p {
        font-size: 16px;  /* Reduced paragraph font size */
        margin: 0 auto;
    }
}


/* Horizontal Line Styles */
hr.top-line, hr.bottom-line {
    margin: 0;
    padding: 0;
    width: 100%;
    border: none;
    border-top: 2px solid #ddd;
}


/* Animation for Title */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply Animation */
.animated-title {
    font-size: 6rem;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInSlide 0.8s ease-in-out forwards;
    font-family: "Montserrat", sans-serif;
    color: #000000;

}

/* Global Box-Sizing */
* {
    box-sizing: border-box;
  }
  
  /* ---------- Gallery Styles (Desktop) ---------- */
  .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
  }
  
  .gallery-item {
      position: relative;
      width: calc(33.33% - 20px); /* Three images per row, accounting for gap */
      overflow: hidden;
      border-radius: 8px;
      transition: transform 0.3s ease;
  }
  
  .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
  }
  
  .gallery-item:hover {
      transform: scale(1.05);
  }
  
  /* ---------- Overlay Styles ---------- */
  .overlay {
      position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      width: 100%;
      padding: 10px;
      /* Ensure padding is included in the element's width */
      box-sizing: border-box;
      text-align: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-family: "Montserrat", sans-serif;
      /* Force text wrapping */
      white-space: normal;
      overflow-wrap: break-word;
      word-break: break-word;
  }
  
  .overlay h3,
  .overlay p {
      /* Ensure inner text also wraps */
      white-space: normal;
      overflow-wrap: break-word;
      word-break: break-word;
  }
  
  .gallery-item:hover .overlay {
      opacity: 1;
  }
  
  /* ---------- Mobile Gallery Styles for Screens up to 455px ---------- */
  @media screen and (max-width: 455px) {
    .animated-title {
      font-size: 4rem;
      text-align: center;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeInSlide 0.8s ease-in-out forwards;
      font-family: "Montserrat", sans-serif;
      color: #000000;
  
  }
      .gallery {
          display: grid;
          grid-template-columns: repeat(2, 1fr); /* Two columns */
          gap: 20px;
          justify-items: center;
      }
      
      .gallery-item {
          width: 100%; /* Full-width within grid cell */
      }

      .overlay h3 {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
        font-size: 13px; /* Set the desired font size for h3 */
      }
      
      .overlay p {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
        font-size: 12px; /* Set a different font size for p */
      }
  }
  



/* Hijab Section */
/* Keyframes for HIJAB Title Animation */
@keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for Features Animation */
@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ---------- Desktop Styles (Original Layout) ---------- */
.hijab-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #ffffff;
}

.hijab-content {
    display: flex;
    width: 100%;
}

.left-half {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center;     /* Centers content horizontally */
    text-align: center;
    padding: 20px;           /* Adds padding around the content */
}

.hijab-text {
    font-size: 7rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    opacity: 0; /* Initially hidden */
    animation: fadeInSlideDown 1s ease-out forwards;
}

.features-list {
    color: black;
}

.features-list h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.features-list ul {
    list-style-type: none;
    padding-left: 0;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 2.5;
    display: flex;
    align-items: center;
    text-align: left;
    opacity: 0; /* Initially hidden */
    animation: fadeInSlideUp 0.8s ease-in-out forwards;
}

/* Stagger Feature List Animation */
.features-list li:nth-child(1) {
    animation-delay: 0.3s;
}
.features-list li:nth-child(2) {
    animation-delay: 0.6s;
}
.features-list li:nth-child(3) {
    animation-delay: 0.9s;
}
.features-list li:nth-child(4) {
    animation-delay: 1.2s;
}
.features-list li:nth-child(5) {
    animation-delay: 1.4s;
}

.right-half {
    width: 50%;
    display: flex;
    justify-content: flex-end; /* Aligns image to right */
    align-items: center;       /* Centers image vertically */
}

.right-half img {
    width: 80%; /* Adjust image size */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* ---------- Mobile Styles for Screens up to 455px ---------- */
@media screen and (max-width: 455px) {
    .hijab-section {
        padding: 10px;
        background-color: #f5f5f5;
        margin-bottom: 0;
    }
    
    .hijab-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Use display: contents on left-half so its children can be reordered */
    .left-half {
        display: contents;
    }
    
    /* Reorder items for mobile:
       - Heading first
       - Features list second
       - Image (from right-half) last
    */
    .hijab-text {
        order: 1;
        font-size: 3.5rem;  /* Reduced font size for mobile */
        margin-bottom: 10px;
    }
    
    .features-list {
        order: 2;
        width: 100%;
        padding: 0 10px;
        margin-left: 170px;
        text-align: center;
    }
    
    .features-list h3 {
        font-size: 15px;
        margin-bottom: 10px;
        margin-right: 170px;
    }
    
    .features-list li {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 8px;
    }
    
    .right-half {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px; /* Space between features list and image */
    }
    
    .right-half img {
        width: 100%; /* Use more of the available width */
    }
}

/* ---------- Default Styles for Desktop ---------- */
.perfume-section {
    padding: 40px 40px;
    background-color: #f9f9f9;
    text-align: center;
    height: 80vh;
    padding-bottom: 80px;
}

.perfume-title {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000000;
    font-family: "Montserrat", sans-serif;
}

.perfume-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.perfume-item {
    width: 30%;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px; /* Increased image height */
    overflow: hidden;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease; /* Only fade the image */
}

.image-container:hover img {
    opacity: 0.5; /* Reduced opacity on hover for fade effect */
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); /* Lighter overlay for better visibility */
    color: #fff;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

.image-container:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}

.overlay i {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #ffffff; /* Gold color for icons */
}

#perfume-section .overlay p {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

/* ---------- Mobile Styles for Screens up to 455px ---------- */
@media screen and (max-width: 455px) {
  .perfume-section {
    padding: 20px 10px;
    background-color: #f9f9f9;
    text-align: center;
    height: auto; /* Let the section height adjust to content */
    padding-bottom: 40px;
    margin-top: 0;
  }

  
  .perfume-title {
    font-size: 3.5rem;   /* Reduce title size */
    margin-bottom: 10px;
  }
  
  .perfume-grid {
    display: flex;
    flex-direction: column;  /* Stack items vertically */
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  
  .perfume-item {
    width: 100%;  /* Each item takes full width */
  }
  
  .image-container {
    width: 100%;
    height: 250px; /* Reduce image height for mobile */
  }
}

/* ---------- Desktop Styles for the Our Team Section ---------- */
.our-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 20px;
    background-image: url('bgpic2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 0;
    margin-bottom: 0px;
}

.our-team h2 {
    text-align: center;
    font-size: 5rem;
    margin-top: 50px;
    color: white;
}

/* Button Container & Column Layout */
.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 100px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Team Member & Button Styles */
.team-member {
    position: relative;
}

.team-btn {
    padding: 20px;
    font-size: 1.5rem;
    width: 300px;
    height: 60px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-btn:hover {
    background-color: #dec182;
    color: white;
}

/* Popup Image Styles */
.popup-image {
    position: absolute;
    top: -260px; 
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    border-radius: 10px;
    width: 200px;
    height: 200px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.team-member:hover .popup-image {
    opacity: 1;
    visibility: visible;
}

.popup-image img {
    width: 250px;
    height: 250px;
}

/* ---------- Mobile Styles for Screens up to 455px ---------- */
@media screen and (max-width: 455px) {
    /* Adjust the overall section */
    .our-team {
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .our-team h2 {
        font-size: 3.5rem;
        margin-top: 20px;
        font-weight: 500;
        font-family: "Montserrat", sans-serif;
    }
    
    /* Use grid layout to arrange all team-member buttons in 2 columns and 3 rows */
    .button-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        padding: 0 10px;
        /* Remove the gap between columns that was set for desktop */
        margin-left: 40px;
    }
    
    /* Make the column wrappers disappear so that team members become direct grid items */
    .column {
        display: contents;
    }
    
    /* Smaller team buttons */
    .team-btn {
        padding: 10px;
        font-size: 10px;
        width: 70%; /* Full width of grid cell */
        height: 30px;
        margin-bottom: 0; /* Remove extra margin */
    }
    
    /* Optionally, reduce the popup image size on mobile */
    .popup-image {
        width: 150px;
        height: 150px;
        top: -120px; /* Adjust vertical position */
    }
    
    .popup-image img {
        width: 100px;
        height: 100px;
    }
}

/* ---------- Desktop Styles for Customer Reviews Section ---------- */
.customer-reviews-section {
    padding: 40px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .reviews-title {
    font-size: 4rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    font-family: "Montserrat", sans-serif;
    margin-top: 0;
  }
  
  .reviews-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
  
  .review-item {
    position: relative;
    width: 30%; 
    background-color: white;
    border-radius: 10px;
    border: 2px solid #ccc; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .review-item:hover {
    transform: scale(1.05);
  }
  
  .customer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .customer-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .review-line {
    width: 80%;
    margin: 10px auto;
    border: 1px solid #ccc;
  }
  
  .customer-review {
    font-size: 1rem;
    color: #000000;
    text-align: left;
    font-family: "Montserrat", sans-serif;
  }
  
  /* ---------- Dot Pagination Styling ---------- */
  .reviews-dots {
    display: none;
    justify-content: center;
    margin-top: 10px;
  }
  
  .reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    transition: background-color 0.3s;
  }
  
  .reviews-dots .dot.active {
    background-color: #333;
  }
  
  /* ---------- Mobile Styles for Screens up to 455px ---------- */
  @media screen and (max-width: 455px) {

    .reviews-dots {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }
    .reviews-container {
        margin-top: 0px;
        display: flex;
        flex-wrap: nowrap;              /* Do not wrap items */
        overflow-x: auto;               /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory;  /* Enable snap scrolling */
        gap: 10px;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }

    .reviews-title {
      font-size: 3.5rem;
      font-weight: bold;
      color: #000000;
      margin-bottom: 30px;
      font-family: "Montserrat", sans-serif;
      margin-top: 0;
      text-align: center;
      
    }
    
    /* Each review card takes 90% of the viewport width (or adjust as needed) */
    .review-item {
        flex: 0 0 90%;
        width: 100%;
        scroll-snap-align: start;
        margin: 0 auto;
    }
    
    /* Optional: Adjust font sizes if needed */
    .customer-name {
        font-size: 1rem;
    }
    
    .customer-review {
        font-size: 0.9rem;
    }
  }
/* ---------------------- Global & Desktop Footer Styles ---------------------- */
.footer {
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 50px 20px;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Footer Header & Logo */
  .footer-header {
    text-align: left;
    margin-bottom: 10px;
  }
  
  .footer-logo-container {
    display: inline-block;
  }
  
  .footer-logo {
    max-width: 250px;
    height: auto;
    display: block;
  }
  
  /* Divider Line */
  .footer-line {
    border: none;
    border-top: 2px solid white;
    margin: 10px 0;
  }
  
  /* Desktop Footer Content */
  .desktop-footer .footer-content {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
  }
  
  /* Left Section */
  .desktop-footer .footer-left {
    display: flex;
    gap: 130px;
  }
  
  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  
  .footer-column ul li {
    margin: 30px 0;
    line-height: 1.5;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
    color: #c6af70;
  }
  
  /* Right Section */
  .desktop-footer .footer-right h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: left;
  }
  
  .desktop-footer .footer-right address {
    font-style: normal;
    line-height: 1.8;
    text-align: left;
    margin: 30px 0;
  }
  
  /* Social Media Buttons (Desktop) */
  .desktop-footer .footer-social {
    text-align: center;
    margin: 20px 0;
  }
  
  .social-btn {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  
  .social-btn:hover {
    background-color: #c6af70;
    color: white;
  }
  
  /* Copyright (Desktop) */
  .desktop-footer .footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ddd;
  }
  
  .desktop-footer .footer-copyright p {
    margin: 0;
  }
  
  /* ---------------------- Mobile Footer Styles (Screens up to 455px) ---------------------- */
  .mobile-footer {
    display: none;  /* Hidden by default on larger screens */
  }
  
  /* Mobile Footer Content */
  @media (max-width: 455px) {
    /* Hide the desktop footer */
    .desktop-footer {
      display: none;
    }
    
    /* Show mobile footer */
    .mobile-footer {
      display: block;
      text-align: center;
      padding: 15px;
      background-color: rgb(0, 0, 0);
    }
    
    /* Mobile Header with Logo */
    .mobile-footer .footer-header {
      text-align: center;
      margin-bottom: 10px;
    }
    
    .mobile-footer .footer-logo {
      max-width: 200px;  /* Slightly smaller on mobile */
      height: auto;
      display: block;
      margin: 0 auto 10px auto;
    }
    
    .mobile-footer .footer-line {
      border-top: 2px solid white;
      margin: 10px 0;
    }
    
    /* Mobile Quick Links Section */
    .mobile-quick-links {
      text-align: left;
      margin: 20px 0;
    }
    
    .mobile-quick-links h3 {
      font-size: 1rem;
      text-transform: uppercase;
      margin-bottom: 5px;
      color: white;
    }
    
    .mobile-quick-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .mobile-quick-links ul li {
      margin: 5px 0;
      line-height: 20px;
    }
    
    .mobile-quick-links ul li a {
      color: white;
      font-size: 1rem;
      text-decoration: none;
    }
    
    .mobile-quick-links ul li a:hover {
      text-decoration: underline;
      color: #c6af70;
    }
    
    /* Mobile Social Buttons */
    .mobile-social {
      text-align: center;
      margin: 20px 0;
    }
    
    .mobile-social .social-btn {
      padding: 5px 10px;
      font-size: 0.8rem;
      margin: 5px;
    }
    
    /* Mobile Copyright */
    .mobile-copyright {
      text-align: center;
      margin-top: 10px;
      font-size: 0.7rem;
      color: #ddd;
    }
  }
  