/*
Theme Name: Viva Magenta v1
Description: Plantilla WordPress para Viva Magenta - Organización de Bodas (Arquitectura Modular)
Version: 1.0.0
Author: Juan Carlos Maceras
Text Domain: viva-magenta

This is the main stylesheet for the modular Viva Magenta theme.
All styles have been organized into logical modules in the assets/css/ directory.
This file contains only the critical styles needed for the theme to function.
*/

/* ==========================================================================
   CRITICAL STYLES
   The main styles are now organized in modular files for better maintainability.
   This file contains only essential styles for the theme to function properly.
   ========================================================================== */

/* CSS Variables */
:root {
  --primary-color: #d63384;
  --primary-dark: #b02a5b;
  --secondary-color: #f8f9fa;
  --accent-color: #ffc107;
  --text-dark: #212529;
  --text-light: #6c757d;
  --text-white: #ffffff;
  --background-light: #ffffff;
  --background-gray: #f8f9fa;
  --border-color: #e9ecef;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --header-height: 80px;
  --section-padding: 90px 0;
  --container-max-width: 1200px;
  --border-radius: 8px;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --z-header: 1000;
  --z-mobile-menu: 999;
  --z-hero-content: 3;
  --z-hero-overlay: 2;
  --z-hero-media: 1;
}

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

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  margin: 0;
  padding: 0;
  padding-top: var(--header-height);
  min-height: 100vh;
  margin-bottom: 0;
  padding-bottom: 0;
}

body.contact-page,
body.page-template-page-contacto {
  padding-top: var(--header-height) !important;
  padding-bottom: 0 !important;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   NOTICE FOR DEVELOPERS
   
   This theme uses a modular CSS architecture. The complete styles are located in:
   
   - assets/css/partials/     (Variables, reset, typography, layout)
   - assets/css/components/   (Buttons, cards, forms)
   - assets/css/sections/     (Header, hero, footer, etc.)
   - assets/css/responsive/   (Tablet, mobile, animations)
   
   To load the complete modular styles, you can either:
   1. Include them via the theme's enqueue system (recommended)
   2. Import them manually if needed
   
   The modular approach provides:
   - Better organization and maintainability
   - Easier debugging and development
   - Improved performance through selective loading
   - Better team collaboration
   ========================================================================== */
