/* ===================================================================
   AUSSIE WINNERS CLUB - STATIC TEMPLATE STYLESHEET
   ================================================================== */

/* CSS Variables */
:root {
  /* Colors */
  --color-burnt-orange: #e25822;
  --color-charcoal: #111111;
  --color-white-smoke: #F5F5F5;
  --color-white: #FFFFFF;
  --color-light-grey: #DBD7D2;
  --color-dark-grey: #5f5e5c;
  --color-placeholder: #D0D0D0;
  --color-accent: #FFA319;
  --color-error: #FF0800;
  --color-success: #32CD32;
  
  /* Typography */
  --font-family: "DM Sans", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Font Sizes */
  --font-size-h1: 32px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-xs: 12px;
  --font-size-xxs: 11px;
  --font-size-xxxs: 11px;
  
  /* Layout */
  --max-width-container: 1200px;
  --max-width-text: 980px;
  --padding-horizontal: 1.5rem;
  --header-height-desktop: 160px;
  --header-height-mobile: 100px;
  
  /* Transitions */
  --transition-standard: 200ms ease-in-out;
}

/* ===================================================================
   GLOBAL STYLES AND RESET
   ================================================================== */

* {
  box-sizing: border-box;
}

html {
  background-color: var(--color-burnt-orange);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-white-smoke);
  background-color: var(--color-burnt-orange);
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-family);
  line-height: 1.6;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
}

p {
  margin: 0 auto;
  max-width: var(--max-width-text);
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
}

/* Global Link Styles */
a {
  color: inherit;
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: font-weight var(--transition-standard);
}

a:hover {
  font-weight: var(--font-weight-semibold);
}

a:active {
  font-weight: var(--font-weight-bold);
}

a:focus {
  outline: none;
}

/* Lists */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Buttons */
button {
  font-family: var(--font-family);
  border: none;
  cursor: pointer;
  transition: all var(--transition-standard);
}

button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Form Elements */
input {
  font-family: var(--font-family);
  border: none;
  outline: none;
}

input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===================================================================
   GLOBAL HEADER
   ================================================================== */

.global-header {
  background-color: var(--color-burnt-orange);
  min-height: var(--header-height-desktop);
  position: relative;
  z-index: 100;
}

.header-container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
  height: var(--header-height-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header Logo */
.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: block;
  font-weight: inherit;
}

.header-logo img {
  height: 120px;
  width: auto;
  max-width: 288px;
  display: block;
}

/* Header Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--color-white-smoke);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  transition: color var(--transition-standard), 
              font-weight var(--transition-standard), 
              text-shadow var(--transition-standard);
}

.nav-link:hover {
  color: var(--color-light-grey);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link:active,
.nav-link.active {
  color: var(--color-white-smoke);
  font-weight: var(--font-weight-extrabold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Header Account */
.header-account {
  flex-shrink: 0;
}

.member-login-btn {
  background-color: var(--color-white-smoke);
  color: var(--color-burnt-orange);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.2s ease;
}

.member-login-btn:hover {
  background-color: var(--color-white-smoke);
  color: #c6451c;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.member-login-btn:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}
.member-login-btn:active {
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.25);
  transform: translateY(1px);
}

/* ===================================================================
   HERO SECTION
   ================================================================== */

.hero-section {
  width: 100%;
  min-height: 200px;
  background-color: var(--color-burnt-orange);
  position: relative;
}

/* ===================================================================
   BODY CONTENT AREA
   ================================================================== */

.body-content {
  background-color: var(--color-burnt-orange);
  padding: 2rem 0;
}

.content-container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}

.content-section {
  margin-bottom: 2rem;
  min-height: 50px;
}

/* ===================================================================
   GLOBAL FOOTER
   ================================================================== */

.global-footer {
  background-color: var(--color-burnt-orange);
  margin-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.footer-container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}

/* Legal Links */
.legal-links {
  margin-bottom: 0.5rem;
}

.legal-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.legal-link {
  color: var(--color-white-smoke);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-regular);
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: color var(--transition-standard), 
              font-weight var(--transition-standard), 
              text-shadow var(--transition-standard);
}

