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

body {
  background-color: #161616;
  background-attachment: fixed;
  font-family: 'Lexend Mega', Medium;
  color: #fff;
  padding-bottom: 60px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  padding: 15px 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-container a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
}

.nav-container a:hover {
  text-decoration: underline;
}

.hero-section {
  padding: 100px 20px 40px;
  border-bottom: 2px solid #333;
}

.hero-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-logo img {
  max-width: 350px;
}

.slogan {
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  padding-right: 10px;
  max-width: 450px;
  animation: fadeInSlideUp 1.2s ease-out 0.3s both;
}

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

.page-section {
  padding: 160px 20px;
  text-align: center;
  background-color: rgba(17, 17, 17, 0.85);
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 80px;
}

.page-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #d4af37;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.photo-comparison {
  position: relative;
  width: 100%;
  max-width: 500px;
  cursor: pointer;
}

.photo-comparison img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.photo-comparison .after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.photo-comparison:hover .after {
  opacity: 1;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

form input, form select {
  width: 80%;
  max-width: 500px;
  padding: 12px;
  border: none;
  border-radius: 5px;
}

form button {
  background-color: #d4af37;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #b8860b;
}

.button-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

#quoteResponse {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #d4af37;
  font-style: italic;
}

/* Shimmer Effect */
@keyframes shimmerScroll {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, #b8860b, #d4af37, #f0e68c, #d4af37, #b8860b);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerScroll 2s linear infinite;
  animation-play-state: paused;
}

body.scrolling .shimmer-text {
  animation-play-state: running;
}

footer {
  background-color: #111;
  padding: 20px;
  text-align: center;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .photo-comparison {
    flex: 1 1 100%;
  }

  .button-row {
    flex-direction: column;
    width: 100%;
  }

  form input, form select, .button-row button {
    width: 90%;
  }
}
.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-links a {
  font-size: 1.8rem;
  color: #d4af37;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #f0e68c;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 2rem;              /* Bigger size */
  color: #d4af37;               /* Metallic gold */
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f0e68c;               /* Lighter gold on hover */
}
.hero-text {
  flex: 1;
  text-align: right;
  padding-right: 20px;
}

.shine-text {
  font-size: 4rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 10px;
  line-height: 1.1;
}

.subtext {
  font-size: 1.5rem;
  color: #e6c95b;
  margin-bottom: 20px;
}

.slogan {
  font-size: 1.3rem;
  font-style: italic;
  color: #f0e68c;
  max-width: 450px;
  margin-left: auto;
  animation: fadeInSlideUp 1.2s ease-out 0.3s both;
}

.slogan .highlight {
  font-weight: bold;
  color: #d4af37;
}
