/* Tarambana Banner Block Styles - Estructura fija basada en la imagen */

/* Main Banner Container */
.tarambana-banner {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    clear: both;
    position: relative;
    box-sizing: border-box;
    background-color: #f5f5f5;
    padding: 0 30px 20px 30px;
    margin: 20px 0;
    border-radius: 8px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    z-index: 1;
}

/* Force full width background */
.tarambana-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 100%;
    background-color: #f5f5f5;
    z-index: -1;
    border-radius: 8px;
}

/* Full width support for WordPress themes */
.tarambana-banner.alignfull,
.wp-block-tarambana-banner.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.banner-inner-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

/* Logo Section */
.banner-logo {
    flex: 0 0 150px;
    text-align: center;
    padding-top: 20px;
}

.banner-logo .logo-image {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.banner-logo .logo-placeholder {
    width: 150px;
    height: 150px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
}

/* Content Section */
.banner-content {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    padding-top: 30px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.banner-availability {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.banner-description {
    color: #555;
    line-height: 1.5;
}

.banner-button, .wp-element-button{
    color:#ffffff;
    background-color:#000000;
    border-radius:0;
    display:inline-block;
    margin:auto;
    font-weight:bold;
    font-size:var(--wp--preset--font-size--normal);
    font-family:var(--wp--preset--font-family--manrope);
    height:auto;
    text-align:center;
    box-shadow:none;
    line-height:30px;
    border:none;
    padding:10px 30px;
    -webkit-transition:all 0.5s ease-in-out;
    -moz-transition:all 0.5s ease-in-out;
    -ms-transition:all 0.5s ease-in-out;
    -o-transition:all 0.5s ease-in-out;
    transition:all 0.5s ease-in-out;
    cursor:pointer;
    text-decoration:none;
}

.banner-button:hover, .wp-element-button:hover{
    background-color:#7a7a7a;
}


/* Tags Section */
.banner-tags {
    flex: 0 0 200px;
    text-align: center;
}

.banner-tags .tags-image {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.banner-tags .tags-placeholder {
    width: 200px;
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
}

/* Editor Styles */
.tarambana-banner-editor {
    width: 100%;
    box-sizing: border-box;
}

/* Ensure ServerSideRender content displays correctly in editor */
.tarambana-banner-editor .wp-block-tarambana-banner,
.tarambana-banner-editor .tarambana-banner {
    margin: 0;
}

.tarambana-banner-preview {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tarambana-banner .banner-inner-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }
    
    .tarambana-banner .banner-content {
        text-align: center;
        max-width: 100%;
        min-height: auto;
    }
    
    .tarambana-banner .banner-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tarambana-banner {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .tarambana-banner .banner-title {
        font-size: 1.8rem;
    }
    
    .tarambana-banner .banner-description {
        font-size: 0.9rem;
    }
    
    .tarambana-banner .banner-logo {
        width: 80px;
        height: 80px;
    }
    
    .tarambana-banner .banner-tags {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .tarambana-banner {
        padding: 15px 10px;
        margin: 10px 0;
    }
    
    .tarambana-banner .banner-title {
        font-size: 1.5rem;
    }
    
    .tarambana-banner .banner-availability {
        font-size: 1rem;
    }
    
    .tarambana-banner .banner-description {
        font-size: 0.85rem;
    }
}