* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "trade-gothic-next-compressed", sans-serif;
  overflow-x: hidden;
}

.page-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/Bball%20Court%20Expanded%201%20(1).png");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 80px;
  gap: 80px;
}

.hero-left {
  flex: 0.8;
  max-width: 500px;
}

.logo-container {
  margin-bottom: 40px;
}

.main-logo {
  width: 350px;
  height: auto;
}

.heading-container {
  margin-bottom: 20px;
}

.main-heading {
  font-size: 143px;
  font-weight: 700;
  color: white;
  line-height: 0.8;
  text-transform: uppercase;
  -webkit-text-stroke: 3px black;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 31px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  -webkit-text-stroke: 0.1px black;
  letter-spacing: 2px;
  justify-content: revert;
  display: flex;
  /* left: 3%; */
  position: relative;
}

.hero-right {
  flex: 0.9;
  max-width: 500px;
}

.hero-form-title {
  font-size: 48px;
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  background: white;
  color: #000;
}

.form-input::placeholder {
  color: #000;
  font-weight: 600;
}

.hero-button {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.primary-button {
  padding: 22px 40px;
  background: #c8102e;
  color: white;
  border: 3px solid #000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-family: 'trade-gothic-next-compressed';
}

.primary-button:hover {
  background: #ff062e;
  border-color: black;
}

.primary-button:disabled {
  background: #666;
  border-color: #555;
  cursor: not-allowed;
}

.secondary-button {
  padding: 14px 32px;
  font-size: 16px;
  background: black;
  color: white;
  max-width: 200px;
  margin: 0 auto;
  font-family: 'trade-gothic-next-compressed';
}

.secondary-button:hover {
  background: #222;
  border-color: #ddd;
}

/* Updated footer styles to be consistent */
.footer {
  padding: 30px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: black;
  margin-top: auto;
}

.legal-text {
  flex: 1;
}

.legal-links {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.legal-links a {
  color: white;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3px;
}

.legal-links a:hover {
  color: #ddd;
}

.legal-links .separator {
  color: white;
  margin: 0 2px;
}

.legal-text p {
  font-size: 17px;
  color: white;
  line-height: 1.5;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 40px;
}

.travel-leisure-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  line-height: 1;
}

.travel-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.leisure-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vacations-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-magic-logo img {
  width: 171px;
  height: auto;
}

/* Improved responsive breakpoints with better proportional scaling */

/* Large desktop - maintain desktop aesthetic */
@media (min-width: 1367px) {
  .main-content {
    padding: 60px 100px;
    gap: 100px;
  }
}

/* Desktop to large tablet - subtle scaling */
@media (min-width: 1025px) and (max-width: 1366px) {
  .main-content {
    padding: 50px 60px;
    gap: 70px;
  }

  .main-logo {
    width: 300px;
  }

  .main-heading {
    font-size: 120px;
  }

  .subtitle {
    font-size: 24px;
  }

  .hero-form-title {
    font-size: 38px;
  }

  .form-input {
    padding: 15px 18px;
    font-size: 15px;
  }

  .primary-button {
    padding: 20px 36px;
    font-size: 17px;
  }

  .secondary-button {
    padding: 13px 30px;
    font-size: 15px;
  }

  .footer {
    padding: 28px 60px;
  }

  .footer-magic-logo img {
    width: 150px;
  }
}

/* Tablet landscape - proportional scaling maintaining desktop aesthetic */
@media (min-width: 900px) and (max-width: 1024px) {
  .main-content {
    padding: 45px 50px;
    gap: 60px;
  }

  .main-logo {
    width: 280px;
  }

  .main-heading {
    font-size: 100px;
    -webkit-text-stroke: 2px black;
  }

  .subtitle {
    font-size: 18px;
  }

  .hero-form-title {
    font-size: 36px;
  }

  .form-input {
    padding: 14px 18px;
    font-size: 15px;
  }

  .form-row {
    gap: 14px;
  }

  .hero-form {
    gap: 14px;
  }

  .primary-button {
    padding: 13px 14px;
    font-size: 26px;
  }

  .secondary-button {
    padding: 13px 28px;
    font-size: 15px;
  }

  .footer {
    padding: 26px 50px;
  }

  .footer-magic-logo img {
    width: 130px;
  }
}

/* Tablet portrait - maintain proportions */
@media (min-width: 769px) and (max-width: 899px) {
  .main-content {
    padding: 40px 40px;
    gap: 50px;
  }

  .main-logo {
    width: 260px;
  }

  .main-heading {
    font-size: 85px;
    -webkit-text-stroke: 2px black;
  }

  .subtitle {
    font-size: 17px;
  }

  .hero-form-title {
    font-size: 22px;
  }

  .form-input {
    padding: 14px 16px;
    font-size: 14px;
  }

  .form-row {
    gap: 14px;
  }

  .hero-form {
    gap: 14px;
  }

  .primary-button {
    padding: 18px 32px;
    font-size: 16px;
  }

  .secondary-button {
    padding: 12px 26px;
    font-size: 14px;
  }

  .footer {
    padding: 24px 40px;
  }

  .legal-links a {
    font-size: 10px;
  }

  .legal-text p {
    font-size: 10px;
  }

  .travel-text,
  .leisure-text {
    font-size: 18px;
  }

  .vacations-text {
    font-size: 11px;
  }

  .footer-magic-logo img {
    width: 120px;
  }
}

/* Mobile landscape and larger phones - stack layout with maintained proportions */
@media (min-width: 481px) and (max-width: 768px) {
  .main-content {
    flex-direction: column;
    padding: 30px 30px;
    gap: 40px;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .main-logo {
    width: 240px;
  }

  .main-heading {
    font-size: 72px;
    -webkit-text-stroke: 1.5px black;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-form-title {
    font-size: 20px;
  }

  .form-input {
    padding: 14px 16px;
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-form {
    gap: 12px;
  }

  .primary-button {
    padding: 18px 32px;
    font-size: 16px;
  }

  .secondary-button {
    padding: 12px 28px;
    font-size: 14px;
  }

  .footer {
    flex-direction: column;
    padding: 24px 30px;
    gap: 30px;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .footer-logos {
    flex-direction: column;
    gap: 24px;
  }

  .travel-leisure-logo {
    align-items: center;
  }

  .footer-magic-logo img {
    width: 110px;
  }
}

/* Small mobile - single column forms, optimized for small screens */
@media (max-width: 480px) {
  .main-content {
    flex-direction: column;
    padding: 25px 20px;
    gap: 30px;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .main-logo {
    width: 200px;
  }

  .logo-container {
    margin-bottom: 30px;
  }

  .main-heading {
    font-size: 56px;
    -webkit-text-stroke: 1.5px black;
  }

  .subtitle {
    font-size: 14px;
    left: 0;
    justify-content: center;
  }

  .hero-form-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-input {
    padding: 13px 16px;
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-form {
    gap: 12px;
  }

  .primary-button {
    padding: 16px 28px;
    font-size: 15px;
  }

  .secondary-button {
    padding: 11px 24px;
    font-size: 13px;
  }

  .footer {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    font-size: 9px;
  }

  .legal-links a {
    font-size: 9px;
  }

  .legal-text p {
    font-size: 9px;
  }

  .travel-text,
  .leisure-text {
    font-size: 16px;
  }

  .vacations-text {
    font-size: 10px;
  }

  .footer-logos {
    flex-direction: column;
    gap: 20px;
  }

  .travel-leisure-logo {
    align-items: center;
  }

  .footer-magic-logo img {
    width: 100px;
  }
}

/* Desktop layout - maintain side-by-side above 768px */
@media (min-width: 769px) {
  .main-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-left {
    flex: 0.8;
  }

  .hero-right {
    flex: 0.9;
  }
}
