/* Ladies Night Web Page Styles */

/* CSS Variables - Ladies Night Color Palette */
:root {
  /* Primary Colors */
  --primary: #da627d;           /* blush - main brand color */
  --primary-dark: #a53860;      /* raspberry-rose - darker variant */
  --secondary: #ffa5ab;         /* salmon-pink - secondary accent */
  --accent: #f9dbbd;           /* light-orange - tertiary accent */
  --chocolate: #450920;        /* chocolate-cosmos - dark brand color */

  /* Backgrounds */
  --background: #ffffff;        /* main background */
  --surface: #fefcfb;          /* card/surface background */
  --surface-elevated: #ffffff; /* elevated surfaces */
  --card-bg: #ffffff;          /* card backgrounds */

  /* Text Colors */
  --text-primary: #450920;     /* main text (chocolate) */
  --text-secondary: #a53860;   /* secondary text (raspberry-rose) */
  --text-inverse: #ffffff;     /* white text on dark backgrounds */
  --text-muted: #8b5a6b;      /* muted/disabled text */

  /* Borders & Status */
  --border: #f0e6e8;          /* subtle borders */
  --border-light: rgba(249, 219, 189, 0.3); /* light borders */
  
  /* Font Families */
  --font-display: Georgia, 'Times New Roman', serif;  /* For headings */
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* For body text */

  /* Font Sizes */
  --font-xs: 12px;
  --font-sm: 13px;
  --font-base: 14px;
  --font-lg: 16px;
  --font-xl: 18px;
  --font-2xl: 22px;
  --font-3xl: 28px;
  --font-4xl: 32px;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --line-tight: 1.2;
  --line-normal: 1.4;
  --line-relaxed: 1.6;

  /* Spacing System (8px Grid) */
  --spacing-1: 4px;   /* 0.25rem */
  --spacing-2: 8px;   /* 0.5rem */
  --spacing-3: 12px;  /* 0.75rem */
  --spacing-4: 16px;  /* 1rem */
  --spacing-5: 20px;  /* 1.25rem */
  --spacing-6: 24px;  /* 1.5rem */
  --spacing-7: 28px;  /* 1.75rem */
  --spacing-8: 32px;  /* 2rem */
  --spacing-10: 40px; /* 2.5rem */
  --spacing-12: 48px; /* 3rem */
  --spacing-16: 64px; /* 4rem */
  --spacing-20: 80px; /* 5rem */
  --spacing-24: 96px; /* 6rem */

  /* Border Radius */
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px; /* Full rounded */
}

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

body {
  font-family: var(--font-body);
  line-height: var(--line-normal);
  color: var(--text-primary);
  background: linear-gradient(135deg, #f9dbbd 0%, #ffa5ab 50%, #da627d 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Container */
.hero-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-6);
}

.content-wrapper {
  background-color: var(--surface);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-12);
  text-align: center;
  box-shadow: 0 4px 6px rgba(69, 9, 32, 0.1);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(254, 252, 251, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* Logo Section */
.logo-section {
  margin-bottom: var(--spacing-8);
}

.logo {
  max-width: 150px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 4px rgba(69, 9, 32, 0.08);
}

/* Hero Content */
.hero-content {
  margin-bottom: var(--spacing-12);
}

.title-large {
  font-family: var(--font-display);
  font-size: var(--font-4xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-6);
  line-height: var(--line-tight);
}

.hero-description {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  line-height: var(--line-relaxed);
  max-width: 450px;
  margin: 0 auto;
}

/* App Store Section */
.app-store-section {
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-8);
}

.download-title {
  font-family: var(--font-display);
  font-size: var(--font-2xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-6);
}

.store-buttons {
  display: flex;
  gap: var(--spacing-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-button {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 9, 32, 0.15);
}

.store-badge {
  height: 60px;
  width: auto;
  display: block;
}

/* Google Play Store badge is smaller by default, so make it larger */
#google-play .store-badge {
  height: 70px;
}

/* Keep Apple App Store badge at standard size */
#app-store .store-badge {
  height: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    padding: var(--spacing-4);
  }
  
  .content-wrapper {
    padding: var(--spacing-8);
  }
  
  .title-large {
    font-size: var(--font-3xl);
  }
  
  .hero-description {
    font-size: var(--font-base);
  }
  
  .logo {
    max-width: 120px;
  }
  
  .store-buttons {
    flex-direction: column;
    gap: var(--spacing-3);
  }
  
  .store-badge {
    height: 50px;
  }
  
  /* Maintain size balance on mobile */
  #google-play .store-badge {
    height: 58px;
  }
  
  #app-store .store-badge {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: var(--spacing-6);
    margin: var(--spacing-2);
  }
  
  .title-large {
    font-size: var(--font-2xl);
  }
  
  .download-title {
    font-size: var(--font-xl);
  }
  
  .logo {
    max-width: 100px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-wrapper {
  animation: fadeIn 0.8s ease-out;
}

.logo {
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-content {
  animation: fadeIn 1s ease-out 0.4s both;
}

.app-store-section {
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Footer Section */
.footer-section {
  margin-top: var(--spacing-8);
  padding-top: var(--spacing-6);
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-3);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--font-sm);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text-secondary);
}

.footer-separator {
  color: var(--border);
  font-size: var(--font-sm);
}

.footer-section {
  animation: fadeIn 1s ease-out 0.8s both;
}