:root {
    --primary-pink: #FFB6E1;
    --dark-pink: #FF69B4;
    --light-pink: #FFE4E1;
    --purple: #DDA0DD;
    --dark-purple: #9932CC;
    --light-purple: #E6D7E6;
    --gradient-1: linear-gradient(135deg, #FFB6E1, #DDA0DD);
    --gradient-2: linear-gradient(135deg, #E6A8D7, #FFB6E1);
    --gradient-3: linear-gradient(135deg, #DDA0DD, #BA55D3);
    --text-dark: #2C2C54;
    --text-light: #FFFFFF;
    --accent: #FF1493;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFF5F7 0%, #FFF0F5 50%, #F0F8FF 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 182, 193, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stars::before,
.stars::after {
    content: '✨ 💫 ⭐ ✨ 💫 ⭐';
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.stars::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.stars::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5);
    background: #FF1493;
}

.hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #F0F8FF 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-pink);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    border: 2px solid var(--light-pink);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
    border-color: var(--primary-pink);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--dark-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

.about-story {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--purple);
    box-shadow: 0 5px 20px rgba(221, 160, 221, 0.2);
}

.about-story h3 {
    color: var(--dark-pink);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-story p {
    margin-bottom: 1rem;
    line-height: 2;
    color: #555;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFF5F7 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.gallery-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kpop-aesthetic {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.overlay-text {
    position: absolute;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.gallery-caption {
    padding: 1.5rem;
    background: white;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    border-top: 2px solid var(--light-pink);
}

/* Poetry Section */
.poetry {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #E6D7E6 100%);
}

.poetry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.poem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(221, 160, 221, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-pink);
    position: relative;
    overflow: hidden;
}

.poem-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    opacity: 0.1;
    color: var(--purple);
}

.poem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.2);
}

.poem-card h3 {
    color: var(--dark-pink);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.poem-text {
    color: #555;
    line-height: 2;
    font-style: italic;
    font-weight: 500;
}

/* Dance Section */
.dance {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFF0F5 100%);
}

.dance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.dance-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.dance-card.feature:nth-child(1) {
    border-left-color: var(--primary-pink);
}

.dance-card.feature:nth-child(2) {
    border-left-color: var(--purple);
}

.dance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(221, 160, 221, 0.2);
}

.dance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dance-card h3 {
    color: var(--dark-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dance-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.dance-list {
    list-style: none;
    space-y: 1rem;
}

.dance-list li {
    padding: 0.8rem 0;
    color: #555;
    font-weight: 500;
    border-bottom: 1px solid var(--light-pink);
    transition: all 0.2s ease;
}

.dance-list li:last-child {
    border-bottom: none;
}

.dance-list li:hover {
    padding-left: 1rem;
    color: var(--dark-pink);
}

.achievements {
    text-align: center;
}

.achievements h3 {
    color: var(--dark-pink);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: scale(1.05);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #F0F8FF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--dark-pink);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-items {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
}

.info-item p {
    color: #666;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.1);
}

.contact-form .cta-button {
    align-self: flex-start;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #2C2C54);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.circle {
    width: 200px;
    height: 200px;
    background: var(--primary-pink);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.square {
    width: 150px;
    height: 150px;
    background: var(--purple);
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid var(--dark-pink);
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 182, 193, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-illustration {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .poetry-grid {
        grid-template-columns: 1fr;
    }

    .dance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-story {
        padding: 2rem;
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .contact-form .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-story {
        padding: 1.5rem;
    }

    .about-story h3 {
        font-size: 1.3rem;
    }

    .poetry {
        padding: 60px 0;
    }

    .poem-card {
        padding: 1.5rem;
    }

    .dance {
        padding: 60px 0;
    }

    .dance-card {
        padding: 1.5rem;
    }

    .dance-card h3 {
        font-size: 1.2rem;
    }

    .achievements h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section h4 {
        margin-bottom: 0.8rem;
    }

    .gallery-item {
        margin-bottom: 0;
    }

    .nav-links {
        top: 50px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .floating-shapes .shape {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about,
.gallery,
.poetry,
.dance,
.contact {
    animation: fadeIn 0.8s ease;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .floating-shapes,
    .contact-form {
        display: none;
    }
}
