* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* NAVBAR */
/* NAVBAR BASE */
.navbar {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff6a00;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  padding: 5px;
}

.hamburger span {
  height: 4px;
  width: 30px;
  background: #ff6a00;
  margin: 5px 0;
  border-radius: 3px;
  transition: 0.3s;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);

    /* HIDDEN BY DEFAULT */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu a {
    display: none;
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu.active a {
    display: block;
  }

  .hamburger {
    display: flex !important;
  }
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: none;
  z-index: 999;
}

.overlay.active {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  height: 70vh;
  background: url('primeflush.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* CONTENT */
.hero-content {
  position: relative;
  max-width: 500px;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #f4a825;
}

.hero-content p {
  margin-bottom: 25px;
  font-size: 18px;
}

.btn {
  background: #ff5a1f;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e14a12;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  nav ul li {
    margin-bottom: 15px;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 20px;
    height: 100vh;
  }

  .overlay {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}


/* PRODUCTS */
.product-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
}

.products h2{
    padding: 20px;
}

.card {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
  margin: 10px 0;
}

.card p {
  font-size: 14px;
}

/* COLORS */
.orange { background: linear-gradient(135deg, #ffb347, #ff7e00); }
.red { background: linear-gradient(135deg, #ff5f6d, #ff2e2e); }
.purple { background: linear-gradient(135deg, #7f53ac, #5f2c82); }

/* GRID */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: url('logo1.png') no-repeat center center/cover;
}

/* WHY SECTION */
.feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 40px;
  color:orange;
  font-size: large;
}

.why {
    padding: 20px;
    color: orange;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
}

.yellow { background: #f4b400; }
.green { background: #34a853; }
.blue { background: #4285f4; }

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.testimonial {
  display: flex;
  margin-bottom: 20px;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.stars {
  color: orange;
}


.bucket {
  width: 200px;
}

.brushes {
  position: absolute;
  top: -40px;
  left: 150px;
  width: 120px;
}

.palette {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 250px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .product-cards {
    flex-direction: column;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .decor {
    display: none;
  }
}


/* SECTION */
.gallery-section {
  padding: 60px 30px;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.title h2 {
  margin: 0 15px;
  font-size: 28px;
  color: #333;
}

.line {
  flex: 1;
  height: 1px;
  background: #ccc;
}

/* GRID */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card1 {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  height: 200px;
}

.card1 img {
  width: 100%;
  height: 100%;
  display: block;
}

/* HOVER EFFECT */
.card1:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .title h2 {
    font-size: 22px;
  }
}





    /* HERO SECTION */
    .hero1 {
      position: relative;
      width: 100%;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
      background: #222;
    }

    /* Background Image */
    .hero1::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: url('image/background.jpg') center/cover no-repeat;
      z-index: 1;
      filter: brightness(0.7);
    }

    /* Content */
    .hero1-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 20px;
    }

    .hero1 h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .hero1 p {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    /* Button */
    .btn {
      background: linear-gradient(to right, #ff6a00, #ff3c00);
      border: none;
      padding: 12px 30px;
      font-size: 1rem;
      color: white;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .btn:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }

    /* LEFT IMAGE (BRUSHES) */
    .left-img {
      position: absolute;
      left: 10px;
      bottom: 0;
      z-index: 2;
      max-width: 180px;
    }

    /* RIGHT IMAGE (COLOR SWATCH) */
    .right-img {
      position: absolute;
      right: 10px;
      bottom: 0;
      z-index: 2;
      max-width: 220px;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 1.8rem;
      }

      .hero1 p {
        font-size: 0.95rem;
      }

      .left-img,
      .right-img {
        max-width: 120px;
      }
    }

    @media (max-width: 480px) {
      .left-img,
      .right-img {
        display: none;
      }

      .hero1 h1 {
        font-size: 1.5rem;
      }
    }

.footer {
  background: #111;
  color: #ccc;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h2,
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff6a00;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: white;
  background: #333;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff6a00;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
}

.newsletter button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  background: linear-gradient(to right, #ff6a00, #ff3c00);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.newsletter button:hover {
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.85rem;
}

/* CONTACT LINK */
.contact-link {
  color: #ff6a00;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-link:hover {
  color: #ff3c00;
  text-decoration: underline;
}