/* 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;
    }
}


.band-description {
    width: 85%;                  /* always smaller than the screen */
    max-width: 700px;            /* never grows too wide */
    margin: 40px auto;           /* centers the box */
    padding: 25px 30px;

    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    border: 2px solid #a3a3a3;

    color: #000;
    font-family: 'Bungee', cursive;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.3px;
    text-align: center;
}

/* Slight adjustments for very small screens */
@media (max-width: 500px) {
    .band-description {
        width: 90%;         
        padding: 20px;
    }
}

/* Section styling */
.meet-the-band {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;  /* dark background to make images pop */
    color: #000000;
    font-family: 'Bungee', cursive;
}

/* Image container layout */
.band-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Images styling */
.band-images img {
    width: 250px;           /* fixed width, responsive */
    height: 150px;          /* fixed height, you can adjust */
    object-fit: cover;      /* ensures the image fills the box */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.band-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.8);
}

/* Responsive for smaller screens */
@media (max-width: 700px) {
    .band-images img {
        width: 80%;  /* scale down for mobile */
        height: auto;
    }
}

/* 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;
}

/* 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;
    }
}
