/* Base Styles for Syracuse Christmas Lighting Website */

/* Typography & Colours */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #f5f5f5;
  background-color: #0a1931; /* rich dark blue reminiscent of winter nights */
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-weight: 600;
  color: #ffffff;
}

a {
  color: #d4af37; /* warm gold accent colour for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #f1d58a;
}

/* Container Utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(10,25,49,0.9);
  backdrop-filter: blur(4px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

nav .logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav li a {
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-weight: 500;
}

nav li a.active,
nav li a:hover {
  background-color: #d4af37;
  color: #0a1931;
}

.cta-button {
  background-color: #d4af37;
  color: #0a1931;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f1d58a;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('images/hero.PNG');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,25,49,0.6);
  backdrop-filter: brightness(0.7);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #f1d58a;
}

/* Process Section */
.process {
  padding: 4rem 0;
  background-color: #0d2a4b;
}

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

.process-step {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #102d52;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.process-step p {
  font-size: 0.95rem;
  color: #c7d6e1;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
}

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

.benefit {
  background-color: #102d52;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.benefit h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #f1d58a;
}

.benefit p {
  font-size: 0.9rem;
  color: #c7d6e1;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: #0d2a4b;
}

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

.testimonial {
  background-color: #102d52;
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
}

.testimonial::before {
  content: '“';
  font-size: 3rem;
  color: #d4af37;
  position: absolute;
  top: -10px;
  left: 10px;
}

.testimonial p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #c7d6e1;
}

.testimonial span {
  font-weight: 600;
  color: #f1d58a;
}

/* Services Preview Section */
.services-preview {
  padding: 4rem 0;
}

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

.service-card {
  background-color: #102d52;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h4 {
  padding: 1rem;
  margin: 0;
  font-size: 1.2rem;
  color: #f1d58a;
}

.service-card p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #c7d6e1;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background-color: #0d2a4b;
}

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

.pricing-card {
  background-color: #102d52;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f1d58a;
}

.pricing-card span {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  color: #c7d6e1;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
}

.pricing-card button {
  background-color: #d4af37;
  color: #0a1931;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pricing-card button:hover {
  background-color: #f1d58a;
}

/* CTA Banner Section */
.cta-banner {
  background-color: #d4af37;
  color: #0a1931;
  padding: 2rem 0;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 1rem;
  color: #0a1931;
}

.cta-banner a {
  display: inline-block;
  background-color: #0a1931;
  color: #d4af37;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-banner a:hover {
  background-color: #142f57;
}

/* Footer */
footer {
  background-color: #061628;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #6e85a5;
}

footer nav {
  margin-bottom: 1rem;
}

footer a {
  color: #d4af37;
  margin: 0 0.5rem;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  font-size: 0.95rem;
  color: #c7d6e1;
}

.contact-info h3 {
  color: #f1d58a;
  margin-bottom: 0.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form label {
  font-size: 0.9rem;
  color: #f1d58a;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: start;
  background-color: #d4af37;
  color: #0a1931;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #f1d58a;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  nav ul {
    gap: 0.5rem;
  }
  .pricing-card span {
    font-size: 1.5rem;
  }
}