:root {
    --bg-gradient: linear-gradient(135deg, #b0e0e6, #ffb6c1);
    /* Babyblue gradasi pink */
    --text-color: #333;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --btn-bg: rgba(255, 255, 255, 0.6);
    --btn-hover: rgba(255, 255, 255, 0.9);
    --accent: #e84393;
}

[data-theme="dark"] {
    --bg-gradient: linear-gradient(135deg, #1c2b36, #3b2a34);
    /* Dark gradasi */
    --text-color: #f1f1f1;
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --btn-bg: rgba(255, 255, 255, 0.1);
    --btn-hover: rgba(255, 255, 255, 0.2);
    --accent: #fd79a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body {
    background: var(--bg-gradient);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--btn-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.theme-toggle:hover {
    background: var(--btn-hover);
    transform: scale(1.1);
}

.container {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.hello-section {
    text-align: center;
    animation: fadeInDown 1s ease;
}

.hello-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.hello-section p {
    font-size: 1.2rem;
    font-weight: 300;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.2s both;
}

.menu-btn {
    padding: 12px 25px;
    border: none;
    background: var(--btn-bg);
    color: var(--text-color);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.menu-btn:hover,
.menu-btn.active {
    background: var(--btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--accent);
    border-color: var(--accent);
}

.hidden {
    display: none !important;
}

.active-section {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.content-area section {
    min-height: 250px;
}

.content-area section h2 {
    color: var(--accent);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    display: inline-block;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.bio-item {
    background: var(--btn-bg);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
}

.bio-item span {
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
    width: 80px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.motivation {
    margin-top: 25px;
    padding: 25px;
    background: var(--btn-bg);
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--accent);
}

.motivation h3 {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1.2rem;
}

.motivation blockquote {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.motivation blockquote::before {
    content: '"';
    font-size: 2.5rem;
    position: absolute;
    left: -8px;
    top: -12px;
    color: var(--accent);
    opacity: 0.3;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper img:hover {
    transform: scale(1.1);
}

.class-description,
.prayer {
    background: var(--btn-bg);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    border: 1px solid var(--glass-border);
}

.prayer {
    border: 2px dashed var(--accent);
    text-align: center;
    background: rgba(232, 67, 147, 0.05);
}

.prayer h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 600px) {
    .bio-grid {
        grid-template-columns: 1fr 1fr;
    }
}