/* ========================================
   VARIABLES CSS - GUÍA DE ESTILO MAURICE
======================================== */
:root {
  /* Tipografía */
  --maurice-font-h1-family: 'Fraunces', serif;
  --maurice-font-h1-size: 107px;
  --maurice-font-h1-weight: 600;
  
  --maurice-font-h2-family: 'Fraunces', serif;
  --maurice-font-h2-size: 53px;
  --maurice-font-h2-weight: 600;
  
  --maurice-font-h3-family: 'Outfit', sans-serif;
  --maurice-font-h3-size: 32px;
  --maurice-font-h3-weight: 600;
  
  --maurice-font-paragraph-family: 'Outfit', sans-serif;
  --maurice-font-paragraph-size: 20px;
  --maurice-font-paragraph-weight: 400;
  
  --maurice-font-paragraph-bold-family: 'Outfit', sans-serif;
  --maurice-font-paragraph-bold-size: 20px;
  --maurice-font-paragraph-bold-weight: 600;
  
  --maurice-font-button-family: 'Outfit', sans-serif;
  --maurice-font-button-size: 20px;
  --maurice-font-button-weight: 600;
  
  /* Colores */
  --maurice-color-orange: #fc805a;
  --maurice-color-gray: #a0a0a0;
  --maurice-color-gray-light: #f2f2f2;
  --maurice-color-gray-very-light: #f9f8f7;
  --maurice-color-beige: #f0ece6;
  --maurice-color-beige-light: #f4f3f2;
  
  /* Bordes */
  --maurice-border-button: 3px;
  --maurice-border-radius-button: 50px;
}

/* Maurice Hero Banner Shortcode Styles */
.maurice-hero-banner-container {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.maurice-hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.maurice-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.maurice-hero-video,
.maurice-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    background: #000;
}

.maurice-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 4rem 4rem 4rem 8rem;
}

.maurice-hero-text {
    max-width: 50%;
    color: white;
}

.maurice-hero-h1 {
    font-family: var(--maurice-font-h1-family);
    font-size: var(--maurice-font-h1-size);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    text-align: left;
}

.maurice-hero-h2 {
    font-family: var(--maurice-font-h2-family);
    font-size: var(--maurice-font-h2-size);
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    text-align: left;
   
}

.maurice-hero-h3 {
    font-family: var(--maurice-font-h3-family);
    font-size: var(--maurice-font-h3-size);
    font-weight: 600;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    text-align: left;
    opacity: 0.95;
    padding-top: 3.2rem;

}

.maurice-hero-button {
    display: inline-block;
    /* padding: 12px 40px; - Unificado en coffee.css */
    background: var(--maurice-color-orange);
    color: var(--maurice-color-black) !important;
    text-decoration: none !important;
        font-family: var(--maurice-font-button-family);
    font-size: var(--maurice-font-button-size);
    font-weight: 600;
    border-radius: var(--maurice-border-radius-button);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.maurice-hero-button:hover {
    background: var(--maurice-color-orange);
    color: var(--maurice-color-white) !important;
    text-decoration: none;
}

/* Maurice Hero Banner Responsive */
@media (max-width: 1440px) {
    .maurice-hero-banner-container {
        height: 75vh;
        min-height: 450px;
    }
    
    .maurice-hero-content {
        padding: 3rem;
    }
    
    .maurice-hero-h1,
    .maurice-hero-h2 {
        font-size: 80px;
    }
    
    .maurice-hero-h3 {
        font-size: 28px;
    }
    
    .maurice-hero-button {
        font-size: 18px;
        /* padding: 12px 28px; - Unificado en coffee.css */
    }
}

@media (max-width: 1200px) {
    .maurice-hero-banner-container {
        height: 70vh;
        min-height: 400px;
    }
    
    .maurice-hero-content {
        padding: 2.5rem;
    }
    
    .maurice-hero-text {
        max-width: 60%;
    }
    
    .maurice-hero-h1,
    .maurice-hero-h2 {
        font-size: 64px;
    }
    
    .maurice-hero-h3 {
        font-size: 24px;
    }
    
    .maurice-hero-button {
        font-size: 18px;
        /* padding: 12px 28px; - Unificado en coffee.css */
    }
}

@media (max-width: 1024px) {
    .maurice-hero-banner-container {
        height: 65vh;
        min-height: 350px;
    }
    
    .maurice-hero-content {
        padding: 2rem;
    }
    
    .maurice-hero-text {
        max-width: 70%;
    }
    
    .maurice-hero-h1,
    .maurice-hero-h2 {
        font-size: 48px;
    }
    
    .maurice-hero-h3 {
        font-size: 20px;
    }
    
    .maurice-hero-button {
        font-size: 16px;
        /* padding: 12px 28px; - Unificado en coffee.css */
    }
}

@media (max-width: 768px) {
    .maurice-hero-banner-container {
        height: 60vh;
        min-height: 300px;
    }
    
    .maurice-hero-content {
        padding: 1.5rem;
    }
    
    .maurice-hero-text {
        max-width: 80%;
    }
    
    .maurice-hero-h1,
    .maurice-hero-h2 {
        font-size: 36px;
    }
    
    .maurice-hero-h3 {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .maurice-hero-button {
        font-size: 16px;
        /* padding: 12px 28px; - Unificado en coffee.css */
    }
}

@media (max-width: 480px) {
    .maurice-hero-banner-container {
        height: 50vh;
        min-height: 250px;
    }
    
    .maurice-hero-content {
        padding: 1rem;
    }
    
    .maurice-hero-text {
        max-width: 90%;
    }
    
    .maurice-hero-h1,
    .maurice-hero-h2 {
        font-size: 28px;
    }
    
    .maurice-hero-h3 {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .maurice-hero-button {
        font-size: 14px;
        /* padding: 12px 28px; - Unificado en coffee.css */
    }
}

@media (max-width: 375px) {
    .maurice-hero-banner-container {
        height: 45vh;
        min-height: 220px;
    }
    
    .maurice-hero-content {
        padding: 0.75rem;
    }
    
    .maurice-hero-text {
        max-width: 95%;
    }
    
    .maurice-hero-h1,
    .maurice-hero-h2 {
        font-size: 24px;
    }
    
    .maurice-hero-h3 {
        font-size: 14px;
        margin-bottom: 0.75rem;
    }
    
    .maurice-hero-button {
        font-size: 12px;
        /* padding: 12px 28px; - Unificado en coffee.css */
    }
}
