/* ==========================================================================
   The Master Framer - Ultra-Minimalist Unified Page Stylesheet
   Domain: www.themasterframer.com
   ========================================================================== */

/* Design Tokens */
:root {
  --bg-black: #000000;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --accent-gold: #d97706;
  --accent-gold-light: #fbbf24;
  
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Single Unified Container - Centralized for all screens, NO outer card borders */
.single-container {
  width: 100%;
  max-width: 680px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--bg-black);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.2rem;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Hero Section (Logo + Pre-faded Illustration in One Seam-Free Flow) */
.blended-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
}

/* Top Logo Zone - Pure Black Canvas */
.logo-zone {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 1rem 0;
  background: var(--bg-black);
}

.brand-logo {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.9));
}

/* House Illustration Zone - Direct Pre-Faded Image */
.illustration-zone {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-top: -0.25rem;
  overflow: hidden;
  background-color: var(--bg-black);
}

.house-illustration {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Slogan & Text Section */
.slogan-section {
  width: 100%;
  max-width: 580px;
  margin-bottom: 2.25rem;
  padding: 0 0.5rem;
}

.main-slogan {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.65;
}

/* Social Links Section */
.social-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 500px;
  justify-content: center;
}

.social-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

/* YouTube Hover Effect */
.social-btn.youtube:hover {
  background: rgba(255, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(255, 0, 0, 0.4);
}

.social-btn.youtube:hover .social-icon {
  transform: scale(1.15);
  color: #ff0000;
}

/* Instagram Hover Effect */
.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(225, 48, 108, 0.4);
}

.social-btn.instagram:hover .social-icon {
  transform: scale(1.15);
  color: #e1306c;
}

/* TikTok Hover Effect */
.social-btn.tiktok:hover {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(0, 242, 254, 0.35);
}

.social-btn.tiktok:hover .social-icon {
  transform: scale(1.15);
  color: #00f2fe;
}

/* Footer Section */
.page-footer {
  margin-top: 2.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.brand-name {
  color: var(--text-secondary);
  font-weight: 600;
}

.domain-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-family: monospace;
}

/* Keyframe Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (max-width: 580px) {
  .single-container {
    padding: 1.75rem 1rem 2.5rem 1rem;
  }

  .main-slogan {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 0.88rem;
  }

  .social-links {
    flex-direction: column;
    width: 100%;
  }

  .social-btn {
    width: 100%;
  }

  .brand-logo {
    max-width: 100%;
  }
}