/* The Sport of Living - Global Stylesheet */

/* Color Palette */
:root {
  --bg-light-violet: #f0ebf8;
  --bg-box: #e8e2f3;
  --paypal-blue: #0070ba;
  --paypal-gold: #ffc439;
  --vip-dark-gold: #b8860b;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --border-subtle: #d0d0d0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light-violet);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  text-align: center;
  padding: 10px 20px;
  background-color: #000;
  border-bottom: 2px solid var(--border-subtle);
}

header h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--bg-light-violet);
}

/* Main Content */
main {
  padding: 60px 0;
}

/* Typography */
h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.page-title {
  font-size: 28px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 24px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-medium);
  margin-top: 20px;
  margin-bottom: 40px;
}

.hero-subheadline {
  font-size: 22px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 40px;
}

p {
  margin-bottom: 24px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

/* Two-Column Layouts */
.row {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.row .col {
  flex: 1;
}

.row img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Content Boxes */
.content-box {
  background-color: var(--bg-box);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid var(--border-subtle);
}

.content-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-box ul {
  list-style: none;
  padding-left: 0;
}

.content-box ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.content-box ul li:before {
  content: '−';
  position: absolute;
  left: 0;
}

/* VIP Gold Box */
.vip-box {
  border: 2px solid var(--paypal-gold);
  background-color: #fffef5;
}

.vip-box h3 {
  color: var(--paypal-gold);
}

/* Gold Invitation Band */
.gold-band {
  background-color: #fffef5;
  border: 1px solid var(--paypal-gold);
  border-radius: 8px;
  padding: 24px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.gold-band a {
  color: var(--paypal-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--paypal-blue);
}

.gold-band a:hover {
  color: var(--paypal-gold);
  border-bottom-color: var(--paypal-gold);
}

/* Pricing Boxes Side by Side */
.pricing-row {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.pricing-box {
  flex: 1;
  background-color: var(--bg-box);
  border-radius: 10px;
  padding: 40px;
  border: 1px solid var(--border-subtle);
}

.pricing-box h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-box .price {
  font-size: 20px;
  font-weight: 600;
  margin: 16px 0;
  color: var(--paypal-blue);
}

.pricing-box.vip {
  border: 2px solid var(--paypal-gold);
  background-color: #fffef5;
}

.pricing-box.vip .price {
  color: var(--paypal-gold);
}

.pricing-box .best-value {
  display: inline-block;
  background-color: var(--paypal-gold);
  color: #000;
  padding: 6px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.centered-image {
  max-width: 700px;
  margin: 40px auto;
  border-radius: 8px;
}

/* Text Blocks */
.text-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Google Forms Embed */
.form-embed {
  width: 100%;
  max-width: 100%;
  border: none;
}

.consent-text {
  font-size: 14px;
  color: var(--text-medium);
  margin-top: 16px;
  font-style: italic;
}

/* PayPal Button Container */
.paypal-container {
  text-align: center;
  margin: 30px 0;
}

.button-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* Disclaimer */
.disclaimer {
  background-color: var(--bg-box);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 24px;
  margin: 60px 0 40px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* Footer */
footer {
  background-color: #000;
  border-top: 2px solid var(--border-subtle);
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--bg-light-violet);
  line-height: 1.8;
}

footer a {
  color: var(--bg-light-violet);
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

/* VIP Highlighted Text */
.vip-highlight {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin: 30px 0;
  color: var(--vip-dark-gold);
}

/* VIP Dark Gold Text */
.vip-dark-gold-text {
  color: var(--vip-dark-gold) !important;
}

/* Wide Photo Style for Page 1 */
.wide-photo {
  max-width: 715px;
  margin: 40px auto;
  border-radius: 8px;
}

/* Golden Border for VIP Photo */
.golden-border {
  border: 2px solid var(--paypal-gold);
}

/* VIP Box Title Row */
.vip-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

/* Two Column Layout for Page 6 */
.two-column-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.two-column-layout .col-left {
  flex: 0 0 45%;
}

.two-column-layout .col-right {
  flex: 0 0 55%;
}

.vip-benefits {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin: 30px auto;
  max-width: 600px;
}

/* Closing Statement */
.closing-statement {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 40px 0;
}

.small-note {
  font-size: 14px;
  color: var(--text-medium);
  text-align: center;
  margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .subheadline {
    font-size: 18px;
  }

  .row {
    flex-direction: column;
    gap: 30px;
  }

  .pricing-row {
    flex-direction: column;
  }

  .two-column-layout {
    flex-direction: column;
  }

  .two-column-layout .col-left,
  .two-column-layout .col-right {
    flex: 0 0 100%;
  }

  .vip-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-box {
    padding: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  main {
    padding: 40px 0;
  }

  .centered-image {
    max-width: 100%;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 24px;
  }

  h1 {
    font-size: 24px;
  }

  .content-box {
    padding: 20px;
  }

  footer {
    font-size: 12px;
  }
}