/* =============================================
   DTM COACHING & CONSULTING
   Master Stylesheet v2.0
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@400;600;700&family=Playfair+Display:ital@1&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --navy: #0F3A52;
    --soft-bg: #DDE6ED;
    --muted-blue: #5C8EA8;
    --light-gray-blue: #D6E2E8;
    --teal: #2FA4A9;
    --gold: #C8A96A;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-mid: #444444;
    --text-light: #777777;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
}

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

a:hover { opacity: 0.8; }

strong {
    color: var(--text-dark);
    font-weight: 600;
}

.accent-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--muted-blue);
}

/* =============================================
   LAYOUT — CONTAINERS
   ============================================= */
.container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 90%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-soft {
    padding: 100px 0;
    background-color: var(--soft-bg);
}

.section-navy {
    padding: 100px 0;
    background-color: var(--navy);
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
    color: var(--white);
}

.section-navy p {
    color: var(--light-gray-blue);
}

.section-center {
    text-align: center;
}

.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
    display: block;
}

.section-divider {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 50px 0;
}

.section-divider span {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    display: inline-block;
}

.section-divider span:nth-child(1) { 
    background-color: var(--light-gray-blue); 
}
.section-divider span:nth-child(2) { 
    background-color: var(--muted-blue); 
}
.section-divider span:nth-child(3) { 
    background-color: var(--teal); 
}

/* Page Hero Title — used on interior pages */
.page-hero {
    padding: 90px 0 70px 0;
    background-color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    color: var(--navy);
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.15;
}

.page-hero-divider {
    width: 80px;
    height: 3px;
    background-color: var(--teal);
    margin: 0 auto;
    border-radius: 2px;
}

/* =============================================
   GRID LAYOUTS
   ============================================= */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.grid-2-col-start {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.grid-2-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-block;
    background-color: var(--teal);
    color: var(--white) !important;
    padding: 15px 34px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    text-align: center;
    border: 2px solid var(--teal);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--teal) !important;
    opacity: 1;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--navy) !important;
    padding: 15px 34px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white) !important;
    opacity: 1;
}

.btn-outline-white {
    display: inline-block;
    background-color: transparent;
    color: var(--white) !important;
    padding: 15px 34px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--navy) !important;
    opacity: 1;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}
/* Secondary "Ghost" Button for Explore Links */
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--teal); /* Uses your brand teal for the text */
    border: 2px solid var(--teal); /* Adds the crisp teal outline */
    border-radius: 6px;
    font-size: 1.05rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

/* Make it fill with color when the mouse hovers over it */
.btn-secondary:hover {
    background-color: var(--teal);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(84, 169, 192, 0.2);
}


/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
    background-color: var(--navy);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    color: var(--white) !important;
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 1 !important;
}

