/* Shared Branding for GandhiGames */
:root {
    --gandhi-primary: #1a2a6c;
    --gandhi-accent: #fdbb2d;
    --gandhi-text: #ffffff;
    --gandhi-header-bg: rgba(255, 255, 255, 0.95);
}

.gandhi-corner-logo {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: white;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gandhi-accent);
}

.gandhi-corner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gandhi-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gandhi-header-bg);
    color: #333;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    height: 70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    font-family: 'Outfit', sans-serif;
    border-bottom: 3px solid var(--gandhi-accent);
}

.gandhi-header-bar img {
    height: 55px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.gandhi-title-container {
    display: flex;
    flex-direction: column;
}

.gandhi-name {
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--gandhi-primary);
    line-height: 1;
    text-transform: uppercase;
}

.gandhi-slogan {
    font-size: 0.9rem;
    color: #444;
    font-style: italic;
    margin-top: 2px;
}

.gandhi-innovation {
    margin-left: auto;
    font-size: 0.9rem;
    color: #333;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gandhi-accent);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Watermark for "Gandhi Everywhere" */
.gandhi-watermark::before {
    content: "COLEGIO GANDHI";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 8vw;
    font-weight: 900;
    color: white;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

/* Adjust game content to not overlap with header */
.gandhi-margin-top {
    margin-top: 80px !important;
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 600px) {
    .gandhi-header-bar {
        height: 50px;
        padding: 0 15px;
    }

    .gandhi-header-bar img {
        height: 35px;
        margin-right: 10px;
    }

    .gandhi-name {
        font-size: 1rem;
    }

    .gandhi-slogan {
        display: none; /* Hide slogan on phones to save space */
    }

    .gandhi-innovation {
        font-size: 0.7rem;
        padding: 3px 10px;
        letter-spacing: 1px;
    }

    .gandhi-margin-top {
        margin-top: 55px !important;
    }
    
    .gandhi-watermark::before {
        font-size: 12vw; /* Larger scale on mobile for readability */
        opacity: 0.5; /* Slightly more visible if needed */
    }
}

/* TABLET OPTIMIZATIONS */
@media (min-width: 601px) and (max-width: 1024px) {
    .gandhi-header-bar {
        height: 60px;
    }
    
    .gandhi-margin-top {
        margin-top: 65px !important;
    }
}
