/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2a2a2a;
  background: #f5f5f0;
  font-size: 18px;
}

header {
  background: #1a1a1a;
  color: #f5f5f0;
  padding: 2.5rem 0;
  border-bottom: 4px solid #8b7355;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.header-content {
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
}

.tagline {
  font-size: 1.25rem;
  color: #c9c9c9;
  font-weight: 300;
}

nav {
  background: #2a2a2a;
  padding: 0;
  border-bottom: 2px solid #8b7355;
  position: relative;
}

.menu-toggle {
  display: none;
  background: #2a2a2a;
  color: #f5f5f0;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-toggle:after {
  content: ' ▼';
  float: right;
}

.menu-toggle.active:after {
  content: ' ▲';
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  border-right: 1px solid #444;
}

nav li:last-child {
  border-right: none;
}

nav a {
  display: block;
  color: #f5f5f0;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
  font-family: Arial, sans-serif;
}

nav a:hover {
  background: #3a3a3a;
}

.hero {
  background: #3a3a3a;
  color: #f5f5f0;
  text-align: center;
  padding: 5rem 30px;
  border-bottom: 3px solid #8b7355;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #d4af37;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: #8b7355;
  color: white;
  padding: 1rem 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  border: 2px solid #8b7355;
}

.cta-button:hover {
  background: #6b5535;
  border-color: #6b5535;
}

section {
  padding: 4rem 30px;
  background: white;
  margin-bottom: 2px;
}

section:nth-child(even) {
  background: #fafaf8;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #1a1a1a;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 1rem;
  display: inline-block;
  width: 100%;
}

/* Services grid (FIXED): 3 across on laptop/desktop */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

/* Desktop/Laptop: always 3 in one row */
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Optional: slightly tighter spacing so all 3 look balanced */
  .service-card { padding: 2rem; }
  .service-card h3 { font-size: 1.35rem; }
}

/* Under 900px: fall back to auto-fit */
@media (max-width: 899px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

.service-card {
  background: white;
  padding: 2.5rem;
  border: 2px solid #d4af37;
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #8b7355;
  padding-bottom: 0.8rem;

  /* Make clickable on all devices */
  cursor: pointer;
  user-select: none;
  position: relative;
}

/* Arrow on all devices */
.service-card h3:after {
  content: ' ▼';
  float: right;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.service-card h3.active:after {
  transform: rotate(180deg);
}

/* Summary always visible */
.service-summary {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.2rem;
}

/* Collapsed by default on ALL screen sizes */
.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 0.5rem;

  list-style: none;
  padding-left: 0;
}

.service-details.expanded {
  max-height: 2000px;
}

.service-details li {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.service-details li strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.service-details li:last-child {
  border-bottom: none;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 2;
}

.about-content p {
  margin-bottom: 1.8rem;
  text-align: justify;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.gallery-item {
  background: white;
  border: 3px solid #8b7355;
}

.gallery-item h3 {
  text-align: center;
  padding: 1.2rem;
  background: #2a2a2a;
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  background: #f5f5f0;
  display: block;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.info-box {
  background: white;
  padding: 2.5rem;
  border: 2px solid #8b7355;
  text-align: center;
}

.info-box h3 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-box p {
  font-size: 1.05rem;
  line-height: 1.9;
  font-family: Arial, sans-serif;
}

.hours-table {
  margin-top: 1.5rem;
  text-align: left;
}

.hours-table p {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e5e5;
  font-family: Arial, sans-serif;
}

.hours-table p:last-child {
  border-bottom: none;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-method {
  font-size: 1.05rem;
  font-family: Arial, sans-serif;
}

.contact-method strong {
  color: #1a1a1a;
  display: block;
  margin-top: 0.3rem;
}

footer {
  background: #1a1a1a;
  color: #c9c9c9;
  text-align: center;
  padding: 2.5rem 30px;
  border-top: 4px solid #8b7355;
}

footer p {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.warranty-box {
  background: #fff9e6;
  border: 2px solid #d4af37;
  padding: 2rem;
  margin-top: 3rem;
}

.warranty-box h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warranty-box p {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .tagline {
    font-size: 0.95rem;
  }

  header {
    padding: 1.5rem 0;
  }

  .hero {
    padding: 3rem 20px;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    flex-direction: column;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  nav li {
    border-right: none;
    border-bottom: 1px solid #444;
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 2.5rem 20px;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

  .container {
    padding: 0 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-item img {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-details li {
    font-size: 1.05rem;
    padding: 0.7rem 0;
  }

  .info-grid {
    gap: 2rem;
  }

  .info-box {
    padding: 1.5rem;
  }

  .about-content {
    font-size: 1rem;
    text-align: left;
  }

  .about-content p {
    margin-bottom: 1.5rem;
  }

  .warranty-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}