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

:root {
    --primary-gold: #d4af37;
    --dark-burgundy: #4a1c1c;
    --deep-blue: #1a2332;
    --cream: #f5f1e8;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-color: #d4c5b0;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 4rem 2rem 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.icon-container {
    margin-bottom: 1.5rem;
}

.cross-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-gold);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--primary-gold);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 1px;
}

/* Main Content */
.main-content {
    padding: 3rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-gold);
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
}

/* Embed Section */
.embed-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.embed-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.embed-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

.embed-description {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.fullscreen-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--dark-burgundy);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.fullscreen-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.fullscreen-btn:active {
    transform: translateY(0);
}

.fullscreen-icon {
    width: 20px;
    height: 20px;
}

.fullscreen-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.embed-container {
    width: 100%;
    height: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: var(--cream);
    position: relative;
}

.embed-container:fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 0;
}

.embed-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 0;
}

.embed-container:-moz-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 0;
}

.embed-container:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 0;
}

.clickup-embed {
    border-radius: 8px;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--dark-burgundy);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-burgundy) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.scripture-ref {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--primary-gold);
}

.copyright {
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .intro-section {
        padding: 1.5rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .embed-section {
        padding: 1.5rem;
    }

    .embed-title {
        font-size: 1.8rem;
    }

    .embed-container {
        height: 600px;
    }

    .fullscreen-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .fullscreen-icon {
        width: 18px;
        height: 18px;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 3rem 1rem 2rem;
    }

    .title {
        font-size: 2rem;
    }

    .cross-icon {
        width: 45px;
        height: 45px;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .embed-container {
        height: 500px;
    }
}
