@charset "utf-8";
/* style.css - Web Dude Designs Countdown Page */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  color: #333;
  text-align: center;
}

header {
  background: #222;
  color: white;
  padding: 2rem 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h1 .highlight {
  background: linear-gradient(145deg, #333333, #1a1a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.subhead {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #555;
}

.countdown {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1rem;
  font-size: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.countdown div {
  background: linear-gradient(145deg, #d8d8d8, #ffffff, #bcbcbc);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  min-width: auto;
  color: #222;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  background-clip: border-box;
}

.nav-section {
  margin: 3rem auto 2rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInNav 1.5s ease forwards;
}

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

.nav-link {
  color: #222;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #444, #aaa);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.nav-link:hover {
  color: #000;
  transform: translateY(-2px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}

.featured-section {
  background: linear-gradient(145deg, #8B0000, #B22222);
 /* faded American flag red */
  padding: 2rem 1rem;
  margin-top: 3rem;
  box-shadow: inset 0 1px 5px rgba(0,0,0,0.05);
}


.featured-section h2 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 1.5rem;
}

.featured-tiles {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.featured-tiles img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.featured-tiles img:hover {
  transform: scale(1.05);
}

.contact-note {
  margin-top: 2rem;
  font-size: 1rem;
  color: #eee;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}


.site-footer {
  padding: 2rem 1rem;
  background: #222;
  color: #eee;
  font-size: 0.9rem;
}

.site-footer a {
  color: #00bcd4;
  text-decoration: none;
}




@media screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .countdown {
    font-size: 1.2rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .countdown div {
    padding: 0.5rem 1rem;
    border-radius: 30px;
  }
}

/* Hero header with flag ripple effect */
@keyframes ripple {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-header {
  position: relative;
  background: url('../images/usa-flag-1.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ripple 20s ease-in-out infinite;
  background-size: 120% auto;
}

.hero-header .overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 1rem;
}
.logo {
  max-width: 150px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}

.featured-projects {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.featured-projects h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.project-card {
  text-decoration: none;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
  max-width: 350px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.project-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.pricing-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}


.pricing-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.pricing-card h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  color: #333;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #d32f2f;
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
}
.maintenance-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.maintenance-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.maintenance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.maintenance-card h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  color: #333;
}

.maintenance-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #1976d2;
  margin: 1rem 0;
}

.maintenance-card ul {
  list-style: none;
  padding: 0;
}

.maintenance-card ul li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
}

.maintenance-contact {
  margin-top: 2rem;
  font-size: 1rem;
  color: #555;
}
.maintenance-contact a {
  color: #d32f2f;
  text-decoration: underline;
}
.back-to-top {
  display: block;
  margin: 3rem auto;
  padding: 0.75rem 2rem;
  background-color: #1976d2;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.back-to-top:hover {
  background-color: #0d47a1;
}
.back-to-top-floating {
  display: none; /* Start hidden */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #1976d2;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.back-to-top-floating:hover {
  background-color: #0d47a1;
  transform: scale(1.1);
}
.about-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.about-section p {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.about-section a {
  color: #d32f2f;
  text-decoration: underline;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.about-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-text {
  max-width: 800px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .about-text {
    text-align: left;
    padding-left: 2rem;
  }
}
.about-photo:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.contact-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.contact-section a {
  color: #d32f2f;
  text-decoration: underline;
}

.quote-button-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.quote-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #1976d2;
  color: #fff;
  font-size: 1.2rem;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.quote-button:hover {
  background-color: #0d47a1;
}

.merch-section {
  text-align: center;
  margin: 40px 0;
}

.merch-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.merch-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.merch-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.merch-image-box img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* On very small screens, stack images vertically */
@media (max-width: 600px) {
  .merch-row {
    flex-direction: column;
    align-items: center;
  }
  .merch-image-box img {
    max-width: 300px;
  }
}