.legal-link:hover {
  color: var(--color-light-grey);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.legal-link:active {
  color: var(--color-white-smoke);
  font-weight: var(--font-weight-extrabold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Play Responsibly Box */
.play-responsibly {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.divider-top,
.divider-bottom {
  height: 1px;
  background-color: var(--color-white);
  margin: 0.5rem 0;
}

.responsibly-content {
  padding: 0.5rem;
  max-width: 930px;
  margin: 0 auto;
}

.responsibly-content p {
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  text-align: justify;
  hyphens: none;
  margin: 0;
  line-height: 1.4;
  max-width: 910px;
}

.responsibly-content strong {
  font-weight: var(--font-weight-bold);
}

/* Copyright Block */
.copyright-block {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}

.copyright-container {
  max-width: var(--max-width-text);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.copyright-container p {
  color: #F5F5F5;
  font-size: var(--font-size-xxxs);
  font-weight: var(--font-weight-regular);
  line-height: 0.75rem;
  text-align: center;
  margin: 0.125rem 0;
  max-width: none;
}

.copyright-container a {
  font-weight: var(--font-weight-semibold);
  color: #F5F5F5;
}

/* ===================================================================
   MEMBER LOGIN MODAL
   ================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-standard), visibility var(--transition-standard);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-charcoal);
  max-width: 480px;
  width: 90%;
  height: 520px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: var(--color-white);
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition-standard);
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Modal Title */
.modal-title {
  color: var(--color-white);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Tab Toggle */
.tab-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  border-radius: 9999px;
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  transition: all var(--transition-standard);
}

.tab-btn.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  font-weight: var(--font-weight-bold);
}

.tab-btn:hover:not(.active) {
  background-color: var(--color-accent);
}

/* Tab Panels */
.tab-panel {
  display: none;
  flex: 1;
}

.tab-panel.active {
  display: flex;
  flex-direction: column;
}

/* Modal Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input {
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 9999px;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  transition: border-color var(--transition-standard);
}

.form-field input::placeholder {
  color: var(--color-placeholder);
  font-style: italic;
}

.form-field input:focus {
  border-color: var(--color-accent);
  outline: none;
}

/* Form Submit Button */
.form-submit {
  width: 100%;
  height: 48px;
  background-color: var(--color-white);
  color: var(--color-burnt-orange);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  border-radius: 9999px;
  margin-top: auto;
  transition: all var(--transition-standard);
}

.form-submit:hover {
  background-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-submit:active {
  background-color: var(--color-accent);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Submit States */
.form-submit.error {
  background-color: var(--color-error);
  color: var(--color-white);
}

.form-submit.success {
  background-color: var(--color-success);
  color: var(--color-white);
}

/* Form Message */
.form-message {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  text-align: center;
  display: none;
}

.form-message.error {
  background-color: rgba(255, 8, 0, 0.85);
  border: 1px solid var(--color-error);
  color: var(--color-white);
  display: block;
}

.form-message.success {
  background-color: rgba(50, 205, 50, 0.85);
  border: 1px solid var(--color-success);
  color: var(--color-white);
  display: block;
}

/* ===================================================================
   RESPONSIVE DESIGN
   ================================================================== */

@media (max-width: 768px) {
  .header-container {
    height: var(--header-height-mobile);
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem var(--padding-horizontal);
  }
  
  .header-logo img {
    height: 60px;
  }
  
  .nav-list {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: var(--font-size-small);
  }
  
  .member-login-btn {
    font-size: var(--font-size-xs);
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 600px) {
  .legal-list {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modal-container {
    width: 95%;
    padding: 1.5rem;
  }
  
  .tab-toggle {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .header-container {
    padding: 0.5rem;
  }
  
  .modal-container {
    padding: 1rem;
  }
  
  .modal-title {
    font-size: var(--font-size-body);
  }
}

/* ===================================================================
   ACCESSIBILITY ENHANCEMENTS
   ================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus visible for better keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ===================================================================
   LEGAL CONTENT PAGES
   ================================================================== */

/* Subpage Hero Section */
.subpage-hero {
  background-color: var(--color-white);
  padding: 3rem 0;
  color: var(--color-charcoal);
}

.subpage-hero-container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}

.subpage-hero h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  text-align: left;
}

.subpage-hero .last-updated {
  font-size: var(--font-size-body);
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-medium);
}

.subpage-hero .intro-summary {
  font-size: var(--font-size-body);
  color: var(--color-charcoal);
  line-height: 1.6;
  max-width: var(--max-width-text);
  text-align: left;
  text-justify: inter-word;
}

/* Legal Content Container */
.legal-content-wrapper {
  background-color: var(--color-burnt-orange);
  padding: 3rem 0;
  min-height: 50vh;
}

.legal-content {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--color-charcoal);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
  color: var(--color-charcoal);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h1:first-child,
.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left;
  text-justify: inter-word;
  max-width: none;
}

.legal-content a {
  color: var(--color-charcoal);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: font-weight var(--transition-standard);
}

.legal-content a:hover {
  font-weight: var(--font-weight-semibold);
}

.legal-content a:active {
  font-weight: var(--font-weight-bold);
}

.legal-content a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Lists in Legal Content */
.legal-content ul,
.legal-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style: initial;
}

.legal-content ul {
  list-style-type: disc;
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.legal-content li:last-child {
  margin-bottom: 0;
}

/* Tables in Legal Content */
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--font-size-small);
}

.legal-content th,
.legal-content td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--color-light-grey);
  color: var(--color-charcoal);
}

.legal-content th {
  background-color: #f8f9fa;
  font-weight: var(--font-weight-semibold);
}

.legal-content tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Callouts and Warnings */
.legal-content .callout {
  background-color: #f8f9fa;
  border-left: 4px solid var(--color-accent);
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.legal-content .callout p {
  margin-bottom: 0;
}

/* Back to Homepage Button */
.back-to-homepage {
  display: block;
  width: fit-content;
  margin: 4rem auto 2rem;
  padding: 12px 24px;
  background-color: var(--color-white);
  color: #1B76FF;
  border: 2px solid #1B76FF;
  border-radius: 9999px;
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-standard);
  cursor: pointer;
}

.back-to-homepage:hover {
  background-color: #f0f8ff;
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 2px 8px rgba(27, 118, 255, 0.2);
}

.back-to-homepage:active {
  background-color: #e6f3ff;
  font-weight: var(--font-weight-bold);
  transform: translateY(1px);
}

.back-to-homepage:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .subpage-hero {
    padding: 2rem 0;
  }
  
  .subpage-hero h1 {
    font-size: var(--font-size-h2);
    text-align: center;
  }
  
  .subpage-hero .last-updated,
  .subpage-hero .intro-summary {
    text-align: center;
  }
  
  .legal-content-wrapper {
    padding: 2rem 0;
  }
  
  .legal-content {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  
  .legal-content table {
    font-size: var(--font-size-xs);
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  
  .legal-content th,
  .legal-content td {
    padding: 8px 12px;
  }
  
  .back-to-homepage {
    width: calc(100% - 2rem);
    margin: 3rem 1rem 2rem;
  }
}

@media (max-width: 420px) {
  .subpage-hero {
    padding: 1.5rem 0;
  }
  
  .subpage-hero-container {
    padding: 0 1rem;
  }
  
  .legal-content {
    margin: 0 0.5rem;
    padding: 1rem;
  }
  
  .back-to-homepage {
    margin: 2rem 0.5rem 1rem;
  }
}



/* ===================================================================
   HOMEPAGE SECTIONS
   ================================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(17, 17, 17, 0.75);
  border-radius: 12px;
  padding: 2rem;
  max-width: 960px;
  margin: 10.5rem auto 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: var(--color-white-smoke);
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: var(--font-size-body);
  color: var(--color-white-smoke);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
  text-justify: inter-word;
}

.hero-cta {
  background-color: var(--color-white-smoke);
  color: var(--color-burnt-orange);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-standard);
  min-height: 44px;
  min-width: 44px;
  margin-bottom: 0.75rem;
}

.hero-cta:hover,
.hero-cta:focus {
  background-color: var(--color-accent);
  color: var(--color-white);
  outline: 2px solid var(--color-white-smoke);
  outline-offset: 2px;
}

.hero-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-light-grey);
  display: block;
  margin-top: 0.75rem;
}

/* Homepage Section Container System */
.homepage-section {
  background-color: var(--color-burnt-orange);
  padding: 4rem 0;
  width: 100%;
}

/* Benefits Section - Increased top padding */
#benefits.homepage-section {
  padding-top: 8rem;
}

.section-wrapper {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}

.section-container {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--color-charcoal);
}

