/*
Theme Name: Winter Sky Custom Theme
Theme URI: https://yourdomain.com
Author: Custom Developer
Description: A high-performance, lightweight template optimized for visual drag-and-drop builders. Tailored with a custom elite palette inspired by the Winter Sky Independent Colorguard branding.
Version: 1.3.0
Text Domain: winter-sky-theme
*/

/* Reset & Global Canvas Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BRANDING COLOR PALETTE */
:root {
    --brand-primary: #0a0b10;     /* Deep Cosmic Midnight Black/Blue */
    --brand-royal: #0a14cc;       /* Vibrant Royal Blue from Winter Sky logo */
    --brand-teal: #2bbacb;        /* Electric Teal from the Winter Sky crest */
    --brand-purple: #3d1b6d;      /* Cosmic Nebula Purple accent */
    --brand-silver: #e2e8f0;      /* Crisp Silver/White for text and borders */
    --bg-light: #fdfdfd;          /* Clean white background for page content blocks */
    --text-dark: #1e293b;         /* Readable charcoal text */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Expanded Sticky Header for High-Impact Logos */
.site-header {
    background-color: var(--brand-primary);
    border-bottom: 2px solid var(--brand-teal);
    padding: 28px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.header-container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Designed to hold your uploaded image logo beautifully and make dark text white */
.site-logo img {
    max-height: 75px; 
    width: auto;
    display: block;
    /* This filter automatically converts the dark text to bright white so it pops on the dark header */
    filter: brightness(0) invert(1); 

}

.site-logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--brand-silver);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--brand-teal);
}

/* Full Width Canvas Engine for Drag and Drop */
.winter-sky-builder {
    width: 100%;
}

/* Global Footer Area */
.site-footer {
    background-color: var(--brand-primary);
    color: #64748b;
    padding: 35px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b;
}

.site-footer p {
    color: var(--brand-silver);
    opacity: 0.7;
}

/* Multi-Column Corporate Footer Engine (Buccaneer-Inspired Framework) */
.site-footer {
    background-color: var(--brand-primary);
    color: var(--brand-silver);
    padding: 60px 0 40px 0;
    border-top: 3px solid var(--brand-purple); /* Cosmic purple accent divider bar */
    font-size: 0.95rem;
}

.footer-container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1f2029;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--brand-silver);
    opacity: 0.75;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-teal);
    opacity: 1;
    padding-left: 4px; /* Subtle responsive shift on hover */
}

/* Bottom Visual Showcase Base */
.footer-bottom {
    max-width: 1240px;
    margin: 40px auto 0 auto;
    text-align: center;
}

.footer-brand-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* 
   Placeholder circle engine designed to elegantly frame the 
   dimensions of your custom Winter Sky (14).jpg circle nebula logo. 
*/
.footer-nebula-logo {
width: 90px;
       height: 90px;
       border-radius: 50%;
       border: 2px solid var(--brand-teal);
       background-image: url('https://winterskycg.org/wp-content/uploads/2026/05/Untitled-design-27.png');
       background-size: cover;
       background-position: center;
       opacity: 0.9;
       box-shadow: 0 0 15px rgba(43, 186, 203, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--brand-silver);
    opacity: 0.5;
    letter-spacing: 0.5px;
}
/* ==========================================
   MOBILE NAVIGATION STYLES
   ========================================== */

/* Hide the hamburger button by default on Desktop */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 9999;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff; /* White bars to match your text */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Breakpoint: Screens smaller than 768px */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show the hamburger button now */
    }

    /* Hide the main menu off-screen by default on mobile */
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%; /* Sits right below the main header bar */
        left: 0;
        width: 100%;
        background-color: #0a0b10; /* Your deep midnight black */
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    /* Stack menu links vertically on mobile */
    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    /* When the menu has the "toggled" class, reveal it! */
    .main-navigation.toggled {
        display: block;
    }
}