@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Overpass:wght@100;300;400;500;600;700&display=swap');

:root {
    --primary-pink: #ff69b4;
    --secondary-pink: #ff1493;
    --dark-pink: #c2185b;
    --light-pink: #ffb6c1;
    --soft-white: #fff9fb;
    --pure-white: #ffffff;
    --off-white: #f8f8f8;
}

body {
    font-family: 'Overpass', sans-serif;
    font-weight: 100;
    /* background-color: var(--off-white); */
    color: #ee91cf97;
    overflow-x: hidden;
}

.elegant-font {
    font-family: 'Kaushan Script', cursive;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 241, 250, 0.767);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 100;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-pink);
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

/* Hamburger menu */
.hamburger {
    display: none;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1100;
        cursor: pointer;
        background: var(--primary-pink);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--pure-white);
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    #menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
        max-width: 350px;
        background: var(--pure-white);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        padding: 4rem 2rem;
        z-index: 1050;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    #menu.open {
        transform: translateX(0);
    }

    .menu-item {
        padding: 1.5rem 0;
        font-size: 2rem;
        color: #ff2f9b;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 100;
        letter-spacing: 0.5px;
    }

    .menu-item:hover {
        color: var(--primary-pink);
    }

    #menu .mt-auto {
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('/images/IMG1.jpg') no-repeat center center/cover;
    position: relative;
    margin-top: 80px;
    /* Account for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 161, 214, 0.386);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 1.5rem;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 3rem;
    color: #1c1c1c;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    width: 100%;
}

.white-bg {
    background-color: var(--pure-white);
}

.offwhite-bg {
    background-color: var(--off-white);
}

/* --- About Section --- */
.about-content {
    margin-top: 2rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Music Section --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 0 1rem;
    justify-content: center;
    align-items: center;
}

.album-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.album-cover {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.album-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.3rem;
    text-align: center;
}

.listen-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.listen-links a {
    color: var(--primary-pink);
    margin: 0 0.75rem;
    transition: color 0.3s ease;
    font-size: 1.3rem;
}

.listen-links a:hover {
    color: var(--secondary-pink);
}

/* --- Videos Section --- */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Tour Dates Section --- */
.tour-list {
    margin-top: 3rem;
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tour-item {
    background: var(--pure-white);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.tour-item:hover {
    transform: translateX(5px);
}

.tour-details {
    flex-grow: 1;
    text-align: left;
}

.tour-date {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.tour-venue {
    color: #666;
}

/* --- Merch Section --- */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 0 1rem;
    justify-content: center;
    align-items: center;
}

.merch-item {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.15);
}

.merch-image {
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.merch-item:hover .merch-image {
    transform: scale(1.05);
}

.merch-title {
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
}

.merch-price {
    color: var(--primary-pink);
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.8rem;
    display: block;
}

/* --- Contact Section --- */
.contact-form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    border-radius: 8px;
    font-family: 'Overpass', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

/* --- Footer --- */
footer {
    background-color: var(--pure-white);
    padding: 4rem 2rem;
    text-align: center;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-socials a {
    color: var(--primary-pink);
    margin: 0 1.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-socials a:hover {
    color: var(--secondary-pink);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-links li a:hover {
    color: var(--primary-pink);
}

.footer-copyright {
    font-size: 0.9rem;
    margin-top: 2.5rem;
    color: #999;
}

/* --- Reusable Styles --- */
.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    border-radius: 2px;
}

.pink-gradient-text {
    background: linear-gradient(45deg, var(--primary-pink), var(--secondary-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-pink);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    min-width: 180px;
}

.btn-primary:hover {
    background-color: var(--secondary-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 105, 180, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-pink);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-pink);
    cursor: pointer;
    font-size: 1rem;
    min-width: 180px;
}

.btn-outline:hover {
    background-color: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 105, 180, 0.3);
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-container {
        padding: 4rem 1.5rem;
    }

    .hero-content {
        padding: 4rem 1.5rem;
    }

    .music-grid,
    .videos-grid,
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .tour-button {
        width: 100%;
    }

    .tour-button button {
        width: 100%;
    }

    .footer-links ul {
        gap: 1.5rem;
    }

    .footer-socials a {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .section-container {
        padding: 3rem 1rem;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title:after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }

    .footer-links ul {
        flex-direction: row;
        gap: 1rem;
    }
}