/* === THEME & VARIABLES === */
:root {
    --primary-pink: #e91e63;
    --light-pink: #fdf6f9;
    --dark-pink: #c2185b;
    --accent-purple: #9c27b0;
    --text-dark: #333;
    --text-light: #555;
    --white: #ffffff;
    --border-color: #fce4ec;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    --section-spacing: clamp(80px, 10vw, 120px);
}

/* === BASE & TYPOGRAPHY === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, .logo-text { font-family: var(--font-serif); }
h1 { font-size: clamp(2.75rem, 6vw, 4rem); line-height: 1.1; font-weight: 700; }
h2 { font-size: clamp(2.25rem, 5vw, 3.25rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); line-height: 1.3; font-weight: 600; }

/* === HEADER (Consistent Across All Pages) === */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    position: sticky; top: 0; z-index: 1000;
    transition: var(--transition);
}
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; }
.logo-text { font-size: 28px; font-weight: 700; color: var(--primary-pink); }
.language-switcher { display: flex; gap: 8px; background: var(--light-pink); padding: 4px; border-radius: 12px; }
.lang-btn { background: none; border: none; font-size: 14px; color: var(--text-light); cursor: pointer; padding: 8px 16px; border-radius: 8px; transition: var(--transition); font-weight: 500; }
.lang-btn.active { background-color: var(--white); color: var(--primary-pink); box-shadow: 0 2px 8px rgba(233, 30, 99, 0.15); }
.logo-img { height: 55px; }
/* === BUTTONS === */
.btn {
    padding: 16px 36px; border-radius: 50px; font-weight: 600; text-decoration: none;
    transition: var(--transition); display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; font-size: 1.1rem; border: 2px solid; cursor: pointer;
}
.btn-primary { background-color: var(--primary-pink); color: var(--white); border-color: var(--primary-pink); box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3); }
.btn-secondary { background-color: transparent; color: var(--primary-pink); border-color: var(--primary-pink); }
.btn:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(233, 30, 99, 0.35); }
.btn-secondary:hover { background-color: var(--primary-pink); color: var(--white); }

/* === SCROLL ANIMATION === */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* === PAGE SECTIONS === */
.section { padding: var(--section-spacing) 0; }
.section-intro { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.section-intro h2 { margin-bottom: 24px; }
.section-intro p { font-size: 20px; color: white; line-height: 1.6; }

/* === HERO SECTION (Circular Slider Design) === */
.hero { min-height: 100vh; display: flex; align-items: center; text-align: center; color: var(--white); position: relative; background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-purple) 100%); padding: var(--section-spacing) 0; overflow: hidden; }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-slider { margin-bottom: 60px; position: relative; }
.slider-container { position: relative; width: 280px; height: 280px; margin: 0 auto 80px; }
@media (min-width: 768px) { .slider-container { width: 340px; height: 340px; } }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; opacity: 0; transform: scale(0.8); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.slide.active { opacity: 1; transform: scale(1); z-index: 3; }
.slide.prev { opacity: 0.6; transform: scale(0.9) translateX(-80px); z-index: 2; }
.slide.next { opacity: 0.6; transform: scale(0.9) translateX(80px); z-index: 2; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-content { position: absolute; bottom: -60px; left: 0; right: 0; text-align: center; color: white; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
.slide-content h3 { font-size: 1.5rem; margin-bottom: 8px; color: white; font-weight: 600; font-family: var(--font-sans); }
.slide-content p { font-size: 1rem; opacity: 0.9; margin: 0; }
.slider-dots { display: flex; justify-content: center; gap: 12px; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: var(--transition); }
.dot.active { background: white; transform: scale(1.2); }
.hero-text { max-width: 800px; margin: 0 auto; }
.hero-text h1 { color: white; }
.hero-text p { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 40px; line-height: 1.6; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-buttons .btn-primary { background-color: white; color: var(--primary-pink); border-color: white; }
.hero-buttons .btn-secondary { background-color: transparent; color: white; border-color: white; }
.hero-buttons .btn:hover { box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4); }
.hero-buttons .btn-secondary:hover { background-color: white; color: var(--primary-pink); }

/* === MOVEMENT SECTION === */
.movement { background-color: var(--light-pink); }
.movement-content { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 992px) { .movement-content { grid-template-columns: 1fr 1fr; gap: 80px; } }
.movement-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); }
.movement-image img { display: block; width: 100%; height: auto; }
.movement-text h2 { margin-bottom: 32px; }
.movement-text p { color: var(--text-light); font-size: 18px; }

