/* Global Presets */
:root {
  --primary-color: hotpink;
  --background-color: #232b2b;
  --card-bg: #2c3434;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--background-color);
  color: #999;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: #fff;
}

h1 {
  font-weight: 700;
  font-size: 5.2rem;
  line-height: 1.1;
  margin: 0 0 2rem;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  width: 100%;
}

/* Menu Bar */
.showcase-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(35, 43, 43, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.showcase-top p {
  display: flex;
  gap: 30px;
  margin: 0;
}

.showcase-top a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.showcase-top a:hover {
  color: var(--primary-color);
}

/* --- Frosted Section Styles */
.showcase-reviews {
  width: 100%;
  height: 45vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.go-home {
  width: 100%;
  height: 25vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* The Frosting Overlay */
.showcase-reviews::before, .go-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(10px) brightness(0.5); 
  transform: scale(1.1); 
  z-index: 1;
}

.showcase-reviews {
  background: url("frontdoor.jpg") no-repeat center center/cover;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.go-home {
  background: url("frontdoor.jpg") no-repeat center center/cover;
  margin-top: 4rem;
}

/* Content Wrappers (Floating above frosting) */
.showcase-content, #showcase-more {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Buttons */
.btn-xl {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 105, 180, 0.4);
  color: #fff;
}

/* Main Reviews Container */
.reviews-container {
  max-width: 90%;
  margin: 6rem auto;
  padding: 0 2rem;
}

.review-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  gap: 3rem;
  align-items: center;
}

.review-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.review-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  background: var(--primary-color);
  margin-top: 1rem;
}

.review-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #bbb;
}

.review-media img {
  border-radius: 12px;
  border: 4px solid #3d3d3d;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Quotes Grid */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.quote-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid #3d3d3d;
  transition: all 0.3s ease;
  text-align: center;
}

.quote-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.quote-card h3 {
  margin-bottom: 1rem;
}

.quote-card p {
  font-style: italic;
  color: #999;
}

/* Responsive Layouts */
@media (min-width: 850px) {
  .has-image {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .has-image.reverse {
    flex-direction: row-reverse;
  }
  
  .review-text, .review-media {
    flex: 1;
  }
  
  .text-only {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 8rem;
  }
  
  .text-only h2::after {
    margin: 1rem auto 0;
  }
}

@media (max-width: 450px) {
  h1 {
      font-weight: 700;
      font-size: 3rem;
      line-height: 1.1;
      margin: 0 0 2rem;
    }
  
  .hide-sm {
    display: none;
  }   
}

/* Updated Footer */
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  background: var(--background-color);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid #3d3d3d;
  padding-top: 3rem;
}

.footer p, .footer b {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer b {
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color); 
}

.footer a {
  color: #999;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
  padding-left: 3px; 
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  border-top: 1px solid #3d3d3d;
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Animations */
.review-block, .quote-card {
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}