/*
Theme Name: Rarus Marcenaria
Theme URI: https://rarusmarcenaria.com.br
Author: Rarus
Author URI: https://rarusmarcenaria.com.br
Description: Tema minimalista FSE (Full Site Editing) para Rarus Marcenaria - Móveis sob medida em Belo Horizonte. Tema de blocos completo com suporte a editor de site, block patterns personalizados, custom post type para portfólio e design moderno.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rarus
Tags: full-site-editing, block-patterns, custom-colors, custom-logo, custom-menu, editor-style, featured-images, portfolio, one-column, wide-blocks, block-styles
*/

/* ========================================
   Reset e Base
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-background: #ffffff;
  --color-foreground: #000000;
  --color-muted: #666666;
  --color-border: #e5e5e5;
  --color-secondary: #f5f5f5;
  --font-main: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-main);
  color: var(--color-foreground);
  background-color: var(--color-background);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

a {
  color: var(--color-foreground);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Container & Layout
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 calc((100vw - 1200px) / 2);
    max-width: 100%;
  }
}

/* Wide container for full-width sections */
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container-wide {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container-wide {
    padding: 0 4rem;
  }
}

/* ========================================
   WordPress Block Editor Overrides
======================================== */
.wp-block-group.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .wp-block-group.container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .wp-block-group.container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1440px) {
  .wp-block-group.container {
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: calc((100vw - 1200px) / 2);
    max-width: 100%;
  }
}

/* WordPress alignwide and alignfull */
.alignwide {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* ========================================
   Header
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header-container {
    padding: 1rem 3rem;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 1rem 4rem;
  }
}

@media (min-width: 1440px) {
  .header-container {
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: calc((100vw - 1200px) / 2);
    max-width: 100%;
  }
}

.wp-block-site-logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 769px) {
  .wp-block-site-logo img {
    height: 50px;
  }
}

/* Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  width: 24px;
  height: 2px;
  background-color: var(--color-foreground);
  position: relative;
  transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-foreground);
  transition: var(--transition);
}

.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }

.menu-open .menu-icon {
  background-color: transparent;
}

.menu-open .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-open .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Desktop Navigation - FSE */
.wp-block-navigation.desktop-navigation {
  display: none;
}

@media (min-width: 769px) {
  .wp-block-navigation.desktop-navigation {
    display: block;
  }
  
  .wp-block-navigation.desktop-navigation .wp-block-navigation__container {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .wp-block-navigation.desktop-navigation .wp-block-navigation-item__content {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-foreground);
    position: relative;
  }
  
  .wp-block-navigation.desktop-navigation .wp-block-navigation-item__content::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-foreground);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .wp-block-navigation.desktop-navigation .wp-block-navigation-item__content:hover::after,
  .wp-block-navigation.desktop-navigation .current-menu-item .wp-block-navigation-item__content::after {
    transform: scaleX(1);
  }
  
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation - FSE */
.wp-block-navigation.mobile-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.wp-block-navigation.mobile-navigation.active {
  display: block;
}

.wp-block-navigation.mobile-navigation .wp-block-navigation__container {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  flex-direction: column;
}

.wp-block-navigation.mobile-navigation .wp-block-navigation-item {
  margin-bottom: 1rem;
}

.wp-block-navigation.mobile-navigation .wp-block-navigation-item__content {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.wp-block-navigation.mobile-navigation .wp-block-navigation-item__content:hover,
.wp-block-navigation.mobile-navigation .current-menu-item .wp-block-navigation-item__content {
  color: var(--color-foreground);
}

/* ========================================
   Main Content
======================================== */
.site-main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

/* ========================================
   Page Hero Section
======================================== */
.page-hero {
  padding: 5rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.5rem;
  }
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   Home Hero Section
======================================== */
.home-hero {
  padding: 5rem 0 8rem;
  background-color: var(--color-background);
}

.hero-content-wrapper {
  max-width: 900px;
}

.hero-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-foreground);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.hero-location svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   Hero Image Section
======================================== */
.hero-image-section {
  padding: 0 0 4rem;
}

.hero-image-container {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Buttons
======================================== */
.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  border-radius: 0;
}

.btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

.btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

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

.btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  opacity: 1;
}

