

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0b1f3a;
  color: #fff;
}

/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav ul a {
  color: #ff6a00;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul a:hover {
  color: #ff6a00;
}

nav ul li {
  cursor: pointer;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* SECTION */
.testimonial-section {
  position: relative;
  background: url("primeflush.png") center/cover no-repeat;
  padding: 80px 20px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5,15,30,0.85);
  top: 0;
  left: 0;
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 40px;
  margin: 0 15px;
  font-family: cursive;
}

.line {
  width: 80px;
  height: 1px;
  background: #ccc;
}

/* SUBTEXT */
.container h2 {
  margin-bottom: 40px;
}

.container h2 span {
  color: #f4c36b;
}

/* CARD */
.testimonial-card {
  display: flex;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
}

/* LEFT */
.left {
  flex: 1;
  padding: 30px;
}

.user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.stars {
  color: gold;
}

.headline {
  font-weight: bold;
  margin: 10px 0;
}

.text {
  margin-bottom: 20px;
  line-height: 1.6;
}

.left button {
  background: linear-gradient(to right, #c47a1a, #f4a825);
  border: none;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
}

/* RIGHT */
.right img {
  width: 400px;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media(max-width: 768px){

  .navbar {
    padding: 12px 20px;
    position: relative;
  }

  .logo img {
    height: 70px;
    width: auto;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b1f3a;
    z-index: 1000;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  nav ul a {
    display: block;
  }

  nav ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background 0.3s ease;
  }

  nav ul li:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 10px;
  }

  .hamburger {
    display: block;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .right img {
    width: 100%;
    height: auto;
  }
}



/* SECTION */
.reviews-section {
  position: relative;
  background: url("prime.png") center/cover no-repeat;
  padding: 80px 20px 120px;
  overflow: hidden;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5,15,30,0.85);
  top: 0;
  left: 0;
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  position: relative;
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* QUOTE */
.quote {
  position: absolute;
  font-size: 40px;
  opacity: 0.3;
  top: 10px;
  left: 15px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 12px;
}

.stars {
  color: #f4c36b;
}

/* TEXT */
.card p {
  margin-top: 10px;
  line-height: 1.6;
}

/* SMALL BUTTON */
.small-btn {
  margin-top: 10px;
  background: linear-gradient(to right, #c47a1a, #f4a825);
  border: none;
  padding: 8px 15px;
  color: #fff;
  border-radius: 5px;
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 40px;
}

.main-btn {
  background: linear-gradient(to right, #c47a1a, #f4a825);
  padding: 15px 40px;
  border: none;
  font-size: 18px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* DECOR */
.decor {
  position: absolute;
  z-index: 1;
}

.brushes {
  bottom: 0;
  left: 0;
  width: 200px;
}

.paints {
  bottom: 0;
  left: 40%;
  width: 300px;
  transform: translateX(-50%);
}

.palette {
  bottom: 0;
  right: 0;
  width: 250px;
}

/* ALL REVIEWS SECTION */
.all-reviews-section {
  position: relative;
  background: url("prime.png") center/cover no-repeat;
  padding: 80px 20px 120px;
  overflow: hidden;
  display: none;
}

.all-reviews-section.active {
  display: block;
}

/* RESPONSIVE */
@media(max-width: 768px) {

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .brushes,
  .palette {
    display: none;
  }

  .paints {
    width: 200px;
  }
}


.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;
}