:root {
    /* Pastel Color Palette */
    --pastel-green: #d4f0d4;
    --pastel-pink: #fbd6d6;
    --pastel-purple: #e6d6fb;
    --pastel-blue: #d6ebfb;
    --soft-white: #f9f9f9;
    --text-color: #555;
    --gradient-bg: linear-gradient(135deg, #e6d6fb 0%, #d4f0d4 100%);
}

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--gradient-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3 {
    font-weight: 500;
    color: #4a4a4a;
}

a {
    color: #7b5dc6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a9d4a;
}

.main-header {
    text-align: center;
    padding: 6rem 2rem 4rem; /* More top padding */
    position: relative;
    overflow: hidden;
    /* Ensure the gradient is still there behind the cymatics */
    background: var(--gradient-bg);
    isolation: isolate; /* Create new stacking context */
}

/* CYMATICS EFFECT */
/* Flower of Life pattern */
.cymatics-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -1;
    opacity: 0.12;
    background: url('../flower_of_life.svg') center center no-repeat;
    background-size: cover;
    animation: cymaticsRotate 120s linear infinite; /* Slower, more subtle */
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 65%);
}

@keyframes cymaticsRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); } /* Subtle breathing */
    100% { transform: rotate(360deg) scale(1); }
}

.main-header h1 {
    font-size: 3.5rem; /* Slightly bigger */
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.3rem;
    color: #555; /* Darker for better contrast against glass */
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.logo-circle {
    width: 150px;
    height: 150px;
    background-color: var(--soft-white);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links li a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px; /* High border-radius for rounded pills */
    display: inline-block;
}

.nav-links li a:hover {
    background: white;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.content-section {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    
    padding: 3rem;
    width: 100%;
    max-width: 700px;
    text-align: center;
    /* Creating a very rounded shape, almost circular or oval */
    border-radius: 50px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Softer, deeper shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Specific styling for the bubbles to vary them slightly */
.content-section:nth-child(even) {
    background: rgba(255, 245, 245, 0.7); /* Slightly pinkish glass */
    border-radius: 60px 40px 60px 40px;
}

.content-section:nth-child(odd) {
    background: rgba(245, 255, 245, 0.7); /* Slightly greenish glass */
     border-radius: 40px 60px 40px 60px;
}

.content-section:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Scroll Animation Classes */
.scroll-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

.image-wrapper.circle-frame {
    width: 250px;
    height: 250px;
    margin: 2rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder-circle, .circle-item {
    width: 200px;
    height: 200px;
    background-color: var(--pastel-blue);
    border-radius: 50%;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.circle-item {
    width: 100px;
    height: 100px;
    background-color: var(--pastel-pink);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}

.social-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pastel-purple);
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-btn:hover {
    background: #cba8f0;
    color: white;
}

.main-footer {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 2rem;
}

.bubble-footer {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem 4rem;
    border-radius: 100px;
}

.small-text {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}
