/*
 * Rankmeld Theme Styles
 * Main frontend styles
 */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(255, 107, 107, 0.3);
    color: #0a1628;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* Entry content styles */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid #ff6b6b;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(10, 22, 40, 0.7);
}

.entry-content img {
    border-radius: 16px;
    margin: 2rem 0;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #ff6b6b;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Admin bar fix */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .scroll-cue,
    .automation-btn,
    .form-submit {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
