/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    overflow-x: hidden;
}

/* ================= HERO SECTION ================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 8%;
    gap: 60px;
}

/* ================= CONTENT ================= */
.hero-content {
    flex: 1;
    animation: fadeSlide 1s ease forwards;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 520px;
    opacity: 0.95;
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn:hover {
    background: #ff3b3b;
    transform: translateY(-6px) scale(1.05);
}

/* ================= IMAGE ================= */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeSlide 1.3s ease forwards;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* ================= ANIMATION ================= */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        margin: 0 auto 25px;
    }

    .hero-image {
        margin-top: 40px;
    }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 26px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ================= COLORFUL GLASS ABOUT SECTION ================= */

.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 8%;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fad0c4);
}

.about-content {
    width: 100%;
    max-width: 1100px;
    padding: 80px 60px;
    border-radius: 30px;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);

    text-align: center;
    color: white;

    animation: fadeUp 1s ease forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-content:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .about-content {
        padding: 50px 30px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}