/* === COMMUNITY SECTION === */
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.community-card { background: var(--white); padding: 28px 32px; border-radius: 20px; text-align: center; border: 1px solid var(--border-color); transition: var(--transition); }
.community-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08); }
.community-card i { font-size: 56px; color: var(--primary-pink); margin-bottom: 28px; }
.community-card h3 { color: var(--text-dark); margin-bottom: 12px; font-family: var(--font-sans); font-size: 1.375rem; font-weight: 600; }
.community-card p { color: var(--text-light); font-size: 1rem; }

/* === EXPERIENCE SECTION === */
.experience { background-color: var(--light-pink); }
.experience-step { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; margin-bottom: 120px; }
.experience-step:last-child { margin-bottom: 0; }
@media (min-width: 992px) { .experience-step { grid-template-columns: 1fr 1fr; } }
.experience-step:nth-child(even) .experience-image { order: -1; }
.experience-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); }
.experience-image img { display: block; width: 100%; height: auto; }
.experience-text .tag { display: inline-block; background: var(--white); color: var(--primary-pink); padding: 10px 24px; border-radius: 50px; font-size: 15px; font-weight: 700; margin-bottom: 24px; border: 2px solid var(--border-color); text-transform: uppercase; }
.experience-text h3 { margin-bottom: 20px; }
.experience-text p { color: var(--text-light); font-size: 18px; }

/* === PROMISE SECTION === */
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.promise-item { text-align: center; padding: 40px 24px; transition: var(--transition); border-radius: 20px; }
.promise-item:hover { transform: translateY(-12px); background: var(--light-pink); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.promise-item i { font-size: 48px; color: var(--primary-pink); margin-bottom: 24px; }
.promise-item h3 { font-family: var(--font-sans); color: var(--text-dark); font-size: 1.375rem; font-weight: 600; }

/* === FINAL CTA SECTION === */
.final-cta { background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-purple) 100%); color: var(--white); }
.final-cta .section-intro h2 { color: var(--white); }
.btn-cta { background: var(--white); color: var(--primary-pink); font-size: 18px; padding: 20px 48px; }
.btn-cta:hover { background: var(--light-pink); transform: translateY(-4px) scale(1.05); }

/* === FOOTER === */
footer { background-color: var(--text-dark); color: var(--white); padding: 80px 0 30px; }
.footer-content { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 60px; margin-bottom: 50px; }
@media (max-width: 992px) { .footer-content { grid-template-columns: 1fr; } }
.footer-logo { font-size: 28px; font-weight: 700; margin-bottom: 20px; color: var(--light-pink); }
.footer-desc { font-size: 16px; opacity: 0.8; margin-bottom: 30px; }
.social-links a { color: var(--white); font-size: 20px; margin-right: 20px; opacity: 0.8; transition: var(--transition); }
.social-links a:hover { opacity: 1; color: var(--primary-pink); transform: translateY(-2px); }
.footer-title { font-size: 20px; font-weight: 600; margin-bottom: 24px; color: var(--light-pink); }
.contact-item, .footer-links li { margin-bottom: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; opacity: 0.8; }
.contact-item i { margin-top: 4px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links a { color: var(--white); text-decoration: none; opacity: 0.8; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--light-pink); padding-left: 8px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 15px; opacity: 0.7; }

/* === COMBINED SHOP/EVENT PAGE STYLES === */
.page-header { text-align: center; margin-bottom: 60px; }
.event-highlight {
    background-color: var(--light-pink);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 50px);
    margin-bottom: var(--section-spacing);
}
.event-highlight .content-split { gap: 40px; }
/* === JOIN PAGE - IMPROVED EVENT SECTION === */
.event-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: clamp(20px, 4vw, 40px);
    border: 1px solid var(--border-color);
}

.event-card .content-split {
    gap: 40px;
    align-items: flex-start; /* Aligns items to the top */
}

@media (min-width: 992px) {
    .event-card .content-split {
        gap: 60px;
    }
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.detail-item i {
    color: var(--primary-pink);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.event-description {
    font-size: 1.1rem !important; /* Overrides default p size */
    color: var(--text-light);
    margin-bottom: 30px;
}

.embed-widget-container {
    background-color: var(--light-pink);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

.embed-widget-container p {
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}