/* 
Türk Kültürü ve Gelenekleri Bloğu Ana CSS Dosyası
*/

/* ---------- GENEL STILLER ---------- */
:root {
    --primary-color: #e81c23; /* Türk bayrağının kırmızısı */
    --secondary-color: #003366; /* Koyu mavi */
    --accent-color: #f5b700; /* Altın sarısı */
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f9f9f9;
    --dark-bg: #222222;
    --border-color: #dddddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --max-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn, button.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

.btn:hover, button.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 20px;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

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

.nav-links a.active:after, .nav-links a:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(1);
    transition: var(--transition);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ---------- FUN FACT & WELCOME LETTER ---------- */
.fun-fact-container, .welcome-letter {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.fun-fact h3, .welcome-letter h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fun-fact p, .welcome-letter p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.welcome-letter .signature {
    font-style: italic;
    text-align: right;
    font-weight: 600;
    margin-top: 20px;
}

/* ---------- RECENT POSTS SECTION ---------- */
.recent-posts {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
    color: #666;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    gap: 5px;
}

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

/* ---------- NEWSLETTER SECTION ---------- */
.newsletter {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 20px;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--light-text);
}

.newsletter p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    width: 60%;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* ---------- FOOTER ---------- */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 40px 20px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.footer-links h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

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

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--light-text);
    padding-left: 5px;
}

.footer-social h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
}

.footer-social h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: #aaa;
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--light-text);
}

/* ---------- COOKIE CONSENT ---------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 20px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Will be shown with JS */
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--light-text);
}

.cookie-btn.customize, .cookie-btn.reject {
    background-color: transparent;
    border: 1px solid var(--light-text);
    color: var(--light-text);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-policy-link {
    color: #aaa;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    color: var(--light-text);
}

/* ---------- BLOG POST PAGE ---------- */
.post-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    max-width: var(--max-width);
    margin: 120px auto 60px;
    padding: 0 20px;
}

.blog-post {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.post-header {
    padding: 30px 30px 0;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    color: #777;
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    margin-top: 40px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.post-content h3 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.post-content h4 {
    margin-top: 25px;
    font-size: 1.3rem;
}

.post-content p, .post-content ul, .post-content ol {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content ul, .post-content ol {
    padding-left: 20px;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 10px;
}

.post-image-container {
    margin: 30px 0;
}

.post-image {
    width: 100%;
    border-radius: var(--border-radius);
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    padding: 0 30px;
}

.tag-label {
    font-weight: 600;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.share-post {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-post span {
    font-weight: 600;
}

.social-share {
    display: flex;
    gap: 15px;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}

.nav-previous a, .nav-next a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-previous a:hover, .nav-next a:hover {
    color: var(--primary-color);
}

/* ---------- SIDEBAR ---------- */
.sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
}

.recent-posts a.active, .recent-posts a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.categories a {
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.categories a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories span {
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
}

/* ---------- ABOUT PAGE ---------- */
.about-container {
    max-width: var(--max-width);
    margin: 120px auto 60px;
    padding: 0 20px;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h1 {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.about-intro h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    color: var(--secondary-color);
    margin-top: 30px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    line-height: 1.8;
}

.team-section {
    margin-top: 60px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.team-section h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3, .team-member p {
    padding: 0 20px;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .social-icons {
    padding: 0 20px 20px;
    margin-top: 15px;
}

.about-values {
    margin-top: 60px;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
}

.about-services {
    margin-top: 60px;
}

.about-services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
}

.testimonials {
    margin-top: 60px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #777;
}

.about-join {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
}

.about-join h2 {
    color: var(--light-text);
    margin-bottom: 20px;
}

.about-join p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- CONTACT PAGE ---------- */
.contact-container {
    max-width: var(--max-width);
    margin: 120px auto 60px;
    padding: 0 20px;
}

.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero h1 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-hero h1:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-info h2 {
    color: var(--light-text);
    margin-bottom: 30px;
    position: relative;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-item h3 {
    color: var(--light-text);
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-social h3 {
    color: var(--light-text);
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    position: relative;
}

.contact-form-container h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(232, 28, 35, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: 400;
}

.contact-map {
    margin-top: 60px;
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-btn {
    margin-top: 20px;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media screen and (max-width: 1024px) {
    header {
        padding: 15px 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .post-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px;
    }
    
    .logo-container h1 {
        font-size: 1.2rem;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background-color: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .burger {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .posts-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .post-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .values-container, .services-container, .testimonial-container {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-container h1 {
        font-size: 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .share-post {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-join {
        padding: 30px 15px;
    }
    
    .contact-form-container, .contact-info {
        padding: 25px;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 90%;
    }
}
