/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Size Styling */

@media (max-width: 1024px) {
.header-main-sm {
    display: none !important;  /* Ensures this rule overrides others */
}
}
@media (max-width: 1200px) {
    .home-header-menu li {
        margin: auto !important; /* Force removal of horizontal spacing */
}
}
/* Phones */
@media (max-width: 850px) {
    .home-header {
        flex-direction: column;
    }
    .home-header-logo img {
        max-width: 100%;
        height: auto;
    }
    .hamburger {
        display: block !important;  /* Overrides any previous 'display: none;' */
        position: relative;
        z-index: 100;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .home-header-menu {
        position: fixed;
        top: 16%;
        left: 70%;
        width: 30%;
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.068);
        backdrop-filter: blur(10px);
        text-align: center;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 99;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); /* makes line between header and body */
        
    }
    .home-header-menu li {
        margin: 0 !important; /* Force removal of horizontal spacing */
    }
    .nav-item{
        padding: 25px;
        box-sizing: border-box;
        height: auto;
        width: 100%;
        justify-content: flex-start;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); /* makes line between header and body */
        font-weight: bold;
    }
    .home-header-menu.active {
        transform: translateX(0);
    }
    .header-main-sm {
        display: none !important;  /* Ensures this rule overrides others */
    }
}

/* Styling for the navigation bar */

.home-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); /* makes line between header and body */
    
}

  /* Logo styling */
  .home-header-logo img {
    width: 430px; /* Adjust the size as needed */
    max-height: 200px; /* Ensures it does not get too large */
}

/* Navigation menu styles */
.home-header-menu {
    display: flex;
    list-style-type: none;
    justify-content: center;
    flex-grow: 1;
}

.home-header-menu li {
    margin: 0 20px;
}

.home-header-menu a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
    color: black;
}
.nav-link{
    transition: 0.4s ease;
    display: flex;
}
.nav-link:hover {
    color: #d41515;
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: black;
}

/* CSS Social media links on the right */
.header-main-sm {
    width: fit-content;
    height: 100%;
    /*background-color: red;*/
    padding-right: 60px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.header-main-sm-yt {
    width: 30px;
    height: 30px;
    background-image: url(../image/black\ youtube\ icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    align-self: center;
}

.header-main-sm-yt:hover {
    background-image: url(../image/color\ youtube\ icon.png);
}

.header-main-sm-fb {
    width: 30px;
    height: 30px;
    background-image: url(../image/black\ facebook\ icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    align-self: center;
}

.header-main-sm-fb:hover {
    background-image: url(../image/color\ facebook\ icon.png);
}

.header-main-sm-in {
    width: 30px;
    height: 30px;
    background-image: url(../image/black\ instagram\ icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    align-self: center;
}

.header-main-sm-in:hover {
    background-image: url(../image/color\ instagram\ icon.png);
}

/*  Hero Section - Hero Section - Hero Section - Hero Section - Hero Section - Hero Section - Hero Section - */

.hero {
    width: 100%;
    height: 80vh;
    background-image: url('../image/heroedit\ long.png'); /* Replace with actual path */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}

/* Dark overlay effect for better text readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    font-family: Arial, sans-serif;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background: #d41515;
    color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #a50f0f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .hero {
        background-position: center;
}
/* Swap image for mobile screens */
    .hero {
        background-image: url('../image/heroedit\ phone.png'); /* Mobile version */
    }
} 

/* OFFERS SECTION STYLING */

.offers-section {
    background-color: #f0f0f0;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.offers-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.offers-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #111;
}

.offers-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-item {
    flex: 1;
    max-width: 100%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.offer-item img {
    width: 100%;
    max-width: 100%; /* Removes previous 360px limit */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.offer-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #d41515;
}

.offer-item p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #d41515;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b01010;
}

/* Responsive Layout */
@media (max-width: 1000px) {
    .offers-container {
        flex-direction: column;
        align-items: center;
    }

    .offer-item {
        max-width: 90%;
        text-align: center;
    }

    .offer-item p {
        text-align: left;
    }
}

/* ABOUT SECTION STYLING ABOUT SECTION STYLING ABOUT SECTION STYLING ABOUT SECTION STYLING */

.about-section {
    background-color: white; /* light gray */
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #111;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    text-align: left;
}

.about-section ul {
    list-style-type: disc;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    text-align: left;
}

.about-section ul li {
    margin-bottom: 15px;
}

/* Highlight important terms */
.about-section strong {
    font-weight: bold;
    color: #d41515; /* Match site theme */
}

/* Image-Text Row */
.about-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.about-section .row img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

.about-section .row .text-block {
    flex: 1;
    min-width: 250px;
    max-width: 600px;
    text-align: left;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-section p,
    .about-section ul,
    .about-section .row .text-block {
        text-align: left;
        padding: 0 10px;
    }
}

/* ABOUT SECTION STYLING ABOUT SECTION STYLING ABOUT SECTION STYLING ABOUT SECTION STYLING */

/* testimonials testimonials testimonials testimonials testimonials testimonials testimonials  */

.testimonials-section {
    background-color: #f2f2f2;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    max-width: 320px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: bold;
    font-size: 1.1rem;
}
/* testimonials testimonials testimonials testimonials testimonials testimonials testimonials  */

/* credibility credibility credibility credibility credibility credibility credibility credibility  */

.two-images-section {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.image-pair {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.image-pair img {
    max-width: 200px; /* Smaller width */
    height: auto;     /* Maintain natural aspect ratio */
    border-radius: 8px;
    object-fit: contain;
}

/* credibility credibility credibility credibility credibility credibility credibility credibility  */

/* Footer Styles */
.site-footer {
    background-color: #ffffff; /* White background */
    padding: 40px 20px 20px 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05); /* Soft top shadow */
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    flex-wrap: wrap;
  }
  
  .footer-item {
    flex: 1;
    padding: 10px;
    text-align: center;
  }
  
  .footer-logo {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .footer-logo:hover {
    transform: scale(1.05);
  }
  
  /* Social Media Styling (uses your existing header-main-sm classes) */
  .header-main-sm {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .header-main-sm div {
    width: 40px;
    height: 40px;
  }
  
  /* Contact Info */
  .footer-contact p {
    margin: 5px 0;
    font-weight: bold;
  }
  
  .footer-location {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Bottom line copyright */
  .footer-bottom {
    font-size: 0.8rem;
    color: #999;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-item {
      margin-bottom: 20px;
    }
  
    .footer-location {
      flex-direction: column;
    }
  }
/* contact page contact page contact page contact page contact page contact page contact page */
  .contact-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #333;
  text-align: left;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #222;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Button styling reuses your existing .cta-button class */

/* Responsive design */
@media (max-width: 600px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
  }
}
/* contact page contact page contact page contact page contact page contact page contact page */

/* store store store store store store store store store store store store store store store */
.store-intro {
    text-align: center;
    background-color: #f7f7f7;
    padding: 40px 20px;
}

.store-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.store-intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.store-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.store-nav img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.store-nav img:hover {
    transform: scale(1.05);
}

.store-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.store-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.product-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 10px;
    color: #333;
    font-size: 1rem;
}

.price {
    font-weight: bold;
    color: #d41515;
}

button {
    background-color: #d41515;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #a50f0f;
}

.view-all {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
}
/* store store store store store store store store store store store store store store store */