/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --primary-purple: #6B4E9A;
    --accent-teal: #5B9AA0;
    --warm-beige: #F5F1E8;
    --soft-cream: #FBF8F3;
    --deep-brown: #4A3933;
    --text-dark: #2C2420;
    --text-light: #6B6460;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(107, 78, 154, 0.3), rgba(91, 154, 160, 0.2)), url('hero-bg.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 78, 154, 0.7) 0%, rgba(91, 154, 160, 0.6) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background: #E5C047;
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

/* About Section */
.about-section {
    background: var(--soft-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.vision-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 100%);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3rem;
    color: #fff;
    box-shadow: 0 10px 40px rgba(107, 78, 154, 0.3);
}

.vision-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
}

.vision-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Principles Section */
.principles-section {
    background: #fff;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.principle-card {
    background: var(--soft-cream);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-gold);
}

.principle-icon {
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: block;
}

.principle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.principle-card p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Structure Section */
.structure-section {
    background: var(--soft-cream);
}

.structure-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.structure-item {
    margin-bottom: 2.5rem;
}

.structure-item h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.structure-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.session-steps {
    margin-top: 1.5rem;
}

.step-item {
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-gold);
}

.step-label {
    font-weight: 600;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.3rem;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.structure-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: sticky;
    top: 120px;
}

.commitment-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 100%);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
}

.commitment-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.commitment-item {
    background: rgba(255,255,255,0.15);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Benefits Section */
.benefits-section {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--soft-cream);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--accent-teal);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.benefit-card p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Join Section */
.join-section {
    background: var(--soft-cream);
}

.join-description {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.ideal-member {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.ideal-member h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.quality-item {
    background: var(--soft-cream);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    font-size: 0.95rem;
    line-height: 1.6;
}

.join-process {
    margin-bottom: 4rem;
}

.join-process h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
    text-align: center;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-teal));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-purple);
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 100%);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    box-shadow: 0 15px 50px rgba(107, 78, 154, 0.3);
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    padding: 3rem;
    color: #fff;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--deep-brown);
    color: var(--warm-beige);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
}

.footer-section a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #E5C047;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    color: rgba(245, 241, 232, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .structure-content,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-intro h2 {
        font-size: 2.2rem;
    }

    .section {
        padding: 4rem 0;
    }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .vision-box {
        flex-direction: column;
        text-align: center;
    }

    .principles-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-intro h2 {
        font-size: 1.8rem;
    }
}