.logo:hover { opacity: 0.85 !important; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a {
    color: var(--light-gray-blue);
    font-size: 0.92rem;
    font-family: 'Open Sans', sans-serif;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.nav-links a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-book-btn {
    margin-left: 15px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    display: block;
    transition: all 0.3s ease;
}

/* =============================================
   HERO SECTION — Homepage
   ============================================= */
.hero {
    padding: 130px 0;
    background-color: var(--navy);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: var(--white);
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--light-gray-blue);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

.hero-image {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    object-fit: cover;
}

/* =============================================
   CARDS — General
   ============================================= */
.card {
    background: var(--white);
    padding: 45px 38px;
    border-radius: 8px;
    border: 1px solid var(--light-gray-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.card p {
    font-size: 0.98rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 50px 32px;
    border-radius: 8px;
    border: 1px solid var(--light-gray-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}
.service-card .btn-primary {
    margin-top: auto; /* ← this is the key line */
}
.service-card h3 {
    min-height: 3.5rem;
}


.service-icon {
    width: 65px;
    height: 65px;
    background-color: var(--soft-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.6rem;
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--light-gray-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.blog-card-content p {
    font-size: 0.93rem;
    color: var(--text-mid);
    margin-bottom: 0;
}

.blog-meta {
    font-size: 0.78rem;
    color: var(--muted-blue);
    margin-bottom: 12px;
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 42px 38px;
    border: 1px solid var(--light-gray-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--teal);
    line-height: 0.8;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text-mid);
    flex-grow: 1;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.85;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--muted-blue);
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-step {
    padding: 30px 20px;
    text-align: center;
}

.process-number {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--muted-blue);
    line-height: 1;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-mid);
}

/* =============================================
   BLOCKQUOTE
   ============================================= */
blockquote {
    border-left: 3px solid var(--teal);
    padding: 22px 28px;
    margin: 35px 0;
    background-color: var(--soft-bg);
    border-radius: 0 8px 8px 0;
}

blockquote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.08rem;
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1.75;
}

/* =============================================
   CUSTOM LIST
   ============================================= */
.custom-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.custom-list li::before {
    content: '✓';
    color: var(--teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* =============================================
   FORMS
   ============================================= */
.email-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--muted-blue);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
}

.email-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(47, 164, 169, 0.15);
}

/* =============================================
   PODCAST SECTION
   ============================================= */
.podcast-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 65px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.podcast-card h2 { color: var(--white); }
.podcast-card p { color: var(--light-gray-blue); }

.podcast-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 75px 0 28px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 55px;
}

.footer-brand p {
    color: var(--light-gray-blue);
    font-size: 0.95rem;
    max-width: 300px;
    margin-top: 15px;
    line-height: 1.75;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-col a {
    color: var(--light-gray-blue);
    display: block;
    margin-bottom: 13px;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    opacity: 1 !important;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    font-size: 0.85rem;
    color: var(--muted-blue);
}

.footer-bottom a {
    color: var(--muted-blue);
    opacity: 1 !important;
}

.footer-bottom a:hover { color: var(--white); }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-teal { color: var(--teal) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted { color: var(--text-light) !important; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* =============================================
   RESPONSIVE — TABLET (max 992px)
   ============================================= */
@media (max-width: 992px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }

    .page-hero h1 { font-size: 2.8rem; }

    .grid-2-col,
    .grid-2-col-start,
    .grid-3-col,
    .grid-2-col-cards,
    .footer-grid,
    .podcast-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section,
    .section-soft,
    .section-navy {
        padding: 75px 0;
    }

    .hero {
        padding: 90px 0;
    }

    .hero h1 { font-size: 2.6rem; }

    .podcast-card { padding: 45px; }

    .hamburger { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: var(--navy);
        padding: 20px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        margin: 5px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 12px;
        border-radius: 0;
    }

    .nav-book-btn { display: none; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================= */
@media (max-width: 600px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.7rem; }

    .page-hero h1 { font-size: 2.1rem; }
    .page-hero { padding: 60px 0 50px 0; }

    .section,
    .section-soft,
    .section-navy {
        padding: 60px 0;
    }

    .hero { padding: 65px 0; }
    .hero h1 { font-size: 2.1rem; }
    .hero p { font-size: 1rem; }

    .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-outline,
    .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    .email-form { flex-direction: column; }

    .podcast-card { padding: 30px 22px; }

    .card,
    .service-card,
    .testimonial-card {
        padding: 32px 22px;
    }

    blockquote { padding: 18px 20px; }
}
/* =============================================
   WORK WITH ME PAGE
   ============================================= */

/* HERO */
.work-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.work-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 58, 82, 0.94) 0%,
        rgba(15, 58, 82, 0.85) 40%,
        rgba(15, 58, 82, 0.45) 65%,
        rgba(15, 58, 82, 0.05) 100%
    );
}

.work-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.work-hero h1 {
    color: var(--white);
}

.work-hero p {
    color: var(--light-gray-blue);
}

/* IMAGE BLOCK */
.image-block img {
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

/* CARD VARIATION (for Who this is for) */
.card-large {
    padding: 50px 42px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 58, 82, 0.08);
}

/* PROCESS CARDS */
.process-card {
    background: var(--white);
    padding: 32px;
    border-radius: 10px;
    border: 1px solid var(--light-gray-blue);
}

.process-number-small {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 10px;
}
.about-story-copy {
    max-width: 640px;
}

.about-story-copy p {
    margin-bottom: 26px;
    color: rgba(255,255,255,0.88);
    line-height: 1.9;
    font-size: 1.02rem;
}

.about-story-intro {
    color: rgba(255,255,255,0.98);
    font-weight: 600;
    font-size: 1.08rem;
}

.about-story-subhead {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 40px 0 16px 0;
    opacity: 0.9;
}

.about-story-question {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.3;
    margin: 10px 0 30px 0;
    max-width: 520px;
}

.story-scroll-cue {
    display: inline-block;
    margin-top: 12px;
    color: var(--light-gray-blue);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    opacity: 0.9;
}

.story-scroll-cue:hover {
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 992px) {
    .about-story-copy {
        max-width: 100%;
    }

    .about-story-question {
        font-size: 1.6rem;
    }
}
/* =========================================
   DROPDOWN MENU STYLES
   ========================================= */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 6px;
    vertical-align: middle;
    opacity: 0.7;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 6px;
    z-index: 999;
    overflow: hidden;
    padding: 10px 0;
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: #1C334A !important;
    padding: 12px 24px !important;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin: 0 !important;
}

/* Hover effect for dropdown links */
.dropdown-content a:hover {
    background-color: #f4f7f9;
    color: var(--teal) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .dropdown {
        display: block;
        width: 100%;
    }
    .dropdown-content {
        position: relative;
        box-shadow: none;
        background-color: transparent;
        padding: 0 0 0 20px; /* Indents the sub-menu items on mobile */
        display: none;
    }
    /* Shows dropdown when tapped on mobile */
    .dropdown:hover .dropdown-content,
    .dropdown:active .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block;
    }
}
.blog-section .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-section .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-section .blog-card img {
    transition: transform 0.4s ease;
}

.blog-section .blog-card:hover img {
    transform: scale(1.03);
}

.blog-section .blog-card-content h3 {
    transition: color 0.3s ease;
}

.blog-section .blog-card:hover h3 {
    color: var(--teal);
}
/* Equal height blog cards */
.blog-section .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Let content expand */
.blog-section .blog-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Push date to bottom */
.blog-section .blog-meta {
    margin-top: auto;
}