/* Green Libertarian Blog - Complete Stylesheet */
/* Updated with German filenames */

:root {
    --cream: #F5EDD5;
    --dark-brown: #3D2817;
    --green: #2D5F4F;
    --gold: #F0D060;
    --text-dark: #2C2C2C;
    --link-blue: #0066CC;
    --accent-purple: #8B6BA8;
    --content-width: 1050px;
    
    /* Font Size Scale */
    --font-xxl: 55px;
    --font-xl: 48px;
    --font-lg: 36px;
    --font-lg-md: 32px;
    --font-md-lg: 30px;
    --font-md: 28px;
    --font-md-sm: 24px;
    --font-sm-md: 22px;
    --font-sm: 20px;
    --font-xs: 18px;
    --font-xxs: 16px;
    --font-tiny: 14px;
    
    /* Color Palette Additions */
    --grey-dark: #666;
    --grey-medium: #999;
    --grey-light: #ccc;
    --grey-very-light: #ddd;
    --grey-bg: #f9f9f9;
    --error-red: #c83232;
    
    /* Alpha Backgrounds */
    --green-tint-light: rgba(45, 95, 79, 0.03);
    --green-tint-medium: rgba(45, 95, 79, 0.05);
    --green-tint-strong: rgba(45, 95, 79, 0.1);
    --red-tint: rgba(200, 50, 50, 0.1);
    --overlay-dark: rgba(0, 0, 0, 0.5);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Georgia', 'Garamond', serif;
    background-color: var(--cream);
    color: var(--text-dark);																																																																																																																																																								   `
}

body {
    display: flex;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* ===== SIDEBAR ===== */
.sidenav {
    position: fixed;
    left: 0;
    top: 0;
    width: 150px;
    height: 100vh;
    background-color: var(--dark-brown);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 100;
}

.sidenav a {
    color: var(--cream);
    text-decoration: none;
    font-size: var(--font-sm); /* //TT - increased by 2, adjust as needed */
    font-weight: bold; /* //TT - made bold, change to normal if preferred */
    transition: color 0.3s ease;
    display: block;
}

.sidenav a:hover {
    color: var(--gold);
}

/* ===== MAIN CONTAINER WW ===== */

.main-content-wrapper {
	display: flex;
	flex-direction: column;
    margin-left: 150px;
    width: calc(100% - 150px);
    position: relative;
    background-color: var(--cream);
    min-height: 100vh;
    padding: 10px 50px 10px 150px; /* //TT - top right bottom left */
	padding-bottom: min(10vh,120px);  /* Space for graphics */

}

/* ===== HEADER ===== */
header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

header h1 {
    font-size: var(--font-xxl);
    color: var(--green);
    font-weight: bold;
    margin-bottom: 0px;
    letter-spacing: 2px;
}

header p {
    font-size: var(--font-md-lg);
    color: var(--text-dark);
    font-style: italic;
    font-weight: normal;
}

header hr {
    border: none;
    border-top: 2px solid var(--green);
    margin: 10px auto;
    width: 200px;
}

/* ===== ILLUSTRATIONS - Positioned Backgrounds ===== */

/* Sun - scales from 2560x1440 base */
/* Sun - offset scales with screen size */
.sun-illustration {
    position: fixed;
    left: calc(min(8.59375vw, 220px) - max(0px, (1600px - 100vw) * 0.05)); 
	top: 60px;
    width: min(14.0625vw, 360px);
    height: min(14.0625vw, 360px);
    background-image: url('/static/images/Sonnekreis3.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Wind Turbines - scales from 2560x1440 base */
.windmill-illustration {
    position: fixed;
    right: -350px;
    top: 40px;
    width: min(32.8125vw, 840px);  /* //TT - 32.8125vw at 2560px = 840px max */
    height: min(39.0625vw, 1000px); /* //TT - 39.0625vw at 2560px = 1000px max */
    background-image: url('/static/images/wind_räder2.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Grüne Hand - scales from 2560x1440 base */
.hand-illustration {
    position: fixed;
    left: calc(min(8.59375vw, 220px) - max(0px, (1600px - 100vw) * 0.05) - 100px); 
    bottom: -10vw;
    width: min(27.6875vw, 760px);  /* //TT - 29.6875vw at 2560px = 760px max */
    height: min(35.5vw, 960px);    /* //TT - 37.5vw at 2560px = 960px max */
    background-image: url('/static/images/Grüne_Hand3.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

/* Waves - scales from 2560x1440 base */
.wavy-lines {
    position: fixed;
    bottom: calc(0px - max(0px, (1200px - 100vw) * 0.09));  /* Same sink as stars! */
    left: calc(50% + max(0px, (800px - 100vh) * 0.3)); /* Shifts right as height decreases */
	transform: translateX(-40%);
    width: min(54.6875vw, 1400px);  /* //TT - 54.6875vw at 2560px = 1400px max */
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wavy-lines::before {
    content: '';
    width: min(23.4375vw, 600px);  /* //TT - 23.4375vw at 2560px = 600px max */
    height: min(10vh, 120px);
    background-image: url('/static/images/Schlange_Welle.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.wavy-lines::after {
    content: '';
    width: min(23.4375vw, 600px);  /* //TT - 23.4375vw at 2560px = 600px max */
    height: min(10vh, 120px);
    background-image: url('/static/images/Schlange_Welle.png');
    background-size: contain;
    background-repeat: no-repeat;
}


/* Stars - scales from 2560x1440 base */
.stars-illustration {
    position: fixed;
    bottom: calc(0px - max(0px, (1200px - 100vw) * 0.09));  /* Slow sink */
    left: calc(55% - max(0px, (100px - 50vh) * 0.04));  /*Shifts slightly right as height decreases */
    transform: translateX(-60%);
    width: min(5.8vw, 150px);   /* //TT - 5.859vw at 2560px = 150px max */
    height: min(10vh, 100px);  /* Same as waves - scales with viewport height */
    background-image: url('/static/images/Sterne1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 4;
}
/* Brown stripe - GROWS as screen shrinks (opposite of other elements) */
.brown-stripe {
    position: fixed;
	bottom: calc(35px + max(0px, (1600px - 100vw) * 0.03));  
    right: max(0.7vw, 5px);  /* //TT - Moves LEFT as screen shrinks (right offset decreases) */
    width: calc(240px - max(0px, (1800px - 100vw) * 0.075));
    height: calc(85px - max(0px, (1600px - 100vw) * 0.026));
    background-image: url('/static/images/brauner_Streifen1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
    border-radius: 4px;
}
/* WEC - Same size as sk, positioned BELOW sun */
.wec-illustration {
    position: fixed;
	left: calc(min(8.59375vw, 220px) - max(0px, (1600px - 100vw) * 0.05));
	top: calc(60px + min(14.0625vw, 360px) + 40px);  /* //TT - Below sun with 40px gap */
    width: min(14.0625vw, 360px);
    height: min(14.0625vw, 360px);
    background-image: url('/static/images/WEC2.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

/* SP - Below WEC */
.sp-illustration {
    position: fixed;
    left: calc(min(8.59375vw, 220px) - max(0px, (1600px - 100vw) * 0.05));
    top: calc(60px + min(14.0625vw, 360px) + 40px + min(14.0625vw, 360px) + 40px);  /* //TT - Below WEC with 40px gap */
    width: min(14.0625vw, 360px);
    height: min(14.0625vw, 360px);
    background-image: url('/static/images/Solarpanel1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
/* Money bag positioning */
.money-illustration {
    position: fixed;
    left: calc(min(8.59375vw, 220px) - max(0px, (1600px - 100vw) * 0.06)); 
    bottom: 100px;
    width: min(10.4vw, 266px);   /* 2x bigger: was 5.2vw/133px */
    height: min(10.4vw, 266px);  /* 2x bigger: was 5.2vw/133px */
    background-image: url('/static/images/Geldsack1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    display: none !important;  /* Hidden by default */
}

/* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP Photo captions PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP*/
figure {
    margin: 10px 0;
    text-align: left;
}

figure img {
    max-width: 80%;
    height: auto;

}

figcaption {
    margin-top: 10px;
    font-size: var(--font-xxs);
    color: var(--gray-dark);
    font-weight: bold;
    font-style: normal;
    line-height: 1.6;
}
/* ===== CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC CONTENT AREAS CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC ===== */

.content {
    position: relative;
    z-index: 10;
    max-width: var(--content-width);
    width: 100%;
    margin: 0 auto;
    overflow-y: auto;
}
.page-title {
    font-size: var(--font-lg);
    color: var(--green);
    margin-bottom: 10px;
    font-weight: normal;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
}

.page-title h2 {
    font-size: var(--font-lg-md);
	position: center;
    color: var(--green);
    font-weight: bold;
}

/* ===== BLOG INDEX ===== */

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.post-item {
    padding: 0;
    border: none;
    background: transparent;
}

.post-item h3 {
    font-size: var(--font-md-lg);
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: normal;
}

.post-item h3 a {
    color: var(--link-blue);
	font-size: var(--font-md-sm);
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-item h3 a:hover {
    color: var(--gold);
}

.post-meta {
    font-size: var(--font-xxs);
    color: var(--grey-dark);
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
}


/* ===== SMALL TEXT (dates, meta) ===== */
small {
    font-size: var(--font-xs);
    color: var(--grey-dark);
}

.post-excerpt {
    font-size: var(--font-xxs);
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===== BLOG DETAIL PAGE ===== */

.post-detail {
    position: relative;
    z-index: 10;
}

.post-detail h2 {
    font-size: var(--font-xl);
    color: var(--green);
    margin-bottom: 20px;
    font-weight: normal;
}

.post-detail .post-meta {
    margin-bottom: 60px;
}

/* ===== PAGE TITLE (block page_title) ===== */
.page_title h2 {
    font-size: var(--font-xl);
    color: var(--green);
    margin-bottom: 20px;
    font-weight: normal;
}

/* ===== BLOG POST CONTENT FORMATTING ===== */

.post-body {
    margin-top: 40px;
}

.post-body h2 {
    font-size: var(--font-md-sm);
    font-weight: bold;
    color: var(--green);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-body h3 {
    font-size: var(--font-xs);
    font-weight: bold;
    color: var(--green);
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-body strong,
.post-body b {
    font-weight: bold;
    color: var(--text-dark);
}

.post-body em,
.post-body i {
    font-style: italic;
}

.post-body p {
    font-size: var(--font-xxs);
    line-height: 1.9;
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.post-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.post-body blockquote {
    border-left: 4px solid var(--green);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--grey-dark);
}
.post-body p {
    margin-bottom: 20px;
}

/* ===== ABOUT PAGE ===== */

.about-content h3 {
    font-size: var(--font-md-sm);
    color: var(--green);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.about-content p {
    font-size: var(--font-xxs);
    line-height: 1.9;
    margin-bottom: 200px;

}


/* ===== TOPICS PAGE ===== */

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.topic-item {
    border-left: 4px solid var(--green);
    padding-left: 20px;
}

.topic-item h3 {
    font-size: var(--font-sm-md);
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: normal;
}

.topic-item a {
    color: var(--green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.topic-item a:hover {
    color: var(--gold);
}

.topic-count {
    font-size: var(--font-tiny);
    color: var(--grey-dark);
    margin-top: 5px;
}

/* ===== COMMENTS SECTION ===== */

.comments-section {
    margin-top: 60px;
    border-top: 2px solid var(--green);
    padding-top: 40px;
}

.comments-section h3 {
    font-size: var(--font-md-sm);
    color: var(--green);
    margin-bottom: 30px;
    font-weight: normal;
}

.comment-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--grey-very-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: var(--font-xxs);
}

.form-group textarea {
    min-height: 200px;
    resize: vertical;
}

.btn {
    background-color: var(--green);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: var(--font-xxs);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--gold);
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--green-tint-medium);
    border-left: 3px solid var(--green);
}

.comment-author {
    font-weight: bold;
    color: var(--green);
}

.comment-date {
    font-size: var(--font-tiny);
    color: var(--grey-dark);
}


/* ===== NEWSLETTER SIGNUP BUTTON ===== */

.signup-button {
    position: fixed;
    bottom: clamp(35px, calc(80px - 2vw), 80px);  /* Smooth bottom transition */
    right: max(0.27vw, 7px);
    background-color: transparent;
    color: var(--text-dark);
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    font-size: clamp(var(--font-tiny), calc(10px + .8vw), 26px); /* Smooth font scaling: 16-26px */
    font-weight: bold;
    cursor: pointer;
    z-index: 51;
    transition: color 0.3s ease;
}
.signup-button:hover {
    color: var(--gold);
}

/* ===== NEWSLETTER MODAL ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--cream);
    padding: 40px;
    border: 2px solid var(--green);
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-content h2 {
    color: var(--green);
    font-size: var(--font-md);
    margin-bottom: 20px;
    font-weight: normal;
}

.modal-content p {
    color: var(--text-dark);
    font-size: var(--font-xxs);
    line-height: 1.8;
    margin-bottom: 30px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: var(--font-md);
    font-weight: bold;
    color: var(--green);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--gold);
}


/* ===== TOPICS PAGE ===== */

.topics-container {
    max-width: var(--content-width);
    margin: 0 auto;
}

.topics-intro {
    font-size: var(--font-sm);
    color: var(--text-dark);
    margin-bottom: 30px;
}

.topics-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.topic-card {
    border-left: 4px solid var(--link-blue);
    padding: 15px;
    background-color: var(--grey-bg);
}

.topic-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: var(--font-sm-md);
    font-weight: bold;
}

.topic-title a {
    text-decoration: none;
    color: var(--link-blue);
    transition: color 0.3s ease;
}

.topic-title a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.topic-count {
    color: var(--grey-dark);
    margin: 10px 0 0 0;
    font-size: var(--font-tiny);
}

.topics-empty {
    color: var(--grey-medium);
    margin-top: 30px;
}

/* ===== TOPIC DETAIL PAGE ===== */

.topic-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.topic-posts .post-item {
    padding: 0px;
    border-left: 4px solid var(--green);
    background-color: var(--green-tint-light);
}

.topic-posts .post-item h3 {
    font-size: var(--font-sm);
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: normal;
}

.topic-posts .post-item h3 a {
    color: var(--link-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.topic-posts .post-item h3 a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.read-more {
    color: var(--green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    color: var(--gold);
}

/* === RRRRRRRRRRRRRRRRRRR RESPONSIVE DESIGN RRRRRRRRRRRRRRRRRRR===== */

/* adjust wavy lines and star when sidebar goes away*/
@media (max-width: 1000px) {
    .content-offset-wrapper {
        padding-left: 0;
    }
	.windmill-illustration,
	.money-illustration{
	display: none !important;
	}
}


/* Mobile - final adjustments */

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    
    .sidenav {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
     /* WW  */
    .main-content-wrapper {
        margin-left: 0;
        width: 100%;
        padding-bottom: 200px;  /* Space for graphics */
    }
	.stars-illustration {
    position: fixed;
    left: 40%;
    transform: translateX(-30%);
	}
	.wavy-lines {
    position: fixed;
    left: 35%;
    transform: translateX(-40%);

}
    
    header h1 {
        font-size: var(--font-lg-md);
    }
    
    header p {
        font-size: var(--font-sm);
    }
    

}

/* ===== PAGE-SPECIFIC VISIBILITY ===== */

/* DEFAULT: Hide all page-specific left elements by default */
.hand-illustration,
.wec-illustration,
.sp-illustration {
    display: none !important;
}

/* THEN override for specific pages */

/* Page 1 (Home): Show ONLY hand */
.page-home .hand-illustration {
    display: block !important;
}

/* Pages 2-3 (About, Topics): Show ONLY wec/sp */
.page-about .wec-illustration,
.page-about .sp-illustration,
.page-topics .wec-illustration,
.page-topics .sp-illustration {
    display: block !important;
}


/* Hide main header on post detail pages */
.page-post-detail header {
    display: none !important;
}

/* Post Detail pages ONLY: Giant sun, WT 1/3 visible, money bag */
.page-post-detail .sun-illustration {
    width: min(28.125vw, 720px);  /* //TT - CHANGED: 2X bigger */
    height: min(28.125vw, 720px);
    left: -200px;  /* //TT - CHANGED: Half hidden + 100px more left */
}

.page-post-detail .windmill-illustration {
    right: calc(-44vw * 2/3 + 100px);  /* //TT - CHANGED: 2/3 off + 100px more left */
}

/* Remove bottom padding on post detail page */
.page-post-detail .main-content-wrapper {
    padding-bottom: 20px !important;
}

/* Hide WEC/SP on post detail pages */
.page-post-detail .wec-illustration,
.page-post-detail .sp-illustration {
    display: none !important;  /* //TT - ADDED: No WEC/SP on posts */
}

/* Hide wavy lines and stars and signup button and text on topic detail page */
.page-post-detail .wavy-lines,
.page-post-detail .brown-stripe,
.page-post-detail .stars-illustration {
    display: none !important;
}
/* Hide signup button on post detail page */
.page-post-detail .signup-button {
    display: none !important;
}

/* Show money bag on both post detail AND topic detail pages */
.page-post-detail .money-illustration {
    display: block !important;
}

/* Smaller images on home and topic list pages */
.page-home .post-item img,
.page-topic-detail .post-item img {
    max-width: 400px;
    height: auto;
    margin: 10px 0;
}

/* ===== DJANGO MESSAGES ===== */

.messages {
    position: relative;
    z-index: 20;
    max-width: var(--content-width);
    margin: 0 auto 30px auto;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: var(--font-xxs);
}

.alert-success {
    background-color: var(--green-tint-strong);
    border-left: 4px solid var(--green);
    color: var(--green);
}

.alert-error {
    background-color: var(--red-tint);
    border-left: 4px solid var(--error-red);
    color: var(--error-red);
}

/* ===== NEWSLETTER MODAL IMPROVEMENTS ===== */

.modal-content form {
    margin-top: 20px;
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--green);
    border-radius: 4px;
    font-size: var(--font-xxs);
    font-family: 'Georgia', 'Garamond', serif;
}

.modal-content .btn {
    width: 100%;
    padding: 12px;
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: var(--font-xxs);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content .btn:hover {
    background-color: var(--gold);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.form-message .success {
    color: var(--green);
    font-weight: bold;
}

.form-message .error {
    color: var(--error-red);
    font-weight: bold;
}

/* ===== CONTACT PAGE ===== */

.contact-page {
    max-width: var(--content-width);
    margin: 0 auto;
}

.contact-form {
    margin-bottom: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--grey-light);
    border-radius: 4px;
    font-size: var(--font-xxs);
    font-family: 'Georgia', 'Garamond', serif;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--text-dark);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: var(--font-xxs);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--green);
}

/* Subscribe section on contact page */
.subscribe-section {
    border-top: 2px solid var(--green);
    padding-top: 40px;
    text-align: center;
}

.subscribe-section h3 {
    font-size: var(--font-md);
    color: var(--green);
    margin-bottom: 10px;
    font-weight: normal;
}

.subscribe-section p {
    font-size: var(--font-xxs);
    color: var(--text-dark);
    margin-bottom: 30px;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input-group {
    display: flex;
    gap: 10px;
}

.email-input-group input {
    flex: 1;
}

.btn-subscribe {
    width: 50px;
    padding: 12px;
    background-color: var(--text-dark);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: var(--font-sm);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--green);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .subscribe-section {
        padding: 0 20px;
    }
}
