/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400&display=swap');


/* ===== BODY ===== */

body{
    margin:0;
    font-family:"Segoe UI Variable", "Segoe UI", Tahoma, sans-serif;
    font-size:14px;
    color:#003366;

    background:
        linear-gradient(
            180deg,
            rgba(216,255,255,0.45),
            rgba(157,245,209,0.45)
        ),
        url("https://jazzs.neocities.org/Pictures/perfect_hue_20.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    background-repeat:no-repeat;
}



/* ===== SITE WIDTH ===== */

.site-container{
    max-width:1000px;
    margin:0 auto;
    padding:20px;
}



/* ===== HEADER / BANNER ===== */

header{

    padding:1px 20px;
 
    min-height:140px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.55),
            rgba(180,245,255,0.55)
        ),
        url("https://jazzs.neocities.org/Pictures/JazzBanner.png");

    background-size:cover;
    background-position:center;

    border-radius:35px;

    box-shadow:
        inset 0 3px 15px rgba(255,255,255,0.9),
        inset 0 -10px 25px rgba(0,180,255,0.2),
        0 8px 20px rgba(0,120,200,0.25);

    text-align:center;

    margin-bottom:30px;

    position:relative;

    overflow:hidden;

    display:flex;
    flex-direction:column;
    justify-content:center;
}



/* glossy shine */

header::before{

    content:"";
    position:absolute;
    top:-70px;
    left:15%;
    width:70%;
    height:100px;

    background:
    radial-gradient(
        ellipse,
        rgba(255,255,255,0.95),
        transparent 70%
    );
}





/* ===== HEADER TITLE ===== */

header h1{

    position:relative;
    z-index:1;

    margin:0;

    font-size:3.2em;

    font-family:"DynaPuff", cursive;

    letter-spacing:1px;

    color:#0077cc;

    text-shadow:
        0 2px 0 white,
        0 0 15px #7deaff;
}



/* ===== MENU ===== */

.navbar{

    margin-bottom:20px;

    background:
    linear-gradient(
        to bottom,
        rgba(255,255,255,0.75),
        rgba(235,250,255,0.45)
    );

    border-radius:20px;

    box-shadow:
        inset 0 1px 10px rgba(255,255,255,0.9),
        inset 0 -2px 10px rgba(0,180,255,0.15),
        0 5px 12px rgba(0,0,0,0.12);
}



.navbar ul{

    list-style:none;
    margin:0;
    padding:12px;

    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}



.navbar a{

    display:block;
    padding:10px 16px;
    text-decoration:none;

    color:#000000;

    font-weight:normal;

    border-radius:15px;

    background:
    linear-gradient(
        to bottom,
        #f4fff7,
        #66ff99
    );

    transition:0.3s;

    box-shadow:
        inset 0 1px 5px white;
}



.navbar a:hover{

    background:
    linear-gradient(
        to bottom,
        #d9ffe6,
        #6dff9a
    );

    color:#003300;

    box-shadow:
        0 0 10px rgba(0, 255, 120, 0.25),
        0 0 20px rgba(0, 255, 120, 0.15);

    transition:0.3s;
}



/* ===== LAYOUT ===== */

.layout{

    display:grid;

    gap:20px;
}


/* landing page only */

.landing-page{

    grid-template-columns:
        170px
        1fr
        170px;
}



.sidebar{

    display:flex;
    flex-direction:column;
    gap:20px;
}



.content{

    width:100%;
    display:flex;
    flex-direction:column;
    gap:20px;
}



/* ===== ALL BOXES ===== */

.box{

    padding:15px;
    border-radius:20px;

    box-shadow:
        inset 0 0 15px rgba(255,255,255,0.7),
        0 5px 12px rgba(0,0,0,0.12);
}



/* ===== MIDDLE BOXES ===== */

.content .box{

    background:
    linear-gradient(
        to bottom,
        rgba(255,255,255,0.65),
        rgba(235,250,255,0.35)
    );
}



/* ===== LANDING PAGE GREEN BOXES ===== */

.landing-page .sidebar .box{

    background:
    linear-gradient(
        to bottom,
        rgba(244,255,247,0.55),
        rgba(102,255,153,0.35)
    );

    box-shadow:
        inset 0 1px 5px rgba(255,255,255,0.6),
        0 0 15px rgba(0,255,100,0.25);
}



/* ===== BOX HEADER LINE ===== */

.box::before{

    content:"";
    display:block;
    height:3px;
    width:100%;

    border-radius:10px;

    background:
    linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.95),
        transparent
    );

    margin-bottom:15px;
}



/* ===== H1 (MAIN SITE TITLE STYLE FOR BOX HEADINGS) ===== */

h1{
    font-family:"DynaPuff", cursive;
    font-size:2.2em;   /* smaller than your site banner title */
    color:#0077cc;
    margin:0;
    text-shadow:0 2px 0 white, 0 0 10px #7deaff;
}

/* ===== H2 (SECTION HEADINGS / BOX TITLES) ===== */

h2{
    font-family:"Segoe UI Variable", "Segoe UI", Tahoma, sans-serif;
    font-size:2em;   /* bigger than normal text, smaller than h1 */
    color:#0077cc;
    margin-top:0;
}

h3{
    font-family:"Segoe UI Variable", "Segoe UI", Tahoma, sans-serif;
    font-size:1.2em;   /* bigger than normal text, smaller than h1 and h2 */
    color:#0077cc;
    margin-top:0;
}


.box p{
    line-height:1.5;
}



/* ===== NORMAL LINKS ===== */

.box a{

    color:#1EC40A;

    text-decoration:none;

    transition:0.3s;

}


.box a:visited{

    color:#1EC40A;

}


.box a:hover{

    color:#76ED70;

}


.box a:active{

    color:#76ED70;

}




/* ===== MOBILE ===== */

@media(max-width:800px){

    .layout{
        grid-template-columns:1fr;
    }
}



/* ===== PAGES WITHOUT SIDEBARS ===== */

.content-page{

    display:flex;

    width:100%;

}


.content-page .content{

    width:100%;

}