/* Frontend Page Builder Styles */
.spb-page-content {
    width: 100%;
}

.spb-section {
    width: 100%;
    padding: 40px 0;
}

.spb-heading {
    font-family: 'League Gothic', sans-serif;
    color: #F5E6D3;
    margin: 20px 0;
}

.spb-heading.h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

.spb-heading.h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.spb-heading.h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.spb-text {
    color: #D4638D;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 15px 0;
}

.spb-image {
    margin: 20px 0;
}

.spb-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.spb-image.align-center {
    text-align: center;
}

.spb-image.align-left img {
    margin-right: auto;
}

.spb-image.align-right img {
    margin-left: auto;
}

.spb-button {
    display: inline-block;
    padding: 15px 40px;
    background: #D4638D;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 15px 0;
}

.spb-button:hover {
    background: #F26430;
    transform: translateY(-2px);
}

.spb-spacer {
    display: block;
}

.spb-empty-message {
    text-align: center;
    padding: 100px 20px;
    color: #999;
    font-size: 18px;
}

/* Container Widths */
.spb-container-full {
    width: 100%;
    max-width: 100%;
}

.spb-container-boxed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .spb-section {
        padding: 30px 0;
    }
    
    .spb-text {
        font-size: 1rem;
    }
    
    .spb-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}