/* Layout for sticky footer */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    color: #1A1A1A;
}

/* Content container grows */
.container {
    flex: 1;
}

/* Navbar */
.navbar {
    background-color: #f5f5f5;
    border-bottom: 4px solid #D73726;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-link {
    color: #1A1A1A !important;
    margin-right: 15px;
}

.nav-link:hover {
    color: #D73726 !important;
}

.phone-button {
    background-color: #D73726;
    color: white;
    font-weight: 600;
    border: none;
}

#mainNav .btn.active {
  border-color: #E04A34;
}

/* Hero Section */
.hero {
    background-color: #eaeaea;
    color: #1A1A1A;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.hero .btn-primary {
    background-color: #D73726;
    border: none;
    color: white;
    font-weight: 600;
}

.value-card {
  background-color: rgba(20, 20, 20, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  color: #fff;
}

/* Contact Page Customizations */
.contact-banner {
  height: 50vh;
  color: #fff;
}

.section-light {
  background-color: #f7f7f7;
}

.privacy-link {
  color: #000;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #000;
}

.contact-link {
  color: #000;
  text-decoration: none;
}

.contact-link:hover {
  color: #000;
  text-decoration: underline;
}

.custom-facebook-btn {
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
  transition: background-color 0.2s, color 0.2s;
}

.custom-facebook-btn:hover {
  background-color: #000;
  color: #fff;
}

.custom-facebook-btn:hover .text-primary {
  color: #fff !important;
}

/* Footer */
footer {
    padding: 20px 0;
    background: #1A1A1A;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 4px solid #D73726;
}

/* Products */
.product-item {
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-4px);
  cursor: pointer;
}

.product-item img {
  transition: transform 0.3s ease;
}

.product-item:hover img {
  transform: scale(1.05);
}

.google-review-card {
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.google-review-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.google-review-name img {
  width: 18px;
  height: 18px;
}

.google-review-stars {
  color: #f8c300;
  margin-bottom: 0.5rem;
}

.google-review-button img {
  width: 20px;
  height: 20px;
}

/* Animation */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.3s; }
.animate-delay-2 { animation-delay: 0.6s; }
.animate-delay-3 { animation-delay: 0.9s; }
.animate-delay-4 { animation-delay: 1.2s; }
.animate-delay-5 { animation-delay: 1.5s; }
.animate-delay-6 { animation-delay: 1.8s; }

/* Blinds Card Style */
.blinds-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.blinds-card {
  width: 300px; /* Adjust for larger, clearer size */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
}

.blinds-card:hover {
  transform: translateY(-5px);
}

.blinds-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

/* Language */
.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.lang-btn img {
    width: 24px;
    height: auto;
    display: block;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

.lang-btn:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.lang-btn.lang-active img {
    opacity: 1;
    outline: 1px solid #333;
    border-radius: 1px;
}