/* 🌐 Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #222;
  background-color: #f5f5f5;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
  background-size: 20px 20px;
}

/* 🌅 Time-Based Backgrounds */
/* 🌅 Time-Based Backgrounds – Softer, Moodier Pastels */
body.morning {
  background: linear-gradient(to bottom, #e9c494, #f9c8b8); /* Warm pastel sunrise */
}

body.afternoon {
  background: linear-gradient(to bottom, #c4d7ed, #a1b8db); /* Muted sky blue */
}

body.evening {
  background: linear-gradient(to bottom, #62597c, #8c9ed0); /* Dusk purples and blues */
}

body.night {
  background: linear-gradient(to bottom, #1a1c2b, #2e3a59); /* Darker, moodier blue-black */
}


/* 🔧 Banner */
.banner {
  background-image: url('images/Untitled design.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-content h1 {
  position: relative;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1.5px black;
  text-shadow: none;
  margin: 0;
}

.banner-content p {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 500;
  color: #f0f0f0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 🧭 Navigation */
nav {
  background: #001F3F;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0;
}

nav a {
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid white;
  transition: 0.2s ease-in-out;
}

nav a:hover {
  background: #E63946;
  border-color: #E63946;
  transform: translateY(-2px);
}

/* 📦 General Section Styles */
section {
  background: white;
  margin: 40px auto;
  padding: 50px 40px;
  max-width: 1000px;
  border-radius: 32px; /* 🍩 More pillowy corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06); /* Softer shadow */
  position: relative;
  animation: fadeSlide 0.6s ease;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-top: 0;
  color: #001F3F;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #E63946;
  margin: 10px auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.3rem;
  margin-top: 0;
}

/* 🛠 Services */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.service-item {
  background: #f9f9f9;
  border: 1px solid #dcdcdc;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

/* 💡 Why Choose Us */
#why-us {
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-box {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.why-box i {
  font-size: 2rem;
  color: #E63946;
  margin-bottom: 10px;
}

.why-box:hover {
  transform: scale(1.03);
}

/* ⭐ Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-style: italic;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: scale(1.03);
}

/* 📸 Gallery */
#gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid .media-item img,
.gallery-grid .media-item blockquote {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid .media-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gallery-grid .media-item:nth-child(even) {
  transform: rotate(-1deg);
}

.gallery-grid .media-item:nth-child(odd) {
  transform: rotate(1deg);
}

.small-tiktok blockquote {
  max-width: 260px !important;
  min-width: 200px !important;
  height: 460px !important;
  margin: auto;
}

/* 🕒 Hours */
#hours {
  text-align: center;
}

.hours-table {
  max-width: 400px;
  margin: 0 auto;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hours-table ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.hours-table li {
  list-style-type: none !important;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}

.hours-table li:last-child {
  border-bottom: none;
}

/* 📣 Call-to-Action */
.cta-strip {
  background: #E63946;
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  max-width: 1000px;
  margin: 60px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-button {
  background: white;
  color: #E63946;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.2s;
}

.cta-button:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

/* 🧾 Footer */
footer {
  background: #001F3F;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 80px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

footer .social-links {
  margin-top: 15px;
}

footer .social-links a {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.3s, transform 0.2s;
}

footer .social-links a:hover {
  color: #E63946;
  transform: scale(1.1);
}

/* ✨ Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive Design */
@media screen and (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
    -webkit-text-stroke: 1px black;
  }

  .banner-content p {
    font-size: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }

  nav a {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  section {
    padding: 30px 20px;
    margin: 30px 10px;
  }

  .service-list,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-flex {
    flex-direction: column;
    align-items: center;
  }

  .gallery-carousel img {
    max-height: 200px;
  }

  .cta-strip {
    margin: 40px 10px;
    padding: 30px 20px;
  }

  footer {
    padding: 20px 10px;
  }

  .hours-table {
    padding: 15px;
    font-size: 1rem;
  }

  #shop-status {
    font-size: 1rem;
    text-align: center;
  }
}

.float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #E63946;
  color: white;
  padding: 16px;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.float-btn:hover {
  transform: scale(1.1);
}

/* 🚪 Realistic Garage Door Load Animation */
.garage-door {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      to bottom,
      #2c2c2c,
      #2c2c2c 40px,
      #1f1f1f 41px,
      #1f1f1f 42px
    );
  z-index: 9999;
  animation: openGarage 2.2s ease forwards;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.3);
}

/* 🚗 Animation for sliding up */
@keyframes openGarage {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
