/* Load the local script font */
@font-face {
    font-family: 'InfinityScript';
    src: url('fonts/Pacifico-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* GLOBAL PAGE SETTINGS */
body {
    margin: 0;
    background: #843ea8;
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

/* MAIN TITLES */
h1 {
    font-family: 'InfinityScript', cursive;
    font-size: 3.5rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    color: white;
}

/* NAVIGATION */
nav {
    background: rgba(0,0,0,0.4);
    padding: 18px 0;
    margin-bottom: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 28px;
    font-size: 1.25rem;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
}

.hamburger {
    font-size: 2rem;
    padding: 15px;
    cursor: pointer;
    user-select: none;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    padding: 10px 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.mobile-menu a:hover {
    text-decoration: underline;
}

.menu-open .mobile-menu {
    display: flex;
}

@media (max-width: 700px) {
    nav { display: none; }
    .mobile-nav {
        display: block;
        background: rgba(0,0,0,0.4);
        margin-bottom: 25px;
    }
}

/* UNIVERSAL PAGE CONTAINER */
.page-container,
.songs-container,
.music-container,
.lite-container,
.contact-container {
    max-width: 1000px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    text-align: center;
}

/* HOME PAGE HERO IMAGE */
.hero-image img {
    width: 100%;
    max-width: 1000px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

/* HOME PAGE TAGLINE */
.tagline {
    max-width: 800px;
    margin: 35px auto 60px auto;
    padding: 0 20px;
}

.tagline p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 300;
    color: #f5e9ff;
    font-family: "Georgia", "Times New Roman", serif;
}

/* ABOUT PAGE — CLEAN, CENTERED, PROFESSIONAL */
.page-container h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #f5e9ff;
    margin-bottom: 25px;
}

.member {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;

    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    border: 3px solid #d9c6ff;
}

.member-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f5e9ff;
    font-family: "Georgia", "Times New Roman", serif;
}

.member-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
}

.page-container hr {
    border: none;
    border-top: 1px solid #d9c6ff;
    margin: 40px auto;
    opacity: 0.5;
    width: 80%;
}

@media (max-width: 700px) {
    .member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .member-text {
        text-align: center;
    }
}

/* GALLERY PAGE */
.collage-container {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    grid-gap: 15px;
}

.collage-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #d9c6ff;
    transition: transform 0.3s ease;
}

.collage-item:hover {
    transform: scale(1.05);
}

.collage-item.large { grid-column: span 3; grid-row: span 2; }
.collage-item.tall { grid-column: span 2; grid-row: span 3; }
.collage-item.wide { grid-column: span 4; grid-row: span 2; }
.collage-item.square { grid-column: span 2; grid-row: span 2; }

/* MUSIC PAGE */
.music-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.music-container h2 {
    width: 100%;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #f5e9ff;
    margin-bottom: 25px;
}

.audio-sample {
    width: 300px;
    background: rgba(0,0,0,0.25);
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #d9c6ff;
}

.audio-sample p {
    font-size: 0.85rem;
    margin-bottom: 3px;
    color: #ffffff;
    font-family: "Georgia", "Times New Roman", serif;
}

.audio-sample audio {
    width: 100%;
    height: 22px;
    border-radius: 3px;
}

@media (max-width: 600px) {
    .audio-sample {
        width: 90%;
    }
}

/* SONGS PAGE */
.song-column {
    width: 45%;
    min-width: 300px;
    background: rgba(0,0,0,0.25);
    padding: 20px 25px;
    border-radius: 10px;
    border: 2px solid #d9c6ff;
}

@media (max-width: 600px) {
    .song-column {
        width: 90%;
    }
}

/* INFINITY LITE PAGE */
.lite-photos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.lite-member {
    text-align: center;
}

.lite-member img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    border: 3px solid #d9c6ff;
}

.lite-name {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* CONTACT PAGE */
.contact-info {
    margin: 25px 0 40px 0;
    font-size: 1.2rem;
}

/* RESPONSIVE GLOBAL */
@media (max-width: 900px) {
    h1 { font-size: 2.8rem; }
    .hero-image img { width: 100%; }
    .collage-container { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .collage-container { grid-template-columns: repeat(2, 1fr); }
    .lite-photos { flex-direction: column; align-items: center; }
}