/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    /* Colors - Vibrant, Warm, Premium Cafe Vibe */
    --clr-bg: #FCFCFC;
    /* Very soft cream/gray as requested */
    --clr-surface: #FFFFFF;
    /* Pure white for cards */
    --clr-primary: #0A1424;
    /* Extremely deep, rich Navy */
    --clr-primary-light: #1F304A;
    /* Softer Navy for secondary text */

    /* Vibrant Accent */
    --clr-accent: #00A896;
    /* Punchier, more saturated Turquoise */
    --clr-accent-hover: #028090;
    /* Darker, elegant teal for hover */
    --clr-accent-soft: rgba(0, 168, 150, 0.15);
    /* More visible turquoise wash for shadow */

    /* Text */
    --clr-text-main: #2A313C;
    /* Crisp dark charcoal */
    --clr-text-muted: #717A8A;
    /* Elegant gray */

    /* Layout & Spacing */
    --max-width: 1200px;
    --border-radius: 16px;
    /* Slightly softer, more modern corners */
    --border-radius-lg: 24px;

    /* Richer Shadows */
    --shadow-sm: 0 4px 10px rgba(10, 20, 36, 0.04);
    --shadow-md: 0 10px 25px rgba(10, 20, 36, 0.06), 0 4px 8px rgba(10, 20, 36, 0.03);
    --shadow-lg: 0 25px 40px rgba(10, 20, 36, 0.08), 0 10px 15px rgba(10, 20, 36, 0.04);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--clr-primary);
    line-height: 1.2;
    font-weight: 600;
}

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

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

/* ==========================================================================
   Language Switch Logic
   ========================================================================== */
.lang-en .tr-text {
    display: none !important;
}

.lang-tr .en-text {
    display: none !important;
}

/* ==========================================================================
   Header & Navbar (Clean, Premium Minimal)
   ========================================================================== */
.header {
    background-color: rgba(245, 240, 235, 0.95);
    /* A distinct, slightly darker warm cream to separate from body */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 0;
    position: -webkit-sticky;
    /* Older iOS */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(10, 20, 36, 0.05);
    /* Soft shadow */
    width: 100%;
    /* Ensure it spans full width */
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo & Icon */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.brand-logo:hover .brand-icon {
    transform: scale(1.05);
}

.brand-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-main {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--clr-primary);
    /* Back to deep navy */
    line-height: 1.1;
}

.brand-accent {
    color: var(--clr-accent);
    /* Crisp turquoise */
}

.brand-subtext {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--clr-accent);
    text-transform: uppercase;
    padding-left: 2px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--clr-primary);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width 0.3s;
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--clr-primary);
    /* Back to dark bars */
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Mobile Header Breakpoint */
@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 79px;
        right: 0px;
        /* Force it strongly off-screen to prevent phantom bounding boxes */
        width: 100%;
        max-width: 250px;
        height: calc(100vh - 79px);
        flex-direction: column;
        background-color: rgba(252, 252, 252, 0.95);
        /* matching cream sliding menu */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-left: 1px solid rgba(18, 31, 53, 0.05);
        align-items: flex-start;
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
        box-shadow: -10px 0 25px rgba(10, 20, 36, 0.05);
        visibility: hidden;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
        z-index: 999;
    }

    .nav-menu.active {
        visibility: visible;
        transform: translateX(0);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        width: 100%;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(18, 31, 53, 0.05);
        color: var(--clr-primary);
        /* Dark links */
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        color: var(--clr-accent);
        border-bottom-color: var(--clr-accent);
    }

    .lang-dropdown {
        width: 100%;
    }

    .lang-dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(18, 31, 53, 0.05);
        margin-top: 5px;
    }

    /* Hamburger animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--clr-accent);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--clr-accent);
    }
}

/* Dropdown Language Menu */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    background-color: transparent;
    border: 1px solid rgba(18, 31, 53, 0.1);
    /* Dark border for cream background */
    color: var(--clr-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-dropdown-btn:hover,
.lang-dropdown-btn:focus {
    background-color: rgba(18, 31, 53, 0.05);
    border-color: rgba(18, 31, 53, 0.2);
}

.lang-flag {
    font-size: 1.1em;
}

.dropdown-icon {
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.lang-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--clr-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    background-clip: padding-box;
    border: 1px solid rgba(18, 31, 53, 0.05);
    list-style: none;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.lang-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--clr-text-main);
    font-weight: 500;
    transition: background-color var(--transition-fast);
}

