/**
 * Minimalist Homepage Styles - Lori-Beth Motta
 * Version: 4.0 - Clean, Simple, Standard Block Editor
 */

/* ============================================
   VARIABLES
   ============================================ */

:root {
  --color-primary: #667eea;
  --color-secondary: #764ba2;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --color-bg: #ffffff;
  --color-bg-alt: #f9fafb;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  --transition: 0.2s ease;
}

/* ============================================
   GLOBAL OVERRIDES
   ============================================ */

.home .entry-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.home .site-main {
  margin: 0;
  padding: 0;
}

.home .content-wrapper {
  max-width: 100%;
  padding: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.home h1,
.home h2,
.home h3,
.home h4 {
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.home h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.home h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.home h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.home h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.home p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light);
  font-weight: 300;
}

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

.home .hero-minimal {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%) !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.home .hero-minimal .wp-block-cover__background {
  opacity: 0.1 !important;
}

.home .hero-minimal h1,
.home .hero-minimal p {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home .hero-minimal h1 {
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.home .hero-minimal p {
  font-weight: 300;
  opacity: 0.95;
}

/* ============================================
   CONTENT CONTAINERS
   ============================================ */

.home .wp-block-columns.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.home .wp-block-column {
  padding: 2rem 1.5rem;
  transition: transform var(--transition);
}

.home .wp-block-column:hover {
  transform: translateY(-4px);
}

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

.home .wp-block-spacer {
  margin: 0 !important;
}

.home .entry-content > .wp-block-heading {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.home .entry-content > .wp-block-paragraph {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

/* ============================================
   SEPARATOR
   ============================================ */

.home .wp-block-separator {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--color-border);
  opacity: 0.4;
}

/* ============================================
   BUTTONS
   ============================================ */

.home .wp-block-button {
  margin-top: 1.5rem;
}

.home .wp-block-button__link {
  border-radius: 2px;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-decoration: none;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.home .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.home .wp-block-button__link:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* ============================================
   HEADER CUSTOMIZATION
   ============================================ */

.home .site-header .logo,
.home .site-header .site_branding,
.home .site-header h1 {
  display: none !important;
}

.home .site-header .LgoNav-Strip {
  justify-content: center;
}

.home .site-header .RightNavMenu {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.home .site-header nav#main-navigation {
  text-align: center;
}

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

.home .copyrigh-wrapper {
  background: var(--color-bg-alt);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

.home .copyrigh-wrapper p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0;
}

.home .copyrigh-wrapper .left,
.home .copyrigh-wrapper .right {
  display: none;
}

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

@media (max-width: 782px) {
  .home .wp-block-columns.alignwide {
    padding: 0 1rem;
  }

  .home .wp-block-column {
    padding: 1.5rem 0.5rem;
  }

  .home .entry-content > .wp-block-heading,
  .home .entry-content > .wp-block-paragraph {
    padding: 0 1rem;
  }

  .home .hero-minimal {
    min-height: 50vh !important;
  }
}

@media (max-width: 600px) {
  .home .wp-block-columns {
    flex-direction: column;
  }

  .home .wp-block-column {
    flex-basis: 100% !important;
    margin-left: 0 !important;
  }

  .home .hero-minimal {
    min-height: 40vh !important;
  }

  .home .wp-block-button__link {
    padding: 0.75rem 2rem;
  }
}

/* ============================================
   BLOCK EDITOR
   ============================================ */

.block-editor-block-list__layout .hero-minimal {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.block-editor-block-list__layout .hero-minimal h1,
.block-editor-block-list__layout .hero-minimal p {
  color: #ffffff;
}

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

.home .wp-block-button__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   PRINT
   ============================================ */

@media print {
  .home .hero-minimal {
    background: none !important;
    color: var(--color-text) !important;
  }

  .home .hero-minimal h1,
  .home .hero-minimal p {
    color: var(--color-text) !important;
    text-shadow: none !important;
  }

  .home .wp-block-button {
    display: none;
  }
}
