@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;1,700&display=swap');

/* Modern CSS Reset and Base Styles */
:root {
    --primary-color: #ffe89e;
    --secondary-color: #ffd166;
    --accent-color: #ff9f1c;
    --text-color: #2c3e50;
    --text-color-light: #4a5568;
    --light-bg: #fff9e6;
    --dark-bg: #2c3e50;
    --box-bg: #ffffff;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #F5F5DC;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000; /* Fallback szín a kép betöltése előtt */
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Változtatás cover-ről contain-re */
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    image-rendering: -webkit-optimize-contrast; /* Élesebb kép */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.1)
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    pointer-events: none; /* Hogy az overlay ne blokkolja a gomb kattinthatóságát */
}

.hero-section .btn-primary {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    font-weight: 500;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.hero-section .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-color);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn-primary {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    background-color: transparent;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Profile Image Styles */
.profile-image-container {
    position: relative;
    padding: 1rem;
}

.profile-image-container img {
    border: 5px solid white;
    transition: var(--transition);
}

.profile-image-container:hover img {
    transform: scale(1.02);
}

/* Content Box Styles */
.content-box {
    background-color: white;
    border-radius: 1rem;
    transition: var(--transition);
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-section img {
        object-fit: cover; /* Nagyobb képernyőkön cover */
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh; /* Kisebb képernyőkön kisebb magasság */
    }
    
    .hero-section img {
        object-fit: contain; /* Mobilnézetben contain */
    }
    
    .hero-section {
        text-align: center;
    }
    
    .profile-image-container {
        margin-bottom: 2rem;
    }
    
    .content-box {
        margin-top: 2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

header {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: black;
    text-align: center;
    z-index: 1000;
}

header img {
    max-width: 100%;
    max-height: 50vh; /* Maximum magasság 10%-a a nézetablak magasságának */
    width: auto; /* A szélesség automatikusan alkalmazkodik */
    object-fit: contain; /* A kép tartalomhoz illeszkedik anélkül, hogy torzulna */
}

main {
    padding-top: 150px;
    flex: 1 0 auto;
}

.navbar-color {
    background-color: #ffe89e;
}

.footer-color {
    background-color: #ffe89e;
}

.old-standard-tt-bold {
    font-family: "Old Standard TT", serif;
    font-weight: bold;
    font-style: normal;
}

.pt-serif-regular-italic {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.ubuntu-regular {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  
.ubuntu-bold-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: italic;
}
  
.decoration {
    text-decoration: none;
    color: #fcb900;
}

#font {
    font-size: 17px;
}

.box-color {
    background-color: #ffe89e91;
    overflow-x: auto; /* Görgetés engedélyezése túl széles tartalom esetén */
    max-width: 100%; /* Biztosítja, hogy ne nyúljon ki */
    padding: 1rem;
}

.borderbg {
    background-color: #ffe89e !important; 
}

.border-orange {
    border: 1px solid #ffe89e; /*ffe89e91*/
}

.card-color {
    background-color: #ffe58e91;
}

p {
    text-align: justify;
    font-size: 16.5px;
}

#item {
    color: black;
    transition: color 0.3s, transform 0.3s;
}

#item:hover {
    color: #646464;
    transform: scale(1.1);
}

.accordion-button {
    background-color: #ffe89e91 !important;
}

.accordion {
    --bs-accordion-border-color: #ffe89e91 !important;
}

@media only screen and (max-width: 991px) {
    #item {
        color: black;
        transition: color 0.3s, transform 0.3s;
        text-align: center;
    }
    
    #item:hover {
        color: #646464;
        transform: scale(1.1);
        text-align: center;
    }
}

@media (min-width: 768px) {
    .margintop {
        margin-top: 10rem;
    }
}

@media (max-width: 767px) {
    .margintop {
        margin-top: 0;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.contact-hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin-top: 0;
}

/* Contact Card Styles */
.contact-card {
    background: var(--box-bg);
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 1rem;
}

.contact-card-header h2 {
    color: var(--text-color);
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    background-color: var(--box-bg);
    border: 1px solid var(--light-bg);
}

.contact-item:hover {
    background-color: var(--light-bg);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item-content h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color-light);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
}

.contact-link span {
    flex: 1;
    margin-right: 1rem;
}

.contact-link i {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
}

.contact-link.copied {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
}

.contact-link.copied i {
    transform: scale(1.2);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--box-bg);
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h2 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-container {
    flex: 1;
    min-height: 600px;
    position: relative;
    overflow-y: auto;
    border-radius: 0.5rem;
    background-color: var(--box-bg);
}

