﻿
    body {
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
      text-align: center;
    }
    header, footer {
      background-color: #1e1e1e;
      color: white;
      padding: 1rem 0;
    }
    h1, h2 {
      color: #c62828;
      margin: 0.5rem 0;
    }
    main h3 {
    color: #c62828; /* red matching your theme */
}
    a {
      color: #c62828;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    nav {
      background-color: #333;
      padding: 0.5rem 0;
    }
    nav a {
      color: white;
      margin: 0 1rem;
      font-weight: bold;
    }
    nav a:hover {
      text-decoration: underline;
    }
    
        nav a.active {
  color: #ffeb3b; /* highlight color */
  text-decoration: underline;
}
.hero-slider {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 1rem;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* Responsive CTA Overlay for Mobile */
@media (max-width: 480px) {
  .cta-overlay {
    font-size: 1rem;         /* slightly smaller text */
    padding: 0.5rem 0.75rem; /* smaller padding */
    bottom: 10px;            /* move up a bit */
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;     /* allow line breaks */
    max-width: 90%;          /* don't exceed image width */
    box-sizing: border-box;
  }
}
.cta-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(198, 40, 40, 0.85);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  animation: fadeInUp 1s ease forwards; /* added animation */
}

.cta-overlay a {
  color: #fff;
  text-decoration: underline;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cta-overlay.active-animation {
  animation: fadeInUp 1s ease forwards;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  position: relative;
}

.hero-slider .slide img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* CTA overlay already fine */
/* Video container styling */
.video-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 1.5rem auto; /* centers with spacing */
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* Back to Top Button */
#backToTop {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #c62828;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

#backToTop:hover {
  background-color: #a71d1d;
}

    .container {
      padding: 1rem;
      max-width: 960px;
      margin: 0 auto;
    }
    .gallery-vertical {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
    }
    .gallery-vertical img {
      width: 300px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .review {
      background-color: #fff;
      margin: 1rem auto;
      padding: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      max-width: 800px;
      text-align: left;
    }
    .btn {
      display: inline-block;
      background: #c62828;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: bold;
      margin: 1rem 0;
      text-decoration: none;
    }
    footer p {
      margin: 0;
      font-size: 0.9rem;
    }
