/* === Import Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #070707;
    font-family: 'Inter', sans-serif;
    color: #e8e8e8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === Typographie === */
h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(3rem, 12vw, 6.5rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
}

h3 {
    font-size: 1.8rem;
    font-weight: 300;
}

.text-gold { color: #c9a27b; }
.bg-gold { background-color: #c9a27b; }
.border-gold { border-color: #c9a27b; }
.hover-text-gold:hover { color: #c9a27b; }
.hover-bg-gold:hover { background-color: #c9a27b; }
.hover-border-gold:hover { border-color: #c9a27b; }

/* === Navigation immersive === */
.nav-immersive {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.92);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(201, 162, 123, 0.08);
    transition: all 0.4s ease;
    padding: 1rem 0;
}

.nav-immersive.scrolled {
    background: rgba(7, 7, 7, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-brand .gold-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #c9a27b;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a27b;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link.active {
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    background: rgba(7, 7, 7, 0.98);
    padding: 1rem 2rem 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 0.9rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

/* === Hero Immersif === */
.hero-container {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../assets/header.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-container:hover .hero-bg img {
    transform: scale(1.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #c9a27b;
    border-bottom: 2px solid rgba(201, 162, 123, 0.3);
    padding: 1.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-weight: 300;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    font-size: 100px;
}

.hero-title .highlight {
    color: #c9a27b;
    font-weight: 300;
}

.hero-sub {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.2rem auto 0;
    max-width: 600px;
    letter-spacing: 0.02em;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* === Boutons Modernes === */
.btn-primary {
    background: #c9a27b;
    color: #070707;
    padding: 1rem 3rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background: #b8895c;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(201, 162, 123, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline:hover {
    border-color: #c9a27b;
    color: #c9a27b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5);
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }
}

/* === Sections === */
.section-padding {
    padding: 7rem 2rem;
}

.section-dark {
    background: #070707;
}

.section-light {
    background: #0f0f0f;
}

.section-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #c9a27b;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: #c9a27b;
}

.section-title {
    color: #fff;
    font-size: 50px;
    margin: 25px 0;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: #c9a27b;
    margin: 1.2rem auto 2.5rem auto;
}

.section-sub {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    max-width: 600px;
}

/* === Titres de pages améliorés === */
.page-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(180deg, rgba(201, 162, 123, 0.05) 0%, transparent 100%);
}

.page-header h1 {
    font-weight: 300;
    letter-spacing: 0.05em;
    font-size: 50px;
    margin: 80px 0 50px;
}

.page-header .subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 1.1rem;
    margin: 0.5rem auto 0;
    max-width: 600px;
}

/* === About === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image .frame {
    position: absolute;
    inset: 1.5rem;
    border: 1px solid rgba(201, 162, 123, 0.527);
    pointer-events: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    text-align: center;
}

.about-stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #c9a27b;
    line-height: 1;
}

.about-stat .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

/* === Services Cards améliorées === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 2rem;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a27b, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    border-color: rgba(201, 162, 123, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 162, 123, 0.1);
    border: 1px solid rgba(201, 162, 123, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.4s;
}

.service-card:hover .icon-wrapper {
    background: rgba(201, 162, 123, 0.2);
    border-color: #c9a27b;
    transform: scale(1.05);
}

.service-card .icon {
    font-size: 2rem;
    color: #c9a27b;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 15px 0 7px;
    line-height: 1.6;
    max-width: 280px;
}

.service-card .price {
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #c9a27b;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

/* === Gallery === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 0.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(13) {
    grid-column: span 2;
    grid-row: span 2;
}

/* === Blog Cards avec images de fond === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    transition: opacity 0.5s;
}

.blog-card:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.blog-card .content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
}

.blog-card .meta {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 1rem;
}

.blog-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0.6rem 0;
    color: #fff;
    line-height: 1.4;
}

.blog-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    color: #c9a27b;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
}

.blog-card .read-more:hover {
    gap: 0.8rem;
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    transition: all 0.4s;
    text-align: center;
}

.testimonial-card:hover {
    border-color: rgba(201, 162, 123, 0.15);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #c9a27b;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    display: inline-block;
}

.testimonial-card blockquote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    font-weight: 300;
    line-height: 1.8;
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.testimonial-card .client img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .client .name {
    font-weight: 500;
    color: #fff;
    font-size: 0.9rem;
}

.testimonial-card .client .role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* === Contact Form amélioré === */
.contact-wrapper {
    background: rgba(17, 17, 17, 0.872);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(27, 27, 27, 0.723);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 1rem 1.2rem;
    transition: all 0.4s;
    font-family: 'Inter', sans-serif;
    width: 100%;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c9a27b;
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 30px -10px rgba(201, 162, 123, 0.1);
}

.contact-form label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin: 24px 0 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    background: rgba(27, 27, 27, 0.723);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    transition: all 0.3s;
}

.contact-info-item:hover {
    border-color: rgba(201, 162, 123, 0.15);
    transform: translateY(-2px);
}

.contact-info-item .icon {
    font-size: 1.75rem;
    color: #c9a27b;
    display: block;
    margin-bottom: 0.8rem;
}

.contact-info-item .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info-item .value {
    color: #fff;
    font-weight: 300;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

/* === Footer === */
.footer-immersive {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem 2rem;
    background: #070707;
}

.footer-immersive a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.footer-immersive a:hover {
    color: #c9a27b;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.1em;
}

/* === Animations === */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === Parallax === */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section .bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.1);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 7, 0.75);
}

.parallax-section .content {
    position: relative;
    z-index: 2;
}

/* === Article content === */
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #c9a27b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.article-content ul {
    color: #d1d5db;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.article-content ul li {
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
}

.article-content ul li::before {
    content: '◆';
    color: #c9a27b;
    position: absolute;
    left: 0;
}

.article-content blockquote {
    border-left: 4px solid #c9a27b;
    padding-left: 1.5rem;
    font-style: italic;
    color: #9ca3af;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.footer-forfait h2 {
    margin-bottom: 25px;
}

.footer-forfait p {
    margin-bottom: 15px;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .mobile-menu.open {
        display: flex;
    }
    .btn-primary,.btn-outline {
        width: 100%;
        margin-top: 5px;
    }
    .section-padding {
        padding: 4rem 1.2rem;
    }
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    .contact-wrapper {
        padding: 1.5rem;
    }
    .blog-card,
    .blog-card .content {
        min-height: 320px;
    }

    .footer-forfait p {
        margin-bottom: 20px;
    }

}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
        grid-auto-rows: 120px;
    }
    .section-padding {
        padding: 3rem 1rem;
    }
    .btn-primary,
    .btn-outline {
        padding: 0.8rem 1.8rem;
        font-size: 0.6rem;
    }
    .blog-card,
    .blog-card .content {
        min-height: 280px;
    }
    .blog-card .content {
        padding: 1.2rem;
    }
    .blog-card h3 {
        font-size: 1rem;
    }
}