/* Theme Pages Specific Styles */

/* Fix for logo overlapping with title text */
.theme-page .header {
    position: relative;
    z-index: 100;
    background-color: #fff;
    width: 100%;
}

.theme-page .logo {
    display: block;
    max-width: 200px;
    position: relative;
    z-index: 10;
}

.theme-page .logo img {
    max-width: 100%;
    height: auto;
}

/* Ensure theme page header has proper spacing from the navigation */
.theme-page-header {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    padding-top: 60px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-page .logo {
        max-width: 150px;
    }
    
    .theme-page-header {
        padding-top: 40px !important;
    }
}
