/* ========================================
   ZEPHYR FITNESS CLUB - VINTAGE RETRO STYLE
   Modern fitness meets nostalgic charm
   ======================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2c1810;
  background: #f4f1de;
  overflow-x: hidden;
}

/* ========================================
   VINTAGE RETRO COLOR PALETTE
   Warm, nostalgic tones
   ======================================== */
:root {
  --primary: #1A5F7A;
  --secondary: #E85D04;
  --accent: #F4F1DE;
  --cream: #faf7f0;
  --mustard: #d4a373;
  --rust: #c84630;
  --forest: #2d5f4f;
  --brown: #5c3d2e;
  --text-dark: #2c1810;
  --text-light: #f4f1de;
}

/* ========================================
   TYPOGRAPHY - VINTAGE STYLE
   ======================================== */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  text-shadow: 2px 2px 0px rgba(232, 93, 4, 0.2);
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  border-bottom: 3px solid var(--secondary);
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  color: var(--primary);
}

h4 {
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--secondary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-decoration-color: var(--primary);
}

strong {
  font-weight: 700;
  color: var(--brown);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  padding-left: 8px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   HEADER - VINTAGE STYLE
   ======================================== */
header {
  background: linear-gradient(135deg, #1A5F7A 0%, #2d5f4f 100%);
  padding: 16px 0;
  border-bottom: 5px solid var(--secondary);
  box-shadow: 0 4px 0 rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: rgba(244, 241, 222, 0.1);
}

.main-nav a:hover {
  background: var(--secondary);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ========================================
   MOBILE MENU - VINTAGE STYLE
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--secondary);
  color: white;
  border: 3px solid var(--brown);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--brown);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--brown);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1A5F7A 0%, #2d5f4f 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  border-left: 5px solid var(--secondary);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rust);
  color: white;
  border: 3px solid var(--brown);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--brown);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: var(--secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(244, 241, 222, 0.1);
  border: 2px solid rgba(244, 241, 222, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  border-left: 5px solid var(--secondary);
}

.mobile-nav a:hover {
  background: var(--secondary);
  border-color: var(--accent);
  transform: translateX(8px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

/* ========================================
   HERO SECTION - VINTAGE BANNER STYLE
   ======================================== */
.hero {
  background: linear-gradient(135deg, #d4a373 0%, #E85D04 50%, #c84630 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid var(--brown);
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.03) 20px
  );
  pointer-events: none;
}

.hero h1 {
  color: white;
  text-shadow: 3px 3px 0 var(--brown), 6px 6px 0 rgba(0,0,0,0.2);
  margin-bottom: 24px;
  position: relative;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.subtitle {
  font-size: 20px;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 16px;
}

.highlight {
  background: rgba(255,255,255,0.9);
  color: var(--brown);
  padding: 12px 24px;
  border: 3px dashed var(--brown);
  display: inline-block;
  font-weight: 700;
  margin: 16px 0;
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.location-badge {
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  font-size: 14px;
  margin: 16px 0;
  border: 3px solid white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-line {
  font-size: 14px;
  color: white;
  margin-top: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========================================
   BUTTONS - VINTAGE STYLE
   ======================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.btn-primary {
  background: var(--secondary);
  color: white;
  border-color: var(--brown);
}

.btn-primary:hover {
  background: var(--rust);
  color: white;
}

.btn-secondary {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--brown);
}

.btn-secondary:hover {
  background: var(--mustard);
  color: white;
}

/* ========================================
   CARD LAYOUTS - VINTAGE POSTCARD STYLE
   ======================================== */
.benefits-grid,
.services-grid,
.membership-grid,
.category-grid,
.goals-grid,
.pricing-grid,
.special-grid,
.team-grid,
.values-grid,
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.membership-card,
.category-card,
.goal-card,
.price-card,
.special-card,
.team-member,
.team-card,
.value-card,
.area-card,
.trainer-card {
  flex: 1 1 300px;
  background: var(--cream);
  padding: 32px 24px;
  border: 4px solid var(--brown);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--mustard);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.membership-card::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.2;
}

.benefit-card:hover,
.service-card:hover,
.membership-card:hover,
.category-card:hover,
.goal-card:hover,
.price-card:hover,
.special-card:hover,
.team-member:hover,
.team-card:hover,
.trainer-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--mustard);
}

.benefit-card h3,
.service-card h3,
.membership-card h3,
.category-card h3,
.goal-card h3,
.price-card h3,
.team-card h3,
.trainer-card h3 {
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.membership-card.featured,
.price-card.featured {
  border-color: var(--secondary);
  background: linear-gradient(135deg, #faf7f0 0%, #f4f1de 100%);
  box-shadow: 8px 8px 0 var(--secondary);
}

.membership-card.featured::after,
.price-card.featured::after {
  content: 'BELIEBT';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--brown);
  border-radius: 4px;
  letter-spacing: 2px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Georgia', serif;
  margin: 16px 0;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.ideal {
  font-style: italic;
  color: var(--forest);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px dashed var(--mustard);
}

.classes,
.details,
.schedule,
.instructor,
.result {
  font-size: 14px;
  color: var(--brown);
  margin-top: 8px;
}

.quote {
  font-style: italic;
  color: var(--forest);
  border-left: 4px solid var(--secondary);
  padding-left: 16px;
  margin-top: 16px;
}

/* ========================================
   TESTIMONIALS - VINTAGE REVIEW CARDS
   ======================================== */
.testimonials {
  background: var(--mustard);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 5px solid var(--brown);
  border-bottom: 5px solid var(--brown);
}

.testimonials h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 300px;
  background: white;
  padding: 28px 24px;
  border: 3px solid var(--brown);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--secondary);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.author {
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
  text-align: right;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--mustard);
}

.rating,
.stats {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-top: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ========================================
   SPECIAL SECTIONS
   ======================================== */
.timeline {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  border-left: 4px solid var(--secondary);
  margin-bottom: 32px;
}

.timeline li {
  padding: 16px 0 16px 32px;
  position: relative;
  margin-bottom: 16px;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border: 3px solid var(--cream);
  border-radius: 50%;
}

.facilities-list {
  list-style: none;
  margin-left: 0;
}

.facilities-list li {
  padding: 16px;
  background: var(--cream);
  margin-bottom: 12px;
  border-left: 5px solid var(--secondary);
  border-radius: 4px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.facilities-list li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  margin-right: 8px;
}

.cta-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 24px;
}

.cta-list li {
  padding: 12px 16px;
  background: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  border-left: 4px solid var(--primary);
  font-weight: 600;
}

.cta-list li::before {
  content: '►';
  color: var(--secondary);
  margin-right: 8px;
}

/* ========================================
   SECTION VARIATIONS
   ======================================== */
.benefits,
.services,
.location,
.philosophy,
.facilities,
.categories,
.featured-classes,
.goals,
.trainers,
.wellness-areas {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits {
  background: linear-gradient(135deg, #faf7f0 0%, #f4f1de 100%);
  border-top: 4px solid var(--secondary);
  border-bottom: 4px solid var(--secondary);
}

.services {
  background: white;
}

.philosophy {
  background: var(--cream);
  border: 4px solid var(--brown);
  border-radius: 8px;
  margin: 60px 20px;
}

.location {
  background: linear-gradient(135deg, #1A5F7A 0%, #2d5f4f 100%);
  color: white;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.location h2,
.location h3 {
  color: white;
}

.location p {
  color: var(--cream);
}

.location-info {
  background: rgba(255,255,255,0.1);
  padding: 32px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  margin-top: 24px;
}

.address {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

/* ========================================
   CTA SECTIONS - VINTAGE POSTER STYLE
   ======================================== */
.cta,
.cta-final,
.trial-offer {
  background: linear-gradient(135deg, #E85D04 0%, #c84630 100%);
  padding: 60px 20px;
  text-align: center;
  border: 6px solid var(--brown);
  border-radius: 8px;
  margin: 60px 20px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
  position: relative;
}

.cta::before,
.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.05) 20px,
    rgba(255,255,255,0.05) 40px
  );
  pointer-events: none;
}

.cta h2,
.cta-final h2,
.trial-offer h2 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 var(--brown);
}

.cta p,
.cta-final p,
.trial-offer p {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}

.urgency {
  background: var(--brown);
  color: white;
  padding: 12px 24px;
  display: inline-block;
  margin: 16px 0;
  border: 3px dashed white;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.guarantee,
.offer {
  background: white;
  color: var(--brown);
  padding: 16px 24px;
  border: 4px solid var(--brown);
  display: inline-block;
  margin: 16px 0;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.privacy-note,
.app-note,
.note,
.science-note,
.response-time,
.privacy-info {
  font-size: 14px;
  color: var(--cream);
  margin-top: 16px;
  font-style: italic;
}

.cta-buttons,
.section-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* ========================================
   SCHEDULE & INFO BLOCKS
   ======================================== */
.schedule-list,
.day-schedule,
.info-block,
.direction-card,
.team-contact,
.special-card,
.contact-info-section {
  background: var(--cream);
  padding: 24px;
  border: 3px solid var(--brown);
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0 var(--mustard);
}

.day-schedule h3,
.info-block h3,
.direction-card h3,
.team-contact h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--mustard);
  padding-bottom: 8px;
}

.directions-grid,
.specials-grid,
.contact-grid,
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.booking-steps,
.next-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 32px 0;
  padding: 0;
}

.booking-steps li,
.next-steps li {
  counter-increment: step-counter;
  padding: 16px 16px 16px 60px;
  background: var(--cream);
  margin-bottom: 16px;
  border: 3px solid var(--brown);
  border-radius: 8px;
  position: relative;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.booking-steps li::before,
.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 3px solid var(--brown);
}

/* ========================================
   CONTACT FORMS & INFO
   ======================================== */
.contact-content {
  padding: 40px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 300px;
}

.form-info {
  background: var(--cream);
  padding: 32px;
  border: 4px solid var(--brown);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--mustard);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: 60px 20px;
  background: var(--cream);
  margin-bottom: 60px;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: white;
  padding: 24px;
  margin-bottom: 16px;
  border: 3px solid var(--brown);
  border-radius: 8px;
  border-left: 6px solid var(--secondary);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* ========================================
   LEGAL CONTENT PAGES
   ======================================== */
.legal-content {
  padding: 60px 20px;
  background: white;
}

.legal-content h1 {
  border-bottom: 4px solid var(--secondary);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content ul,
.legal-content ol {
  background: var(--cream);
  padding: 24px 24px 24px 48px;
  border-left: 4px solid var(--secondary);
  border-radius: 4px;
  margin-bottom: 24px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-content {
  padding: 60px 20px;
  text-align: center;
}

.thank-you-message {
  background: var(--cream);
  padding: 60px 40px;
  border: 6px solid var(--secondary);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 8px 8px 0 var(--brown);
}

.thank-you-message h1 {
  color: var(--secondary);
  font-size: 56px;
  margin-bottom: 24px;
}

.main-message {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

.explore-section {
  background: white;
  padding: 32px;
  border: 3px solid var(--brown);
  border-radius: 8px;
  margin: 32px 0;
}

/* ========================================
   FOOTER - VINTAGE STYLE
   ======================================== */
footer {
  background: linear-gradient(135deg, #2c1810 0%, #5c3d2e 100%);
  color: var(--cream);
  padding: 60px 20px 20px;
  border-top: 6px solid var(--secondary);
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
  font-family: 'Georgia', serif;
}

.footer-section p {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.footer-nav a:hover {
  color: var(--secondary);
  border-left-color: var(--secondary);
  padding-left: 16px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(244, 241, 222, 0.2);
  font-size: 14px;
  color: var(--mustard);
}

/* ========================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ======================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #5c3d2e 0%, #2c1810 100%);
  color: white;
  padding: 24px;
  z-index: 999;
  border-top: 5px solid var(--secondary);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: none;
}

#cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: var(--cream);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: 3px solid;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  text-transform: uppercase;
}

.cookie-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

#accept-all {
  background: var(--secondary);
  color: white;
  border-color: var(--brown);
}

#reject-all {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

#cookie-settings {
  background: var(--mustard);
  color: var(--brown);
  border-color: var(--brown);
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: var(--cream);
  padding: 40px;
  border: 6px solid var(--brown);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
}

.modal-content h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-category {
  background: white;
  padding: 20px;
  margin-bottom: 16px;
  border: 3px solid var(--brown);
  border-radius: 8px;
  border-left: 5px solid var(--secondary);
}

.cookie-category h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  /* Mobile menu visibility */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Card layouts */
  .benefit-card,
  .service-card,
  .membership-card,
  .category-card,
  .goal-card,
  .price-card,
  .special-card,
  .team-member,
  .team-card,
  .trainer-card {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Contact grid */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-form-section,
  .contact-info-section {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .membership-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  #cookie-banner,
  #cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .cta,
  .cta-final {
    background: white;
    border: 2px solid black;
  }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */
*:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

.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;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .benefit-card,
  .service-card,
  .testimonial-card {
    border-width: 4px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}