.dropdown-item:first-child {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.dropdown-item:last-child {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.dropdown-item:hover {
    background-color: rgba(18, 31, 53, 0.03);
    color: var(--clr-primary);
}

.dropdown-item.active {
    background-color: var(--clr-accent-soft);
    color: var(--clr-accent);
}

/* ==========================================================================
   Main Content 
   ========================================================================== */
/* ==========================================================================
   Main Content 
   ========================================================================== */
.main-content {
    min-height: calc(100vh - 160px);
    /* Approx viewport minus header & footer */
    /* Removed overflow-x: hidden from here as it seems to be blocking sticky behavior on some engines */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 5% 0;
    /* Reintroduced top spacing logic previously on main-content */
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Image Grid & Spacing */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding-right: 15px;
    /* Room for offset shadow */
    padding-bottom: 15px;
}

.mobile-spaced-image {
    margin-bottom: 2rem;
}

.image-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--clr-surface);
    /* 3D Turquoise Offset Background Effect */
    box-shadow: 15px 15px 0px var(--clr-accent-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.image-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 19px 19px 0px var(--clr-accent-soft);
}

/* Offset the second image for a modern staggered look on desktop */
@media (min-width: 768px) {
    /* Offset removed since layout is no longer grid-based */
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.image-card:hover .about-img {
    transform: scale(1.03);
}

/* Text Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: 1;
    /* Take remaining space */
}

/* Mixed Content Layout (Text + Image Side-by-Side) */
.content-split-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 1.5rem 0;
}

.full-width-card {
    width: 100%;
}

.landscape-img {
    height: 400px;
    object-position: center 30%;
    /* Adjust focus of the cafe image */
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--clr-primary);
    line-height: 1.25;
}

.about-lead {
    font-size: 1.05rem;
    /* Make the intro text smaller to match */
    color: var(--clr-primary-light);
    font-weight: 400;
    line-height: 1.8;
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.block-title {
    font-size: 1.25rem;
    color: var(--clr-primary);
    position: relative;
    padding-left: 1rem;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background-color: var(--clr-accent);
    border-radius: 4px;
}

.block-text {
    font-size: 1.05rem;
    /* Ensure standard size */
    color: var(--clr-text-main);
    line-height: 1.7;
}

/* Quote Section */
.quote-block {
    margin-top: 1rem;
    padding: 2rem;
    background-color: var(--clr-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--clr-accent);
    text-align: center;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--clr-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.quote-invitation {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   Call to Action (CTA)
   ========================================================================== */
.cta-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--clr-accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(23, 184, 186, 0.4);
    transition: all var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 184, 186, 0.5);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    color: var(--clr-surface);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-address ion-icon {
    font-size: 1.3rem;
    color: var(--clr-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-accent);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color var(--transition-fast);
    align-self: flex-start;
}

.social-link:hover {
    color: var(--clr-surface);
}

.social-link ion-icon {
    font-size: 1.4rem;
}

.footer-map {
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    /* Placeholder while loading */
}

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

/* ==========================================================================
   QR Menu Page Styles
   ========================================================================== */

/* Search Bar */
.menu-search-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 5% 0;
}

.menu-search-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--clr-text-muted);
}

.menu-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 1px solid rgba(18, 31, 53, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--clr-surface);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--clr-text-main);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all var(--transition-fast);
}

.menu-search-input:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 4px 15px var(--clr-accent-soft);
}

/* Skeleton Loading Animation */
@keyframes skeleton-pulse {
    0% { background-color: rgba(18, 31, 53, 0.05); }
    50% { background-color: rgba(18, 31, 53, 0.1); }
    100% { background-color: rgba(18, 31, 53, 0.05); }
}

.skeleton {
    animation: skeleton-pulse 1.5s infinite ease-in-out;
    border-radius: var(--border-radius);
}

.skeleton-text {
    height: 1.2rem;
    margin-bottom: 0.5rem;
    width: 80%;
}

.skeleton-text-short {
    width: 40%;
}

