/* Base Styles */
:root {
    --primary: #6a1b9a;
    --primary-dark: #38006b;
    --primary-light: #9c4dcc;
    --secondary: #ffab00;
    --secondary-dark: #c67c00;
    --secondary-light: #ffdd4b;
    --dark: #121212;
    --dark-medium: #1e1e1e;
    --dark-light: #2d2d2d;
    --text-light: #f5f5f5;
    --text-medium: #d0d0d0;
    --text-dark: #999999;
    --success: #00c853;
    --error: #ff1744;
    --warning: #ffab00;
    --info: #2979ff;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Header & Navigation */
header {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 10px 5%;
    background-color: rgba(18, 18, 18, 0.95);
}

.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 70%;
}

nav ul li a.active {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.6)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, transparent 100%);
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(106, 27, 154, 0.5);
    color: var(--text-light);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    z-index: -1;
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.cta-button:hover::before {
    transform: scaleX(1);
}

/* Featured Posts */
.featured-posts {
    padding: 80px 5%;
    background-color: var(--dark-medium);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.featured-posts h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    background: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease;
}

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

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.post-card:hover img {
    transform: scale(1.05);
}

.post-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.post-card p {
    padding: 0 20px 20px;
    color: var(--text-medium);
    flex-grow: 1;
}

.read-more {
    display: block;
    text-align: center;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    color: var(--text-light);
    padding: 10px 0;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.read-more:hover {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--text-light);
}

/* Editor's Word Section */
.editors-word {
    padding: 70px 5%;
    background-color: var(--dark);
}

.editors-word h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.editors-word h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.editor-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.editor-content img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.editor-text {
    flex: 1;
    padding: 30px;
}

.editor-signature {
    font-style: italic;
    color: var(--primary-light);
    font-weight: 500;
    margin-top: 20px;
}

/* Random Fact Section */
.random-fact {
    padding: 50px 5%;
    background-color: var(--dark-medium);
}

.fact-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--dark-light), var(--dark));
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.fact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 5px 0 0 5px;
}

.fact-container h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.fact-container h3 i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.fact-container p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--dark-light);
    padding: 70px 5% 20px;
}

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

.footer-section h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-section p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

.footer-section ul li a {
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-light);
}

.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: var(--dark);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-light);
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
}

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

.cookie-btn {
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.cookie-btn.decline {
    background-color: transparent;
    color: var(--text-medium);
    border: 1px solid var(--text-dark);
}

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

.cookie-more {
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-align: center;
    margin-top: 10px;
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(to right, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.6)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    position: relative;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, transparent 100%);
    opacity: 0.4;
    z-index: 1;
}

.blog-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.blog-header-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.blog-posts {
    padding: 80px 5%;
    background-color: var(--dark);
}

.post {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background-color: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.post-image {
    flex: 0 0 300px;
}

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

.post-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

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

.post-meta i {
    margin-right: 5px;
    color: var(--primary-light);
}

.read-more-btn {
    align-self: flex-start;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.read-more-btn:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

/* About Page Styles */
.about-header {
    background: linear-gradient(to right, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.6)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    position: relative;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, transparent 100%);
    opacity: 0.4;
    z-index: 1;
}

.about-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-content {
    padding: 80px 5%;
    background-color: var(--dark);
}

.about-story {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-story h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-story h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-values {
    max-width: 1100px;
    margin: 0 auto;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-values h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.value-item {
    background-color: var(--dark-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
    color: var(--secondary);
}

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

.team-section {
    padding: 80px 5%;
    background-color: var(--dark-medium);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.team-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.team-member p:nth-of-type(1) {
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p:nth-of-type(2) {
    padding-bottom: 20px;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(to right, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.6)), url('images/5.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    position: relative;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, transparent 100%);
    opacity: 0.4;
    z-index: 1;
}

.contact-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-content {
    padding: 80px 5%;
    background-color: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background-color: var(--dark-light);
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-socials h3 {
    margin-bottom: 15px;
}

.contact-form-container {
    background-color: var(--dark-light);
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--dark);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(156, 77, 204, 0.3);
}

.submit-btn {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--text-light);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: auto;
    justify-self: center;
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
}

.map-section {
    padding: 50px 5%;
    background-color: var(--dark-medium);
}

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

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-placeholder p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(30, 30, 30, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--text-light);
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    position: relative;
    background-color: var(--dark-light);
    margin: 10% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.5s;
}

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

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

.thank-you-container {
    padding: 40px;
    text-align: center;
}

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

.thank-you-container h2 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.thank-you-container p {
    margin-bottom: 30px;
    color: var(--text-medium);
}

#modal-close-btn {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--text-light);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#modal-close-btn:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
}

/* Responsive Design */
@media screen and (max-width: 1100px) {
    .editor-content {
        flex-direction: column;
    }
    
    .editor-content img {
        width: 100%;
        height: 250px;
    }
}

@media screen and (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .post-image {
        flex: 0 0 100%;
    }
    
    .post-image img {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .post {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}