.btn-cta {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

.btn-cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* ========================================
   Features Section
======================================== */
.features-section {
  padding: 5rem 0 8rem;
  background-color: rgba(0, 0, 0, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  background-color: var(--color-background);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  stroke: var(--color-foreground);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ========================================
   About Section (Home)
======================================== */
.about-section {
  padding: 6rem 0;
  background-color: var(--color-background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-image-wrapper {
    height: 500px;
  }
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 0;
}

@media (min-width: 1024px) {
  .about-content {
    padding: 0 2rem;
  }
}

.about-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
}

.about-description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ========================================
   Portfolio Section
======================================== */
.portfolio-grid,
.wp-block-post-template.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .portfolio-grid,
  .wp-block-post-template.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid,
  .wp-block-post-template.portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-item {
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item h3 {
  margin-top: 1rem;
}

/* ========================================
   About Page - New Design
======================================== */

/* Section Label */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

/* Hero Section - Nossa História */
.about-hero-section {
  padding: 6rem 2rem 4rem;
}

@media (min-width: 768px) {
  .about-hero-section {
    padding: 8rem 3rem 6rem;
  }
}

@media (min-width: 1024px) {
  .about-hero-section {
    padding: 10rem 4rem 6rem;
  }
}

.about-hero-columns {
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .about-hero-columns {
    gap: 4rem;
  }
}

.about-hero-content {
  padding-top: 2rem;
}

.about-main-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .about-main-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-main-title {
    font-size: 3rem;
  }
}

.title-separator {
  width: 60px;
  border-top: 1px solid var(--color-border);
  margin: 1.5rem 0;
}

.about-intro-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-hero-image {
  overflow: hidden;
}

.hero-image-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-image-main img {
    height: 600px;
  }
}

/* Dark Section - Momento Rarus */
.about-dark-section {
  padding: 5rem 2rem;
  background-color: var(--color-foreground) !important;
  color: var(--color-background) !important;
}

@media (min-width: 768px) {
  .about-dark-section {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .about-dark-section {
    padding: 8rem 4rem;
  }
}

.momento-rarus-columns {
  gap: 3rem;
}

@media (min-width: 768px) {
  .momento-rarus-columns {
    gap: 4rem;
  }
}

.momento-title {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--color-background);
}

@media (min-width: 768px) {
  .momento-title {
    font-size: 2rem;
  }
}

.momento-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.stats-intro-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-background);
}

.stats-intro-text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.stats-boxes {
  gap: 1rem;
}

.stat-box {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
  color: var(--color-background);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* Values Section */
.about-values-section {
  padding: 5rem 2rem;
}

@media (min-width: 768px) {
  .about-values-section {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .about-values-section {
    padding: 8rem 4rem;
  }
}

.values-main-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .values-main-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

.values-main-title strong {
  font-weight: 500;
}

.values-grid {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    gap: 2rem;
  }
}

.value-card {
  background-color: var(--color-secondary);
  padding: 2rem 1.5rem;
  text-align: center;
}

.value-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-foreground);
  color: var(--color-background);
  font-size: 1.25rem;
  border-radius: 4px;
}

.value-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.value-description {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Legacy About Page Styles */
.about-page-section {
  padding: 4rem 0;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-page-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-page-image {
    height: 600px;
    position: sticky;
    top: 100px;
  }
}

.about-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-page-content h2:first-child {
  margin-top: 0;
}

.about-page-content p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ========================================
   Contact Page
======================================== */
.contact-page-content {
  padding: 4rem 0;
}

.contact-grid {
  gap: 4rem;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item h3 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-info-link {
  font-size: 1rem;
  color: var(--color-foreground);
  font-weight: 300;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.7;
}

.contact-address {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.7;
}

.contact-social-links p {
  margin-bottom: 0.5rem;
}

.contact-social-link {
  font-size: 1rem;
  color: var(--color-foreground);
  font-weight: 300;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  background-color: var(--color-foreground);
  color: var(--color-background);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-section-title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--color-background);
}

.footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 1rem;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

/* Contact Form in Footer */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-background);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 300;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-background);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background-color: var(--color-background);
  color: var(--color-foreground);
  padding: 0.875rem 2rem;
  border: none;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.wp-block-social-links.social-links {
  display: flex;
  gap: 1.5rem;
}

.wp-block-social-links.social-links a {
  color: var(--color-background);
  transition: var(--transition);
}

.wp-block-social-links.social-links a:hover {
  opacity: 0.7;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* ========================================
   Block Pattern Specific Styles
======================================== */
.rarus-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

.rarus-contact-form .form-group input,
.rarus-contact-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-foreground);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 300;
  transition: var(--transition);
}

.rarus-contact-form .form-group input::placeholder,
.rarus-contact-form .form-group textarea::placeholder {
  color: var(--color-muted);
}

.rarus-contact-form .form-group input:focus,
.rarus-contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-foreground);
}

/* ========================================
   WordPress Core Block Overrides
======================================== */
.wp-block-cover {
  min-height: 100vh;
}

.wp-block-columns.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image img {
  border-radius: 0;
}

.wp-block-separator {
  border-color: var(--color-border);
}

.wp-block-quote {
  border-left: 2px solid var(--color-foreground);
  padding-left: 1.5rem;
  font-style: italic;
}

/* ========================================
   Utility Classes
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   Responsive Utilities
======================================== */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ========================================
   Editor Styles
======================================== */
.editor-styles-wrapper {
  font-family: var(--font-main);
  color: var(--color-foreground);
  line-height: 1.6;
}

.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
  font-family: var(--font-main);
  font-weight: 300;
  letter-spacing: 0.05em;
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}
