/* Page Options Styles */

/* Body styles when header is hidden */
body.no-header {
    padding-top: 0 !important;
}

/* Content wrapper adjustments for pages without header */
.no-header .wrapper,
.no-header .site-main,
.no-header .main-content-wrapper {
    margin-top: 0;
}

/* Smooth transition for content when header is toggled */
.wrapper,
.site-main,
.main-content-wrapper {
    transition: margin-top 0.3s ease-in-out;
}

/* Page title hidden styles */
.entry-header.hidden {
    display: none;
}

/* Full-width content when header is hidden */
.no-header .container-main {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Hero section styles for pages without header */
.no-header .hero-section {
    margin-top: 0;
    padding-top: 2rem;
}

/* Ensure proper spacing for pages without title */
.entry-content.no-title {
    padding-top: 2rem;
}

/* Mobile adjustments for pages without header */
@media (max-width: 768px) {
    .no-header .container-main {
        padding: 1rem;
    }
    
    .no-header .entry-content {
        padding: 1rem 0;
    }
}

/* Ensure footer stays at bottom for pages without header */
body.no-header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.no-header .site-main {
    flex: 1;
}
