﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --base-color: #F1EAEA;
    --mellow-purple: #B8A9D4;
    --mellow-pink: #F5C2D1;
    --mellow-blue: #A8D0E6;
    --mellow-green: #C4E4D4;
    --mellow-beige: #F4E4C1;
    --mellow-lavender: #E6D5F7;
    --mellow-peach: #FFD9C0;
    --mellow-mint: #D4F1E8;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--base-color);
    color: #1f2937;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'IBM Plex Mono', monospace;
}

/* Background Effects */
.background-polaroid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url('public/images/Screenshot 2025-12-19 194052.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.25;
}

.background-cheetah {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url('public/images/cheetah.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.15;
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(241, 234, 234, 0.6);
    pointer-events: none;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .content-wrapper {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        padding: 3rem 2rem;
    }
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity 0.3s;
}

.navbar-logo-container:hover {
    opacity: 0.8;
}

.navbar-logo {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.navbar-logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1;
    margin-top: 0.125rem;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.125rem;
    border-radius: 0.625rem;
    white-space: nowrap;
    z-index: 1001;
    /* Ensure link stays above the dropdown bridge */
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, var(--mellow-purple), var(--mellow-lavender));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link:hover {
    color: #000;
    background-color: rgba(0, 0, 0, 0.03);
}

.navbar-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.dropdown-arrow {
    font-size: 0.625rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    margin-left: 0.125rem;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.navbar-dropdown:hover .navbar-link {
    background-color: rgba(0, 0, 0, 0.04);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    min-width: 240px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 0.75rem;
    margin: 0;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

/* Invisible bridge to prevent mouseleave when moving to dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    /* Extends up to meet the navbar item */
    left: 0;
    width: 100%;
    height: 1.5rem;
    height: 1.5rem;
    background: transparent;
    pointer-events: auto;
}

.navbar-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.875rem 1.125rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.625rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 0.25rem;
}

.dropdown-item-name {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.125rem;
}

.dropdown-item-desc {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.3;
}

.dropdown-menu a:hover .dropdown-item-name {
    color: #000;
}

.dropdown-menu a:hover .dropdown-item-desc {
    color: #4b5563;
}

.dropdown-menu a:last-child {
    margin-bottom: 0;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--mellow-purple), var(--mellow-lavender));
    border-radius: 0 3px 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(184, 169, 212, 0.12) 0%, rgba(230, 213, 247, 0.08) 100%);
    color: #000;
    padding-left: 1.5rem;
    transform: translateX(4px);
}

.dropdown-menu a:hover::before {
    height: 70%;
    transform: translateY(-50%) scaleY(1);
    opacity: 1;
}

/* Mobile menu toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1f2937;
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-link {
        padding: 1rem;
        border-radius: 0.5rem;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        margin-top: 0.5rem;
        margin-left: 1rem;
        border-radius: 0.5rem;
        opacity: 1;
        transform: none;
    }

    .navbar-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Footer */
.footer {
    background-color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.footer-text {
    color: #4b5563;
    font-size: 0.875rem;
}

.footer-heading {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #000;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #4b5563;
    font-size: 0.875rem;
}

/* Typography */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Video */
.video-player {
    max-width: 42rem;
    width: 100%;
    border-radius: 1rem;
    max-height: 400px;
}

/* Latest Article */
.latest-article-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.latest-article-card:hover {
    transform: translateY(-4px);
}

.latest-article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.latest-article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .latest-article-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.latest-article-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .latest-article-image {
        height: 500px;
    }
}

.latest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: sepia(20%) contrast(1.1) brightness(0.95) saturate(0.9);
}

.latest-article-card:hover .latest-img {
    transform: scale(1.05);
}

.latest-article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .latest-article-content {
        padding: 3rem;
    }
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-everyday {
    background-color: rgba(196, 228, 212, 0.2);
    color: #4a9b7a;
}

.latest-article-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .latest-article-title {
        font-size: 2.25rem;
    }
}

.latest-article-card:hover .latest-article-title {
    color: var(--mellow-purple);
}

.latest-article-excerpt {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--mellow-purple);
    font-weight: 600;
    transition: transform 0.3s;
}

.latest-article-card:hover .read-more {
    transform: translateX(8px);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Event Cards */
.event-cards-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-4px);
}

.event-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .event-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.event-card-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .event-card-image {
        height: 500px;
    }
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: sepia(20%) contrast(1.1) brightness(0.95) saturate(0.9);
}

.event-card:hover .event-img {
    transform: scale(1.05);
}

.event-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .event-card-content {
        padding: 3rem;
    }
}

.event-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(184, 169, 212, 0.2);
    color: var(--mellow-purple);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .event-card-title {
        font-size: 2.25rem;
    }
}

.event-card:hover .event-card-title {
    color: var(--mellow-purple);
}

.event-card-excerpt {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--mellow-purple);
    font-weight: 600;
    transition: transform 0.3s;
}

.event-card:hover .event-read-more {
    transform: translateX(8px);
}

/* Polaroid Article Cards */
.featured-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .featured-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .featured-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.polaroid-article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.polaroid-article-card {
    position: relative;
    background-color: #fff;
    padding: 1rem;
    padding-bottom: 4rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
}

.polaroid-article-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.polaroid-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    width: 100%;
}

.polaroid-image-container {
    position: absolute;
    inset: 1rem;
    border-radius: 0.125rem;
    overflow: hidden;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.polaroid-article-card:hover .polaroid-img {
    transform: scale(1.05);
}

.polaroid-category-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.polaroid-content {
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.polaroid-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.polaroid-article-card:hover .polaroid-title {
    color: var(--mellow-purple);
}

.polaroid-excerpt {
    font-size: 0.875rem;
    color: #4b5563;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Subcategory Cards */
.subcategory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .subcategory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.subcategory-card {
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.subcategory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: #e5e7eb;
}

.subcategory-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    font-family: 'IBM Plex Mono', monospace;
}

.subcategory-card-desc {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    position: relative;
    height: 12rem;
    border-radius: 1rem;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.category-card:hover .category-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.category-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-shadow: none;
    text-align: center;
    z-index: 10;
}

.category-everyday-bg {
    background: white;
}

.category-fashion-bg {
    background: white;
}

.category-relations-bg {
    background: white;
}

.category-health-bg {
    background: white;
}

.category-vibez-bg {
    background: white;
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-section {
        padding: 3rem;
    }
}

.about-text {
    font-size: 1.125rem;
    color: #374151;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Article Cards */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.article-image {
    position: relative;
    height: 12rem;
    width: 100%;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    filter: sepia(20%) contrast(1.1) brightness(0.95) saturate(0.9);
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    backdrop-filter: blur(4px);
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card:hover .article-title {
    color: #000;
}

.article-excerpt {
    color: #4b5563;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Large article images - more vertical */
.article-image-large {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-image-large img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1) brightness(0.95) saturate(0.9);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
}

.hero-text {
    width: 100%;
    padding: 2rem;
}

@media (min-width: 768px) {
    .hero-text {
        padding: 3rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 42rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Article Page */
.article-page {
    position: relative;
    min-height: 100vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #000;
}

.back-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.article-container {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .article-container {
        padding: 3rem;
    }
}

.article-badge-small {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    margin-bottom: 2rem;
    display: inline-block;
}

.article-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .article-heading {
        font-size: 3rem;
    }
}

.article-image-large {
    position: relative;
    height: 16rem;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .article-image-large {
        height: 24rem;
    }
}

.article-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1) brightness(0.95) saturate(0.9);
}

.article-body {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body p:first-child {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f2937;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

/* Full Text Article Style */
.article-full-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