.section-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.section-container p {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  background-color: #E5E4E2;
  color: #111111;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.benefit-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 1rem;
  color: #e25822;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e25822;
  margin-bottom: 1rem;
  text-align: center;
}

.benefit-card p {
  font-size: var(--font-size-body);
  font-weight: 400;
  color: #111111;
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
  max-width: 960px;
  line-height: 1.6;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.process-step {
  font-size: 14px;
  font-weight: 700;
  color: #e2b822;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.process-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 1rem;
  color: #111111;
}

.process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e25822;
  margin-bottom: 1rem;
  text-align: center;
}

.process-card p {
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-text);
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
  line-height: 1.6;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-card {
  background-color: #F5F5F5;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 1rem;
  color: #111111;
}

.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #e25822;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  min-height: 532px;
}

.contact-image {
  background-color: #FFFFFF;
  padding: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0;
}

.contact-form {
  background-color: #e25822;
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.contact-form-headline {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
  text-align: center;
  font-family: inherit;
}

/* Responsive headline sizing */
@media (max-width: 768px) {
  .contact-form-headline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Update Benefits section padding-bottom */
#benefits.homepage-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* Update Contact section padding-bottom */
#contact.homepage-section {
  padding-bottom: 8rem;
}

/* Notice Section */
.notice-section {
  background-color: var(--color-white);
  padding: 4rem 0;
  width: 100%;
}

.notice-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}

