/* ============ Variables ============ */
:root {
    --sage-green: #75A886;
    --light-sage: #9BBFA8;
    --dark-green: #2d3d34;
    --purple-main: #7C67F7;
    --bg-light: #F9FBF9;
}

/* ============ Global ============ */
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-green);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============ Header / Navbar ============ */
.header {
    background: white;
    padding: 20px 0;
    width: 100%;
    position: relative;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

nav a.active::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 14px;
    background: #FFD84D;
    border-radius: 50%;
    z-index: -1;
}

.ss {
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid #6C2791 !important;
    background-color: white !important;
    color: #6C2791 !important;
    transition: 0.3s;
    display: inline-block;
}

.ss:hover {
    background-color: #6C2791 !important;
    color: white !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: var(--dark-green);
    border-radius: 2px;
}

/* ============ Hero ============ */
.hero-section { padding: 80px 0; }
.hero-flex {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    background: var(--sage-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h2 span { color: var(--sage-green); }

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.hero-btns .btn {
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: bold;
    display: inline-block;
}

.btn.green { background: var(--sage-green); color: white; margin-right: 15px; }
.btn.outline { border: 2px solid var(--sage-green); color: var(--sage-green); }

.hero-img .dome-frame { position: relative; }
.hero-img img { width: 100%; height: 500px; object-fit: cover; border-radius: 250px 250px 20px 20px; }
.floating-heart { position: absolute; top: 30px; right: 10px; font-size: 50px; color: var(--sage-green); transform: rotate(15deg); }

/* ============ Quote ============ */
.quote-section {
    background-color: var(--light-sage);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.quote-sun { font-size: 40px; margin-bottom: 20px; opacity: 0.8; }
.quote-section blockquote { font-size: 36px; font-weight: 800; font-style: italic; margin-bottom: 10px; }

/* ============ Features ============ */
.features-section {
    background: var(--sage-green);
    padding: 80px 0;
    color: white;
}

.features-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 20px;
}

.feature-card:last-child { border: none; }
.feature-card i { font-size: 30px; margin-bottom: 20px; }

/* ============ Events ============ */
.events-section { padding: 80px 0; }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.events-header h3 { font-size: 36px; }
.events-header p span { color: var(--sage-green); font-weight: bold; }
.events-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card { border: 1px solid #eee; padding: 30px; border-radius: 15px; background: #fff; }
.tag { padding: 5px 12px; border-radius: 15px; font-size: 11px; font-weight: bold; margin-bottom: 15px; display: inline-block; }
.tag-pink { background: #FDE2E4; color: #E74C3C; }
.tag-green { background: #E9F5DB; color: #4A6D56; }
.tag-blue { background: #E0F2F1; color: #00796B; }

/* ============ CTA ============ */
.cta-section {
    background: var(--purple-main);
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 100px;
}

.cta-btns { margin-top: 30px; }
.btn-white { background: white; color: var(--purple-main); margin-right: 15px; }
.btn-outline-white { border: 2px solid white; color: white; background: none; }

/* ============ Footer ============ */
.footer {
    background: #f6f6ff;
    color: black;
    padding: 70px 0 0;
    position: relative;
    box-shadow: 0 -15px 30px rgba(108, 39, 145, 0.4);
    border-radius: 40px;
}

.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-links a { display: block; color: black; margin: 8px 0; text-decoration: none; }
.footer-links h4 { color: #94A3B8; }
.footer-brand .mail { color: black; }
.footer-brand p { color: #94A3B8; }
.footer-bottom { text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid #333; color: #aaa; }
.footer-head { color: #6C2791; }

/* ================== Responsive ================== */
@media (max-width: 980px) {
    .hero-flex { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    nav { display: none; flex-direction: column; position: absolute; top: 90px; right: 20px; background: white; padding: 20px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
    nav.show { display: flex; }
    .hamburger { display: flex; }
    .hero-img img { height: 400px; }
    .events-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 650px) {
    .events-cards { grid-template-columns: 1fr; }
    .hero-img img { height: 300px; }
    .hero-text h2 { font-size: 36px; }
    .hero-text p { font-size: 16px; }
}