/* ===== FONTS ===== */
/* Google Fonts loaded via <link> in HTML for better performance */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-weight: 400;
  color: #151515;
  background: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #8C3F41;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}

a:hover {
  color: #733334;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 56px 0;
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 40px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  transition: all 0.33s ease-in-out;
  text-decoration: none;
}

.btn-primary {
  background-color: #8C3F41;
  color: #fff;
  box-shadow: 0 3px 6px 3px rgba(0,0,0,0.24);
}

.btn-primary:hover {
  background-color: #733334;
  color: #fff;
  box-shadow: 0 4px 8px 4px rgba(0,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: #8C3F41;
  border: 2px solid #8C3F41;
}

.btn-outline:hover {
  background: #8C3F41;
  color: #fff;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #571C1D;
  text-transform: uppercase;
  letter-spacing: 0.143em;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active {
  color: #8C3F41;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #571C1D;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 66.67vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 10, 10, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 40px 24px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.85);
}

/* ===== GALLERY SHOWCASE (Homepage) ===== */
.gallery-showcase {
  background: #160A0A;
  padding: 56px 0;
  text-align: center;
}

.gallery-showcase h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #8C3F41;
  color: #fff;
  text-align: center;
  padding: 48px 24px;
}

.cta-banner h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 400;
}

.cta-banner .btn {
  background: #fff;
  color: #8C3F41;
}

.cta-banner .btn:hover {
  background: #f0e6e6;
  color: #733334;
}

/* ===== DIFFERENCE SECTION ===== */
.difference {
  background: #f6f6f6;
}

.difference h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.difference .subtitle {
  text-align: center;
  font-size: 16px;
  color: #575757;
  margin-bottom: 32px;
}

.difference-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0 24px;
}

.difference-list li {
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.75;
  color: #575757;
  border-bottom: 1px solid #e2e2e2;
  padding-left: 24px;
  position: relative;
}

.difference-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #8C3F41;
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 56px 0;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #8C3F41;
  color: #fff;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}

.step p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #160A0A;
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: left;
}

.testimonial-card .stars {
  color: #B78F61;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.testimonial-card .attribution {
  font-size: 14px;
  font-weight: 600;
  color: #B78F61;
}

/* ===== FAQ ===== */
.faq {
  padding: 56px 0;
  background: #f6f6f6;
}

.faq h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid #e2e2e2;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #8C3F41;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
}

/* ===== SCHEDULE CTA ===== */
.schedule-cta {
  background: #160A0A;
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}

.schedule-cta h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0505;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #8C3F41;
  color: #fff;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== PORTFOLIO PAGE ===== */
.page-hero {
  margin-top: 72px;
  padding: 56px 24px;
  text-align: center;
  background: #160A0A;
  color: #fff;
}

.page-hero h1 {
  font-size: 36px;
}

.portfolio-section {
  padding: 56px 0;
}

.portfolio-section:nth-child(even) {
  background: #f6f6f6;
}

.portfolio-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 24px;
}

.show-more-btn {
  display: block;
  margin: 32px auto 0;
  background: none;
  border: 2px solid #8C3F41;
  color: #8C3F41;
  padding: 10px 32px;
  border-radius: 48px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: #8C3F41;
  color: #fff;
}

/* ===== PRICING PAGE ===== */
.pricing-hero {
  margin-top: 72px;
  padding: 100px 24px;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.pricing-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,10,10,0.65);
}

.pricing-hero-content {
  position: relative;
  z-index: 1;
}

.pricing-hero h1 {
  font-size: 72px;
  margin-bottom: 8px;
}

.pricing-hero p {
  font-size: 18px;
  font-weight: 400;
}

.pricing-section {
  padding: 56px 0;
}

.pricing-section:nth-child(even) {
  background: #f6f6f6;
}

.pricing-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-text {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-text p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
  margin-bottom: 16px;
}

.pricing-text ul {
  list-style: none;
  margin: 24px 0;
}

.pricing-text ul li {
  padding: 12px 0;
  padding-left: 24px;
  font-size: 16px;
  color: #575757;
  position: relative;
  border-bottom: 1px solid #e2e2e2;
}

.pricing-text ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #8C3F41;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.product-card-body {
  padding: 20px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 15px;
  color: #575757;
  line-height: 1.75;
  margin-bottom: 12px;
}

.product-card .price {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8C3F41;
}

/* Digital pricing table */
.digital-pricing {
  max-width: 600px;
  margin: 32px auto 0;
}

.digital-pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
  font-size: 16px;
}

.digital-pricing-row .label {
  color: #575757;
}

.digital-pricing-row .amount {
  font-weight: 700;
  color: #8C3F41;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  margin-top: 72px;
  padding: 56px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-info h1 {
  font-size: 30px;
  margin-bottom: 24px;
  color: #000;
}

.contact-info p {
  font-size: 16px;
  color: #575757;
  margin-bottom: 16px;
  line-height: 1.75;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  color: #151515;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8C3F41;
}

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

.required::after {
  content: '*';
  color: #8C3F41;
  margin-left: 4px;
}

/* ===== DOCK DIVING PAGE ===== */
.dock-intro {
  padding: 56px 0;
  text-align: center;
}

.dock-intro p {
  max-width: 750px;
  margin: 0 auto 16px;
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
  padding: 0 24px;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

/* ===== BADGES ===== */
.badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 24px;
}

.badges img {
  height: 80px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.badges img:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid img {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .section-padding {
    padding: 40px 0;
  }

  h2 {
    font-size: 26px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-grid img {
    height: 180px;
  }

  .pricing-hero h1 {
    font-size: 48px;
  }

  .badges img {
    height: 60px;
  }
}

/* ===== RESPONSIVE: LARGER SCREENS ===== */
@media (min-width: 1536px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .gallery-showcase h2,
  .how-it-works h2,
  .testimonials h2,
  .faq h2,
  .schedule-cta h2,
  .difference h2 {
    font-size: 36px;
  }
}