.form-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow-y: auto;
}

/* Availability Modal */
.availability-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: var(--box-bg);
    border: 1px solid var(--light-bg);
    transition: background-color 0.3s ease;
}

.availability-item:hover {
    background-color: var(--light-bg);
}

.availability-item.weekend {
    background-color: var(--light-bg);
    color: var(--text-color-light);
}

.availability-item .day {
    font-weight: 500;
    color: var(--text-color);
}

.availability-item .hours {
    color: var(--accent-color);
    font-weight: 500;
}

/* Modal Styles */
.modal-content {
    background-color: var(--box-bg);
    border: none;
    box-shadow: var(--box-shadow);
}

.modal-header {
    border-bottom: 1px solid var(--light-bg);
}

.modal-title {
    color: var(--text-color);
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

/* Modal Button */
.modal .btn-secondary {
    background-color: var(--text-color-light);
    border: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.modal .btn-secondary:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-card,
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }

    .form-container {
        min-height: 500px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Footer Styles */
footer {
    flex-shrink: 0;
    width: 100%;
}

/* Desktop Footer */
@media (min-width: 769px) {
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    main {
        flex: 1 0 auto;
    }

    footer {
        margin-top: auto;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    body {
        min-height: auto;
        display: block;
    }

    main {
        flex: none;
    }

    footer {
        margin-top: 2rem;
    }
}

/* Prices Page Styles */
.prices-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.prices-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.prices-hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
}

/* Service Tabs */
.service-tabs {
    margin-bottom: 3rem;
}

.nav-pills {
    gap: 1rem;
}

.nav-pills .nav-link {
    color: var(--text-color);
    background-color: var(--box-bg);
    border: 2px solid var(--accent-color);
    border-radius: 2rem;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-pills .nav-link i {
    font-size: 1.2rem;
}

.nav-pills .nav-link:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Price Cards */
.price-card {
    background: var(--box-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.price-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.price-card:hover img {
    transform: scale(1.02);
}

/* Testing Content */
.testing-content {
    background: var(--box-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

/* VAT Notice */
.vat-notice {
    background: var(--light-bg);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .prices-hero {
        padding: 3rem 0;
    }

    .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-pills .nav-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .price-card {
        margin-bottom: 1rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.services-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.services-hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
}

/* Process Section */
.process-card {
    background: var(--box-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-color);
    color: var(--text-color);
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-note {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-bg);
}

/* Service Cards */
.service-card {
    background: var(--box-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    background: var(--light-bg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.service-body {
    padding: 1.5rem;
}

.service-body h4 {
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.service-body h5 {
    color: var(--text-color);
    margin: 1.2rem 0 0.8rem;
    font-size: 1.1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.service-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 0;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .process-step:hover {
        transform: translateY(5px);
    }

    .step-content p {
        font-size: 1rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-header i {
        font-size: 1.8rem;
    }

    .service-header h3 {
        font-size: 1.3rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.faq-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.faq-hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
}

/* FAQ Card */
.faq-card {
    background: var(--box-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

/* FAQ Search */
.faq-search .input-group {
    border: 2px solid var(--light-bg);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-search .input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 28, 0.1);
}

.faq-search .input-group-text {
    border: none;
    background: transparent;
    color: var(--text-color-light);
}

.faq-search .form-control {
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.faq-search .form-control:focus {
    box-shadow: none;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--light-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.2rem;
    background: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.faq-question i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    background: var(--box-bg);
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 1.2rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color-light);
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--text-color-light);
}

/* FAQ Keyword Badge Styles */
.faq-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.keyword-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #FFD700;
    color: #333;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.keyword-badge:hover {
    background-color: #FFC107;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-hero {
        padding: 3rem 0;
    }

    .faq-card {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 0.95rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.blog-hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
}

/* Blog List */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: var(--box-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-header {
    padding: 2rem;
    background: var(--light-bg);
    border-bottom: 2px solid var(--primary-color);
}

.blog-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.blog-meta i {
    color: var(--accent-color);
}

.blog-card-body {
    padding: 2rem;
}

.blog-content {
    color: var(--text-color-light);
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.blog-card-footer {
    padding: 1.5rem 2rem;
    background: var(--light-bg);
    border-top: 1px solid var(--primary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--text-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Empty State */
.blog-empty {
    padding: 4rem 2rem;
    background: var(--box-bg);
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.blog-empty i {
    color: var(--text-color-light);
    opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 0;
    }

    .blog-card-header,
    .blog-card-body,
    .blog-card-footer {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.3rem;
    }

    .blog-content {
        font-size: 0.95rem;
    }
}