
/* Hero Banner Frame Styles */
.hero-frame-container {
    width: 100%;
    height: 350px; /* Match sidebar height */
    position: relative;
    margin-bottom: 25px;
    background: url('../images/update-bg.png') no-repeat center center/cover;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    overflow: hidden;
    border: 2px solid #fcd193;
}

.hero-frame-inner {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-frame-inner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(252, 209, 147, 0.5);
    pointer-events: none;
}

.hero-frame-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hero-frame-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(252, 209, 147, 0.3));
    animation: flame-pulse 3s infinite alternate;
}

.hero-frame-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #fcd193;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.hero-frame-text p {
    font-family: var(--font3);
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}

.edit-hero-btn {
    margin-top: 15px;
    font-size: 12px;
}
