/*
Theme Name: Blue Sands Academy
Theme URI: https://tutapis.com
Author: Tutapis
Author URI: https://tutapis.com
Description: A WordPress theme conversion of the Blue Sands Academy HTML template with full Tailwind styling and dynamic content support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blue-sands-academy
Tags: education, responsive-layout, custom-background, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
    --primary: #1A81E8;
    --primary-dark: #106ebc;
    --surface-main: #003058;
    --surface-card: #303D48;
    --surface-light: #354552;
    --text-base: #ffffff;
    --text-muted: #9CA3AF;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    color: var(--text-base);
    background-color: var(--surface-main);
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
}

main {
    padding: 0 1.5rem;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer {
    background-color: #021c2f;
    color: var(--text-muted);
    padding: 3rem 1.5rem;
}

.site-footer a {
    color: #ffffff;
}

.theme-button {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0.65rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

.theme-button:hover {
    background-color: var(--primary-dark);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: #ffffff;
    padding: 0.5rem 1rem;
    z-index: 999;
}

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