    

/* Definición de la fuente */
@font-face {
    font-family: 'ProvidenceSans';
    /*src: url('https://www.bodaferyleon.com/static/fuente/fuente.ttf') format('truetype'); */
    src: url('fuente/fuente.ttf') format('truetype');

    font-weight: normal;
    font-style: normal;
}

    
    /* Reset minimalista */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'ProvidenceSans', sans-serif;
        background: #f3f1e8; /* Fondo blanco puro */
        color: #333333;
        line-height: 1.6;
    }
    
    /* Contenedor principal */
    .main-content {
        max-width: 100%;
    }
    
    /* Sección de imagen */
    .image-section {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-align: center;
    }
    
    /* Contenedor de imagen optimizado para PNG */
    .image-container {
        max-width: 90%;
        margin-bottom: 10px;
    }
    
    .image-container img {
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        display: block;
        margin: 0 auto;
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    }
    
    /* Texto directo sobre el fondo */
    .image-caption {
        max-width: 800px;
        padding: 0 20px;
    }
    
    .image-caption h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        font-weight: 500;
        color: #222222;
    }
    
    .image-caption p {
        font-size: 1.1rem;
        color: #555555;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .image-section {
            min-height: auto;
            padding: 60px 20px;
        }
        
        .image-caption h2 {
            font-size: 1.8rem;
        }
        
        .image-caption p {
            font-size: 1rem;
        }
    }