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

:root {
    --primary-color: #1a472a;
    --primary-dark: #006d7e;
    --primary-light: #2d5a3d;
    --secondary-color: #ff751e;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Header & Navigation */
.header {
    background: var(--primary-dark);
    color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0098b0 0%, #7dd857 100%);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-wordcloud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.wordcloud-word {
    position: absolute;
    color: white;
    opacity: 0.2;
    white-space: nowrap;
    user-select: none;
    transition: opacity 0.3s;
    mix-blend-mode: overlay;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wordcloud-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

.wordcloud-sans {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.wordcloud-word:hover {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .wordcloud-word {
        font-size: 0.8rem !important;
        opacity: 0.15;
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-verse {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.verse-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.verse-ref {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: right;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: #e6640e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

/* Info Section */
.info-section {
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.goal-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s;
}

.goal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0098b0 0%, #7dd857 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0098b0 0%, #7dd857 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Content */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
}

/* Schedule */
.schedule {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-day {
    margin-bottom: 3rem;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.schedule-day h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.schedule-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    transition: background 0.3s;
}

.event:hover {
    background: #e9ecef;
}

.event-time {
    font-weight: bold;
    color: var(--primary-color);
}

.event-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

.location {
    font-style: italic;
    color: var(--primary-color);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.project-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.project-card .location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Testimonies */
.testimonies-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonies-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.testimony-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimony-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimony-list {
    list-style: none;
    margin-left: 0;
}

.testimony-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
}

.testimony-list li:before {
    content: '"';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.testimony-list li:last-child {
    border-bottom: none;
}

/* Register */
.register-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.register-form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.register-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-embed {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.form-embed iframe {
    width: 100%;
    border: none;
    min-height: 1200px;
}

.form-link-fallback {
    text-align: center;
    margin-top: 1rem;
}

.form-link-fallback a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-link-fallback a:hover {
    text-decoration: underline;
}

.register-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.register-info h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.register-info h2:first-child {
    margin-top: 0;
}

.register-info .instagram-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    line-height: 1.6;
}

.register-info .instagram-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline;
}

.register-info .instagram-link a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-social {
    margin: 0.5rem 0;
}

.footer-social .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-social .instagram-link:hover {
    opacity: 0.8;
}

.footer-social .instagram-link svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

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

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

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .register-form-container {
        padding: 1.5rem 1rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
        border-radius: 0;
    }

    .register-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .register-info {
        position: static;
        padding: 1.5rem 1rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
        border-radius: 0;
    }

    .register-info h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .form-embed {
        margin: 0 -1rem;
        width: calc(100% + 2rem);
        border-radius: 0;
    }

    .form-embed iframe {
        min-height: 1000px;
    }

    .form-link-fallback {
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .event {
        grid-template-columns: 1fr;
    }

    .event-time {
        margin-bottom: 0.5rem;
    }

    .projects-grid,
    .testimonies-grid {
        grid-template-columns: 1fr;
    }
}