.skeleton-pill {
    height: 38px;
    width: 100px;
    border-radius: 50px;
}

/* Sticky Category Nav Wrapper (Fixes mobile disappearing bug) */
.category-nav-wrapper {
    position: -webkit-sticky;
    /* Older iOS Safari Support */
    position: sticky;
    top: 78px;
    /* Matches Header Height */
    z-index: 900;
    background-color: var(--clr-bg);
    border-bottom: 1px solid rgba(18, 31, 53, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 100%;
    align-self: flex-start;
    /* Flex yapılarında bozulmasını %100 önler */
    display: block;
}

/* Inner scroll container */
.category-nav-scroll {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 5%;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    -webkit-overflow-scrolling: touch;
    /* Smooth iOS scrolling */
}

.category-nav-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Category Pill */
.category-pill {
    background-color: var(--clr-surface);
    color: var(--clr-text-main);
    border: 1px solid rgba(18, 31, 53, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.category-pill:hover {
    background-color: rgba(18, 31, 53, 0.03);
}

.category-pill.active {
    background-color: var(--clr-accent);
    color: white;
    border-color: var(--clr-accent);
    box-shadow: 0 4px 10px var(--clr-accent-soft);
}

/* Menu Container */
.menu-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 5% 4rem;
    /* Top padding is handled here, flush below the sticky-nav */
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Category Section */
.menu-category-section {
    scroll-margin-top: 140px;
    /* Space for sticky header + category nav */
}

.category-title {
    font-size: 1.8rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40%;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: 2px;
}

.category-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 500px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem; /* Tighter gap on small screens */
    }
}

/* Product Card */
.menu-card {
    background-color: var(--clr-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-card-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5; /* Portrait orientation (taller on y-axis) */
    height: auto;
    overflow: hidden;
    position: relative;
    background-color: #F8F5F0;
    /* Fallback subtle tone */
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.menu-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Fills space so prices align to bottom */
}

.menu-card-title {
    font-size: 1.15rem;
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    /* Prevent extra-long titles (like Italian names) from stretching the card */
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.menu-card-prices {
    margin-top: auto;
    /* Aligns to bottom of card content */
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

/* Single Price Tag */
.price-single {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
}

/* Multi Price Tags (S | M | L) */
.price-multi {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    background-color: rgba(18, 31, 53, 0.03);
    padding: 0.3rem 0.6rem;
    border-radius: var(--border-radius);
    line-height: 1.4;
    word-break: break-word; /* Ensure multiple prices wrap safely on 320px displays */
}

/* Mobile adjustments inside 2-column cards */
@media (max-width: 500px) {
    .menu-card-content {
        padding: 0.75rem;
        /* Less padding to fit content in narrower columns */
    }

    .menu-card-title {
        font-size: 0.95rem;
    }

    .price-single {
        font-size: 1.05rem;
    }

    .price-multi {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ==========================================================================
   Media Queries (Desktop / Tablet)
   ========================================================================== */
@media (min-width: 768px) {

    /* Scale up paragraph text for Desktop to make reading clearer */
    .about-lead {
        font-size: 1.15rem;
    }

    .block-text {
        font-size: 1.15rem;
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .logo {
        height: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-images {
        flex-direction: row;
    }

    .image-card {
        flex: 1;
    }

    .about-img {
        height: 400px;
    }
}

@media (min-width: 992px) {

    /* Even larger paragraph typography for very wide screens */
    .about-lead {
        font-size: 1.2rem;
    }

    .block-text {
        font-size: 1.2rem;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .about-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-images {
        flex: 0 0 45%;
        /* Keep to right side */
        flex-direction: column;
        position: sticky;
        top: 100px;
        order: 2;
        /* Put image on right */
    }

    .about-content {
        flex: 1;
        padding-right: 3rem;
        order: 1;
        /* Put text on left */
    }

    /* New Split Layout for second image */
    .content-split-layout {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        margin: 4rem 0;
    }

    .full-width-card {
        flex: 1;
    }

    .split-text-block {
        flex: 1;
    }

    .landscape-img {
        height: 350px;
    }

    .about-img {
        height: 500px;
        /* Make the sticky right-side image taller */
    }

    .about-title {
        font-size: 3rem;
    }
}