/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

/* GLOBAL */
body {
    background-image: url("images/backgroundb.png");
    margin: 0;
}

/* DESKTOP NAV */
.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    border-bottom: 3px solid #a3a3a3;
}

.nav-list li {
    display: inline-block;
}

.nav-list li a {
    display: block;
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Bungee', cursive;
    font-size: 12px;
}

.nav-list li a:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

/* HAMBURGER BUTTON (hidden by default) */
.hamburger {
    display: none; 
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #888;
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MOBILE MENU HIDDEN */
.mobile-menu {
    display: none;
    background: rgba(240, 240, 240, .97);
    position: absolute;
    top: 55px;
    right: 10px;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
}

.mobile-menu .nav-list li {
    display: block;
    text-align: right;
}

/* SHOW MENU WHEN ACTIVE */
.mobile-menu.active {
    display: block;
}

/* MEDIA QUERY */
@media (max-width: 700px) {

    /* Hide desktop nav */
    .nav-links {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }
}


/* FOOTER STYLING */
.site-footer {
    background: none;   /* removed background */
    border-top: none;   /* removed border */
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    font-family: 'Bungee', cursive;
    font-size: 12px;
    letter-spacing: -0.5px;
    text-align: center;
}

/* FOOTER TEXT */
.site-footer p {
    margin: 0;
    color: #ffffff;  /* WHITE TEXT */
}

/* ICON */
.footer-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ICON HOVER */
.footer-icon img:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

/* MOBILE FOOTER STACKS NICELY */
@media (max-width: 600px) {
    .site-footer {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}


/* Rounded logo styling */
.site-logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;      /* makes it round */
    object-fit: cover;       /* clean fit */
    border: 3px solid white; /* optional white outline */
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

/* Smaller logo on screens 600px or under */
@media (max-width: 600px) {
    .site-logo img {
        width: 60px;
        height: 60px;
    }
}
/* Put header items on one line */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 3px solid #a3a3a3;
}

.BIG {
    text-align: center;
    font-family: 'Bungee', cursive;
    font-size: 36px;
    margin-top: 20px;
    color: #ffffff;
}

.song-item  {
    background: rgba(255, 255, 255, 0.85);
    margin: 20px auto;
    padding: 16px;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* VIDEO IFRAME: center, rounded box and drop shadow for common video providers */
iframe[src*="youtube" i],
iframe[src*="youtu.be" i],
iframe[src*="vimeo" i],
iframe[src*="facebook" i] {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 720px;            /* limit max size on large screens */
    aspect-ratio: 16 / 9;        /* maintain 16:9 video ratio */
    height: auto;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #000;            /* prevents white flash on load */
    box-shadow: 0 12px 30px rgba(0,0,0,0.25), 0 4px 8px rgba(0,0,0,0.08);
}

/* Slightly tighter spacing on very small screens */
@media (max-width: 480px) {
    iframe[src*="youtube" i],
    iframe[src*="youtu.be" i],
    iframe[src*="vimeo" i],
    iframe[src*="facebook" i] {
        margin: 14px auto;
        border-radius: 10px;
        max-width: calc(100% - 24px);
    }
}

h2 {
    font-family: 'Bungee', cursive;
    font-size: 22px;
    margin: 0 0 12px 0;
    color: #333333;
    text-align: center;
}