* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}

:root {
    --primary: #a892ee; /* Lavender */
    --primary-light: #d1c4f9;
    --secondary: #ffb7c5; /* Sakura Pink */
    --accent: #ffd700; /* Cake Gold */
    --bg-main: #fcfaff;
    --text-dark: #2d2a32;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 8px 32px 0 rgba(168, 146, 238, 0.2);
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Base Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-soft {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Background Elements */
.bg-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.kikyo-flower {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(209, 196, 249, 0.2) 0%, rgba(255, 183, 197, 0.1) 100%);
}

.hero-image-container {
    width: 320px;
    height: 320px;
    position: relative;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    border-style: dashed;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1.2s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    animation: fadeIn 1.4s ease-out;
}

/* Section Common */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '✿';
    display: block;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 10px;
}

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

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-label {
    font-weight: bold;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.2rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Worship Button */
.worship-section {
    text-align: center;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
}

.worship-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(168, 146, 238, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.worship-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(168, 146, 238, 0.6);
}

.worship-count {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
}

/* Footer */
footer {
    padding: 50px 20px;
    text-align: center;
    background: white;
    border-top: 1px solid #eee;
}

/* Particles */
.particle {
    position: absolute;
    pointer-events: none;
    z-index: 999;
}

/* Quotes Styling */
.quotes-container .glass-card {
    border-left: 5px solid var(--primary);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(209, 196, 249, 0.1));
}

#details p {
    font-size: 1.1rem;
    word-break: keep-all;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer Adjustments */
footer p {
    line-height: 1.6;
}
