﻿/* Base */
* { box-sizing: border-box; }

/* Navigation buttons */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: background-color 0.2s, color 0.2s;
  background-color: transparent;
  color: #ed5311;
  border: 2px solid #ed5311;
}
.nav a:hover {
  background-color: #ed5311;
  color: white;
}

/* Layout */
.image-row {
  display: flex;
  gap: 16px;
}

/* Large image cards */
.image-card {
  position: relative;
  flex: 1;
  min-width: 0;
  display: block;
  text-decoration: none;
  border-radius: 17px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 3px #ed5311;
}
.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 6px #ed5311, 0 12px 28px rgba(0, 0, 0, 0.2);
}
.image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.image-card:hover img {
  filter: brightness(1.08);
}
.image-card:hover .img-aboutme-home {
  filter: brightness(1.35);
}
.image-card:active img {
  filter: brightness(1.4);
}
.image-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #ed5311;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
}

/* Small nav cards with grayscale hover */
.nav-card {
  position: relative;
  flex: 1;
  min-width: 0;
  display: block;
  text-decoration: none;
  border-radius: 17px;
  overflow: hidden;
}
.nav-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.nav-card:hover img {
  filter: grayscale(0%);
}

/* Nav card hover image swap */
.nav-card--getstarted img,
.nav-card--learnmore img,
.nav-card--aboutme img,
.nav-card--getstarted:hover img,
.nav-card--learnmore:hover img,
.nav-card--aboutme:hover img {
  filter: none;
}
.nav-card--getstarted img {
  object-position: 50% 27%;
}
.nav-card--getstarted::after,
.nav-card--learnmore::after,
.nav-card--aboutme::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-card--getstarted::after { background: url('/images/getstarted2.jpg') 50% 27% / cover no-repeat; }
.nav-card--learnmore::after  { background: url('/images/learnmore2.jpg') 50% 19% / cover no-repeat; }
.nav-card--aboutme::after    { background: url('/images/aboutme2.jpg') 50% 10% / cover no-repeat; }
.nav-card--getstarted:hover::after,
.nav-card--learnmore:hover::after,
.nav-card--aboutme:hover::after {
  opacity: 1;
}
.nav-card--getstarted .card-label,
.nav-card--learnmore .card-label,
.nav-card--aboutme .card-label {
  z-index: 1;
}
.nav-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #ed5311;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
}

/* Horizontal divider with text */
.or-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
  color: #ccc;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
}
.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* Form elements */
label {
  font-size: 18px;
  letter-spacing: 0.5px;
}
input[type="text"],
input[type="email"] {
  display: block;
  margin-top: 6px;
  padding: 8px 12px;
  font-size: 16px;
  font-family: sans-serif;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus {
  border-color: #ed5311;
  outline: none;
}
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #ed5311;
  cursor: pointer;
  flex-shrink: 0;
}
#submit-btn {
  margin-top: 24px;
  padding: 12px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  background-color: #ed5311;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 1px;
}
#submit-btn:hover {
  background-color: #c94400;
}
#submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#form-message {
  margin-top: 10px;
  font-family: sans-serif;
  font-size: 15px;
  color: red;
}
.field-error {
  display: none;
  font-family: sans-serif;
  font-size: 14px;
  color: red;
  margin-top: 4px;
}

/* Checkout pages */
#ref-display {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 6px;
  color: #ed5311;
  background: #f7f7f7;
  border: 2px solid #ed5311;
  padding: 9px 15px;
  border-radius: 6px;
  margin: 0 0 8px;
  display: inline-block;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
}
#plan-display {
  font-size: 18px;
  background: #f7f7f7;
  border-left: 4px solid #ed5311;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 0 0 24px;
}
.alt-pay {
  margin-top: 2px;
  padding: 16px;
  background: #f7f7f7;
  border-radius: 8px;
}
.alt-pay p {
  margin: 6px 0;
  font-size: 20px;
}
.checkout-subtitle { font-size: 23px; }
.payment-note {
  margin-top: 10px;
  color: #333;
  font-size: 16px;
}

/* Disclaimer */
.disclaimer-box {
  margin-top: 28px;
  padding: 14px 16px;
  background: #f7f7f7;
  border-left: 4px solid #ed5311;
  border-radius: 6px;
  font-size: 16px;
  font-family: Georgia, serif;
  line-height: 1.5;
  color: #333;
}
.disclaimer-box label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

/* Form footer note */
.form-footer-note {
  margin-top: 20px;
  font-family: Georgia, serif;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.card-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Utility */
.img-top { object-position: top; }
.img-aboutme-nav { object-position: 50% 10%; filter: brightness(1.2); }
.img-aboutme-home { filter: brightness(1.2); object-position: 50% 15%; }
.img-learnmore-home { object-position: 50% 23%; }
.img-learnmore-nav  { object-position: 50% 19%; }

.image-card--getstarted::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/getstarted1.jpg') center 30% / cover no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.image-card--getstarted:hover::after {
  opacity: 1;
}
.image-card--getstarted .card-label {
  z-index: 1;
}

.image-card--aboutme::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/aboutme1.jpg') 50% 15% / cover no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.image-card--aboutme:hover::after {
  opacity: 1;
}
.image-card--aboutme .card-label {
  z-index: 1;
}

.image-card--learnmore::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/learnmore1.jpg') 50% 23% / cover no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.image-card--learnmore:hover::after {
  opacity: 1;
}
.image-card--learnmore .card-label {
  z-index: 1;
}

.tip-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #bbb;
  text-align: center;
  margin: 24px 0 8px;
}

/* â”€â”€ Mobile (â‰¤600px) â”€â”€ */
@media (max-width: 600px) {
  .image-row { flex-wrap: wrap; }
  .image-card { flex: 1 1 calc(50% - 8px); height: 250px; }
  .image-card img { height: 250px; }
  .image-card .card-label { font-size: 32px; }
}

/* â”€â”€ Mobile (â‰¤480px) â”€â”€ */
@media (max-width: 480px) {
  body { padding: 12px !important; max-width: none !important; }

  h1 { font-size: 32px !important; }
  h2 { font-size: 20px !important; }

  .nav a { padding: 6px 14px; font-size: 16px; }

  .image-card { flex: 1 1 100%; height: 200px; }
  .image-card img { height: 200px; }
  .image-card .card-label { font-size: 24px; padding: 10px 8px; }
  .nav-card img { height: 150px; }
  .nav-card .card-label { font-size: 18px; }

  input[type="text"],
  input[type="email"] { max-width: 100% !important; }

  label { font-size: 16px; }

  .tagline { font-size: 16px; }
  .or-divider { font-size: 16px; gap: 12px; }
  .checkout-subtitle { font-size: 18px !important; }

  #ref-display { font-size: 24px; letter-spacing: 4px; padding: 6px 10px; }

  .instagram-btn { font-size: 18px; padding: 10px 20px; }
  .instagram-btn svg { width: 20px; height: 20px; }
}
