:root {
    --bg-color: #ffeef4;
    /* Richer Pale Pink */
    --text-color: #4a2c36;
    /* Deep Warm Brown */
    --accent-color: #d81b60;
    /* Deep Vibrant Pink (Pink 600) */
    --accent-glow: rgba(216, 27, 96, 0.5);
    --secondary-bg: #fff;
    /* Pure White for contrast against pinker bg */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
    --radius-soft: 20px;
    --radius-btn: 50px;
    --glass-shadow: 0 8px 32px 0 rgba(233, 30, 99, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px var(--accent-glow);
    }

    50% {
        text-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    }

    100% {
        text-shadow: 0 0 10px var(--accent-glow);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transform: translateY(30px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 240, 245, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffc2d6 0%, #ffeef4 100%);
    /* Stronger gradient */
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.5) 100px,
            rgba(255, 255, 255, 0.5) 200px);
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% {
        transform: translate(-10%, -10%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    background: linear-gradient(to right, #d81b60, #ff4081);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-content span {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--radius-btn);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: width var(--transition-speed);
}

.btn:hover {
    color: #000;
}

.btn:hover::before {
    width: 100%;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    color: var(--accent-color) !important;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Section General */
section {
    padding: 6rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    font-weight: 400;
    /* Softer heading */
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--secondary-bg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 64, 129, 0.25);
    border-color: var(--accent-color);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Performance/Gallery */
.performance {
    background: linear-gradient(135deg, #ffeef4 0%, #fff0f5 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    background: #333;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(255, 64, 129, 0.8));
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Footer */
footer {
    background: #880e4f;
    /* Very Dark Pink/Burgundy */
    color: #ffeef2;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: #ff80ab;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: #fff;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Nav */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        width: 100%;
        background: rgba(255, 240, 245, 0.95);
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Responsive Utilities */
.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

/* Pop Comment Style */
@keyframes floatBubble {
    0% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }

    100% {
        transform: translateY(0) rotate(-1deg);
    }
}

.pop-comment {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 640px;
    margin: 2rem auto;
    /* Cute Polka Dot Background */
    background-color: #fff0f5;
    background-image: radial-gradient(#ffcdd2 15%, transparent 16%);
    background-size: 20px 20px;

    padding: 2rem;
    border-radius: 40px;
    box-shadow:
        0 10px 25px rgba(255, 105, 180, 0.2),
        inset 0 0 0 5px rgba(255, 255, 255, 0.5);
    /* Inner white border */
    border: 4px dashed #ff80ab;
    /* Dashed cute border */
    position: relative;
    text-align: left;

    /* Animation */
    animation: floatBubble 4s ease-in-out infinite;
}

.pop-comment:hover {
    animation-play-state: paused;
    transform: scale(1.02);
}

/* Pop Decoration (Music Note) */
.pop-comment::after {
    content: '\f001';
    /* FontAwesome Music */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 2rem;
    color: #ff4081;
    transform: rotate(15deg);
    text-shadow: 2px 2px 0 #fff;
    animation: pulse 2s infinite;
}

/* Another Music Note */
.pop-comment::before {
    content: '\f001';
    /* FontAwesome Music */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    left: 20px;
    font-size: 1.5rem;
    color: #ff80ab;
    transform: rotate(-15deg);
    text-shadow: 2px 2px 0 #fff;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(15deg);
    }

    50% {
        transform: scale(1.1) rotate(15deg);
    }

    100% {
        transform: scale(1) rotate(15deg);
    }
}

.pop-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* Cute ribbon on icon? Maybe too complex, stick to border */

.pop-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pop-comment:hover .pop-icon img {
    transform: scale(1.1);
}

.pop-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    /* Semi-transparent white backing for text readability */
    padding: 1rem;
    border-radius: 20px;
}

.pop-name {
    font-family: var(--font-heading);
    font-weight: 900;
    color: #d81b60;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Sparkle after name */
.pop-name::after {
    content: '✨';
    font-size: 1rem;
    margin-left: 5px;
}

.pop-message {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 600px) {
    .pop-comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .pop-text {
        width: 100%;
    }

    .pop-comment::after {
        top: auto;
        bottom: -15px;
        right: 20px;
    }
}