/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #222;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
  }
  
  .nav a {
    margin-left: 2rem;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .nav a:hover {
    color: #fff;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: 
      linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), /* dark overlay */
      url('images/tennisPic.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 6rem; /* extra space for fixed header */
  }
  
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    color: #bbb;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  .cta-button {
    background-color: #fff;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .cta-button:hover {
    background-color: #ccc;
    color: #000;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.875rem;
    color: #777;
    background-color: #000;
    border-top: 1px solid #111;
  }
  
  /* Shared Section Styles */
.about-section,
.contact-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2,
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-section p,
.contact-section p,
.contact-section li {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-section ul {
  list-style: none;
  padding: 0;
}

.contact-section a {
  color: #fff;
  text-decoration: underline;
}

.contact-section a:hover {
  color: #ccc;
}

/* Category Sections */
.string-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.string-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.string-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.string-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #222;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.string-page {
  padding: 8rem 2rem 4rem; /* ⬅ increased top padding */
  max-width: 1200px;
  margin: 0 auto;
}

.string-item.out-of-stock img {
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.7;
  cursor: not-allowed;
}

.string-item.out-of-stock:hover {
  transform: none;
  box-shadow: none;
}

.string-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  gap: 2rem;
}

@media (max-width: 1200px) {
  .string-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .string-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .string-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .string-grid {
    grid-template-columns: 1fr;
  }
}

.about-page {
  padding: 8rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.why-stringing,
.testimonials {
  margin-top: 3rem;
  color: #ccc;
}

.why-stringing h2,
.testimonials h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.why-stringing p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonials blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #444;
  padding-left: 1rem;
  color: #aaa;
}

.testimonials .author {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  font-style: normal;
  color: #888;
}

.contact-page {
  padding: 8rem 2rem 4rem;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
}

.contact-details {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-details p {
  margin-bottom: 1rem;
  color: #ccc;
}

.contact-details a {
  color: #fff;
  text-decoration: underline;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ddd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
}

.contact-form button {
  background-color: #fff;
  color: #000;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cta-buttons {
  display: flex;
  flex-direction: column; /* <-- force stacking vertically */
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-buttons .cta-button {
  background-color: #fff;
  color: #000;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-buttons .cta-button:hover {
  background-color: #ccc;
}

* {
  font-family: 'Libre Bodoni', serif;
}
