/* ===============================================
   WBC COMING SOON PAGE STYLES
   =============================================== */

/* CSS Custom Properties - WBC Brand Colors */
:root {
  /* WBC Green Palette */
  --wbc-green-50: #f0fdf4;
  --wbc-green-100: #dcfce7;
  --wbc-green-200: #bbf7d0;
  --wbc-green-300: #86efac;
  --wbc-green-400: #4ade80;
  --wbc-green-500: #22c55e;
  --wbc-green-600: #16a34a;
  --wbc-green-700: #15803d;
  --wbc-green-800: #166534;
  --wbc-green-900: #14532d;
  --wbc-green-950: #052e16;

  /* WBC Golden Palette */
  --wbc-golden-50: #FFFBEB;
  --wbc-golden-100: #FEF3C7;
  --wbc-golden-200: #FDE68A;
  --wbc-golden-300: #FCD34D;
  --wbc-golden-400: #FBBF24;
  --wbc-golden-500: #F59E0B;
  --wbc-golden-600: #D97706;
  --wbc-golden-700: #B45309;
  --wbc-golden-800: #92400E;
  --wbc-golden-900: #78350F;

  /* Neutral Palette */
  --wbc-neutral-50: #FAFAFA;
  --wbc-neutral-100: #F6F6F6;
  --wbc-neutral-200: #E5E5E5;
  --wbc-neutral-300: #D4D4D4;
  --wbc-neutral-400: #A3A3A3;
  --wbc-neutral-500: #737373;
  --wbc-neutral-600: #525252;
  --wbc-neutral-700: #404040;
  --wbc-neutral-800: #262626;
  --wbc-neutral-900: #171717;
  --wbc-neutral-950: #0A0A0A;

  /* Typography */
  --font-primary: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-secondary: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-small: 0.875rem;
  --font-size-body: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  --font-size-hero: 2.5rem;
  --font-size-giant: 4rem;
}

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

body {
  font-family: var(--font-primary);
  background: var(--wbc-neutral-100);
  color: black;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Improve mobile touch performance */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Container */
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 400px;
  background-image: url('img/coming_soon.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: repeat-x;
  background-color: var(--wbc-green-950);
}

/* Brand Header */
.brand-header {
  margin-bottom: 3rem;
}

.brand-name {
  font-family: var(--font-secondary);
  font-size: var(--font-size-giant);
  font-weight: 700;
  letter-spacing: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
  color: white;
}

.brand-url {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--wbc-golden-300);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Coming Soon Text */
.coming-soon-text {
  position: relative;
}

.coming-soon-title {
  font-family: var(--font-secondary);
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 12px;
  color: var(--wbc-golden-400);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: -1rem;
  line-height: 0.9;
}

.coming-soon-subtitle {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Bottom Section */
.bottom-section {
  background: var(--wbc-green-950);
  padding: 2rem 0;
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.bottom-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wbc-logo {
  width: auto;
  max-width: 200px;
}

.center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.center-content h1 {
  font-size: 88px;
  color: #894823;
  line-height: 96px;
  font-family: var(--font-secondary);
}

.center-content h2 {
  font-size: 18px;
  color: #1A1A1A;
  font-family: var(--font-primary);
  font-weight: bolder;
}

/* Social Section */
.social-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.follow-text {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: black;
  margin: 0;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: black;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  color: #cccccc;
  transform: scale(1.1);
}

.social-link i {
  font-size: 24px;
  color: currentColor;
}

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

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

@keyframes glow {
  0%, 100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  50% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.6);
  }
}

/* Apply Animations */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

.coming-soon-title {
  animation: glow 3s ease-in-out infinite;
}

/* Remove background animation to match design */

/* Loading State (Optional Enhancement) */
.loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wbc-green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--wbc-green-600);
  border-top: 4px solid var(--wbc-golden-400);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}