.notice-text {
  background-color: var(--color-burnt-orange);
  border: 8px solid var(--color-burnt-orange);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.notice-text h2 {
  font-size: 36px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  text-align: center;
  margin-bottom: 1rem;
}

.notice-text p {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
  max-width: 1140px;
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.logo-link {
  display: block;
  transition: var(--transition-standard);
  border-radius: 8px;
}

.logo-link:hover,
.logo-link:focus {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  outline: none;
}

.logo-link:active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: scale(0.98);
}

.logo-link img {
  max-height: 42px;
  width: auto;
  display: block;
}

/* ===================================================================
   RESPONSIVE DESIGN
   ================================================================== */

@media (max-width: 768px) {
  .hero-overlay {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content h2 {
    font-size: 20px;
  }
  
  .section-container {
    padding: 1.5rem;
  }
  
  .benefits-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-image,
  .contact-form {
    height: auto;
    min-height: 300px;
  }
  
  .logo-strip {
    justify-content: center;
    gap: 1rem;
  }
  
  .notice-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
  
  .hero-content h2 {
    font-size: 18px;
  }
  
  .notice-text h2 {
    font-size: 24px;
  }
  
  .logo-strip {
    flex-direction: column;
    align-items: center;
  }
}


/* Age Verification Modal Styles */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
}

.age-verification-modal {
  max-width: 520px;
  width: 90%;
  background: #FFFFFF;
  opacity: 0.96;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.age-modal-header {
  background: #CE2029;
  padding: 1rem;
  text-align: center;
}

.age-modal-header h2 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.age-modal-content {
  padding: 2rem;
}

.age-modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.age-icon-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-icon-circle {
  width: 120px;
  height: 120px;
  border: 4px solid #CE2029;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-icon-text {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  font-family: "Open Sans", sans-serif;
}

.age-text-column p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  color: #000000;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.age-modal-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.age-btn {
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.age-btn:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.age-btn-yes {
  background: #32CD32;
  color: #FFFFFF;
}

.age-btn-yes:hover {
  opacity: 0.9;
}

.age-btn-no {
  background: #CE2029;
  color: #FFFFFF;
}

.age-btn-no:hover {
  opacity: 0.9;
}

/* Access Denied Modal */
.access-denied-modal {
  align-items: flex-start;
  padding-top: 2rem;
}

.access-denied-container {
  max-width: 520px;
  width: 90%;
  background: #CE2029;
  border: 4px solid #CE2029;
  border-radius: 16px;
  opacity: 0.96;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.access-denied-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 1rem 0;
  font-family: "Open Sans", sans-serif;
}

.access-denied-text {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .age-modal-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .age-modal-buttons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .age-icon-circle {
    width: 100px;
    height: 100px;
  }
  
  .age-icon-text {
    font-size: 20px;
  }
  
  .age-modal-header h2 {
    font-size: 16px;
  }
}

