:root {
            --primary-dark: #3f2e1e;
            --primary-medium: #6b4e2e;
            --primary-light: #d2b48c;
            --accent-gold: #be9b5d;
            --text-light: #f4f1ee;
            --text-medium: #dcd2c2;
            --shadow-dark: rgba(0, 0, 0, 0.5);

            /* Light Theme Colors */
    --background-lightest: #f9f6f0;  /* Very light cream for main backgrounds */
    --background-light: #f0e9dd;     /* Light parchment color from the image */
    --accent-rust: #a15c38;          /* Rusty accent from image edges */
    --accent-gold-light: #d4b877;    /* Lighter gold for highlights */
    --text-dark: #2a1f14;            /* Darker text for contrast */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            background: linear-gradient(to bottom, var(--background-light), var(--background-lightest));
            color: var(--text-dark);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        header {
            position: relative;
            height: 75vh;
            min-height: 900px;
            background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1)), url('../images/dfs.webp') no-repeat center center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            overflow: hidden;
        }
        @media (max-width: 1450px) {
            header {
                height: 60vh;
                min-height: 600px;
            }
        }
        
        /* SVG Bible Image */
        .bible-svg-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.7;
            pointer-events: none;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            font-weight: 900;
            margin-top: 100px; /* Add margin to move content down */
        }
        
        
        .title-and {
            font-size: 0.8em;
        }
        
        .header-content {
            max-width: 900px;
            z-index: 2;
        }
        
        h1 {
            font-family: 'Times New Roman', Times, serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            text-shadow: 2px 2px 2px var(--shadow-dark);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
        }
        
        
        .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-style: italic;
            color: white;
            text-shadow: 2px 2px 3px var(--shadow-dark);
        }
        
        .cta-button {
        display: inline-block;
        background-color: var(--accent-gold);
        color: var(--background-lightest);
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 20px;
        }
        
        .cta-button:hover {
        background-color: var(--text-light);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        color: var(--primary-dark);
        text-decoration: none;
        }
        
        nav {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            z-index: 10;
            background-color: var(--primary-medium);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent-gold);
        }
/* Burger menu styling */
        .burgermenu {
            display: none; /* Hidden by default on desktop */
            position: relative;
            cursor: pointer;
        }

        .burgermenu i {
            color: var(--text-light);
            font-size: 2rem;
        }

        .burgermenu-links {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--primary-medium);
            width: 150px;
            list-style: none;
            box-shadow: 0 4px 10px var(--shadow-dark);
            z-index: 100;
            border-radius: 4px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            margin-left: 10px;
            
        }

        .burgermenu-links.show {
            display: block;
        }

        .burgermenu-links li {
            padding: 0.75rem 1rem;
        }

        .burgermenu-links a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .burgermenu-links a:hover {
            color: var(--accent-gold);
        }

        .burgermenu-links a.active {
            color: var(--accent-gold);
            font-weight: bold;
        }
        
        /* Theme toggle button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 5px 10px;
    margin-left: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle i {
    margin-right: 5px;
}
.theme-toggle-label {
            font-size: 0.7rem;
        }
        .theme-toggle-mode {
            font-size: 0.9rem;
        }
        .theme-toggle-text {
    line-height: 0.8;
}

        main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
        }
        
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        
        section {
            margin-bottom: 60px;
        }
        
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: var(--text-dark);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        a {
            color: var(--accent-gold-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-rust);
            text-decoration: underline;
        }

        
        .article-card {
    background: var(--background-lightest);
    border-left: 3px solid var(--accent-gold);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
        
        .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--accent-rust);
}



.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.date {
    font-size: 0.9rem;
    color: var(--primary-medium);
    margin-bottom: 10px;
    font-style: italic;
}

.article-excerpt {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-dark);
    flex-grow: 1;
}

        .article-image {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
            border-radius: 5px;
            object-fit: cover;
        }
        .article-thumbnail {
            width: 100%;
            height: 300px;
            margin-bottom: 15px;
            border-radius: 5px;
            object-fit: cover;
        }
        
        .read-more {
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(3px);
        }
        
        .sidebar {
            background: rgba(233, 226, 216, 0.5);
            box-shadow: 0 3px 10px var(--shadow-light);
            padding: 30px;
            border-radius: 5px;
            height: fit-content;
        }
        
        .author-box {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .author-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--accent-gold);
        }
        
        .author-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .author-bio {
            color: var(--text-dark);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-gold-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-link .bsky {
    width: 20px; /* Adjust as needed to match other icons */
    height: 20px; /* Adjust as needed to match other icons */
}

.social-link:hover .bsky {
    content: url("../images/bsky-dark.png");
}
        
        .subscribe-form {
            margin-top: 30px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid #e0e0e0;
            color: var(--text-dark);
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 1rem;
        }
        
        .form-input:focus {
            outline: 2px solid var(--accent-gold);
        }
        
        .submit-button {
            width: 100%;
            padding: 12px;
            border: none;
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-button:hover {
            background-color: var(--text-light);
        }
       
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .tag {
            background-color: rgba(190, 155, 93, 0.2);
            color: var(--primary-dark);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background-color: var(--accent-gold);
            color: var(--background-lightest);
            text-decoration: none;
        }
        
        footer {
    background: linear-gradient(to bottom, var(--primary-medium) 0%, var(--primary-dark) 100%);
    padding: 50px 20px 30px;
    color: var(--text-medium);
    margin-top: 60px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold-light);
}
.quick-links {
                display: block;
            }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(220, 210, 194, 0.1);
            font-size: 0.9rem;
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .main-content {
                gap: 40px;
            }

        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            
            header {
                height: 45vh;
                min-height: 300px;
            }
            
            nav {
                padding: 15px 5%;
            }
            
            .nav-links {
                display: none;
            }
            
            .burgermenu {
            display: block; /* Show burger menu on mobile */
        }

            .header-content h1 {
                font-size: 2.3rem; /* Slightly larger than current mobile size */
                font-weight: 600; /* Keep the boldness on mobile */
            }
            
            .title-first-line {
                margin-bottom: -30px; /* Less negative margin on mobile */
            }
            .quick-links {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            main {
                padding: 40px 20px;
            }
            
            .article-card {
                padding: 20px;
            }
            .quick-links {
                display: none;
            }
        }
        /* Make the title bolder */
    .header-content h1 {
            font-family: 'Cinzel', serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            text-shadow: 2px 2px 4px var(--shadow-dark);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700; /* Increased from 400 to 700 */
        }
        
    /* Styles for date in article cards */
    .date {
        font-size: 0.9rem;
        color: var(--text-medium);
        margin-bottom: 10px;
        font-style: italic;
    }
    
    /* Error message styling */
    .error-message {
        padding: 15px;
        background-color: rgba(255, 150, 150, 0.1);
        border-left: 3px solid #ff4545;
        color: var(--text-dark);
        border-radius: 5px;
    }

    .bsky {
        width: 20px;
        height: 20px;
        vertical-align: middle;
    }

    .emptyspace {
        height: 250px;
    }
    @media screen and (max-width: 768px) {
        .emptyspace {
            height: 10px;
        }
        
    }
footer p {
color: var(--text-medium);
margin-bottom: 0px;
}
a {
color: var(--accent-gold);
}
footer a {
color: var(--primary-light);
}
   .theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 5px 10px;
    margin-left: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle i {
    margin-right: 5px;
}
 