/* Import Components */
@import url('components.css');

/* ===== VARIABLES ===== */
:root {
    /* Main Colors */
    --primary-color: #1a365d;       /* Azul marino profundo */
    --secondary-color: #2b6cb0;     /* Azul brillante */
    --accent-color: #f6ad55;        /* Amarillo dorado */
    --accent-hover: #f6c17a;
    --success-color: #48bb78;       /* Verde esmeralda */
    
    /* Text Colors */
    --text-color: #2d3748;          /* Gris oscuro */
    --text-light: #718096;          /* Gris medio */
    --text-lighter: #a0aec0;        /* Gris claro */
    --text-on-dark: #f7fafc;        /* Blanco roto */
    
    /* Backgrounds */
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    --card-bg: #ffffff;
    --overlay: rgba(0, 0, 0, 0.5);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --black: #000000;
    --overlay: rgba(0, 0, 0, 0.7);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playwrite US Trad', cursive;
    --font-handwriting: 'Dancing Script', cursive;
    
    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

/* Import Playwrite from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Trad:wght@400&display=swap');

/* Import Playwrite USA Traditional */
@font-face {
    font-family: 'Playwrite US Trad';
    src: url('https://fonts.gstatic.com/s/playwriteustrad/v2/5h1DiZ5p1fi8h0G07e7wVdffXDKfQcG-yslN2vwu.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure full viewport height for sections */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Center content in sections */
.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    position: relative;
}

/* Text contrast for better readability */
.hero-content,
.section-header,
.about-content,
.contact-content {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Ensure text is visible on background images */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

p, .hero-text, .subtitle {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-great-vibes), cursive;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: none;
    color: var(--text-primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

h2 {
    font-size: 3.5rem;
    position: relative;
    display: inline-block;
    margin: 1.5rem 0;
    line-height: 1.1;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--wine-red);
    margin: 0 auto;
    opacity: 0.7;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

section {
    padding: 6rem 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    position: relative;
}

.divider:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: var(--secondary-color);
    right: -40px;
    top: 0;
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

    /* Seccion Home */
#inicio{
    margin-top: 9rem;
}
.col-lg-5 {
    margin-top: 2rem;
}
.mb-4 {
    color: var(--text-on-dark)
}
.btn-primary {
    margin-top: 2rem;
}