/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-light: #f8c5d4;
    --pink-medium: #f2a3b8;
    --coral: #ff7b54;
    --purple: #b39ddb;
    --purple-dark: #7e57c2;
    --cream: #fef9f3;
    --gray-dark: #5a4a4a;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, #fff5f8 50%, #f5f0ff 100%);
    color: var(--gray-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background gradient overlay */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(248, 197, 212, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(179, 157, 219, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative flowers */
.flower-decoration {
    position: fixed;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.flower-decoration::before {
    content: '🌸';
    font-size: 80px;
    position: absolute;
}

.flower-top-left {
    top: 50px;
    left: 50px;
    transform: rotate(-15deg);
}

.flower-top-right {
    top: 100px;
    right: 80px;
    transform: rotate(25deg);
}

.flower-bottom-left {
    bottom: 100px;
    left: 100px;
    transform: rotate(45deg);
}

.flower-bottom-right {
    bottom: 50px;
    right: 50px;
    transform: rotate(-30deg);
}

/* Main container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Logo section */
.logo-container {
    margin-bottom: 40px;
    animation: fadeInScale 1s ease-out;
}

.logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(179, 157, 219, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero text */
.hero-text {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--purple-dark);
    font-style: italic;
    font-weight: 400;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--coral), var(--purple), transparent);
    margin: 30px auto;
    border-radius: 10px;
}

/* About section */
.about-section {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.batch-info {
    font-size: 1rem;
    color: var(--purple-dark);
    font-weight: 500;
    margin-top: 20px;
}

.year, .college {
    display: inline-block;
}

.separator {
    margin: 0 15px;
    color: var(--coral);
}

/* CTA Section */
.cta-section {
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(179, 157, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(179, 157, 219, 0.4);
}

.instagram-icon {
    width: 24px;
    height: 24px;
}

/* Quote section */
.quote-section {
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--purple-dark);
    line-height: 1.8;
    padding: 30px;
    background: linear-gradient(135deg, rgba(248, 197, 212, 0.1) 0%, rgba(179, 157, 219, 0.1) 100%);
    border-radius: 20px;
    border-left: 4px solid var(--coral);
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--pink-medium);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(179, 157, 219, 0.2);
    animation: fadeInUp 1s ease-out 1s both;
}

.footer-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--purple-dark);
    margin-bottom: 8px;
}

.footer-subtext {
    font-size: 0.95rem;
    color: var(--gray-dark);
    opacity: 0.8;
}

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

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: var(--pink-medium);
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
    background: var(--purple);
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
    background: var(--coral);
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
    background: var(--pink-light);
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 8s;
    background: var(--purple-dark);
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(10px);
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 25px;
    }

    .logo {
        width: 220px;
        height: 220px;
    }

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

    .tagline {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .quote {
        font-size: 1.1rem;
        padding: 20px;
    }

    .flower-decoration {
        width: 80px;
        height: 80px;
    }

    .flower-decoration::before {
        font-size: 50px;
    }
}

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

    .content-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .logo {
        width: 180px;
        height: 180px;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .batch-info {
        font-size: 0.9rem;
    }

    .separator {
        margin: 0 10px;
    }
}

