:root {
    /* Colors - Dark Mode & Gold Premium */
    --clr-primary: #0A0A0A;
    /* Dark background base */
    --clr-primary-light: #1A1A1A;
    /* Slightly lighter background for elements */
    --clr-secondary: #D4AF37;
    /* Gold */
    --clr-secondary-light: #E5C158;
    --clr-dark: #000000;
    --clr-text: #FFFFFF;
    --clr-text-light: rgba(255, 255, 255, 0.85);
    --clr-bg: #0A0A0A;
    /* Pure dark background */
    --clr-bg-alt: #141414;
    /* Alternate dark background */
    --clr-border: #333333;

    /* Typography */
    --font-heading: 'Cormorant Unicase', serif;
    --font-body: 'Cormorant Garamond', serif;

    /* Variables */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 0px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    line-height: 1.6;
    background-color: var(--clr-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 15px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--clr-bg-alt);
}

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

/* Utilities */
.text-gold {
    color: var(--clr-secondary);
}

.service-bullets {
    margin-top: 24px;
}

.service-bullets li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--clr-text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--clr-secondary);
    background: transparent;
    font-family: var(--font-heading);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--clr-secondary);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: transparent;
    color: var(--clr-secondary);
    border-color: var(--clr-secondary);
}

.btn-primary:hover {
    color: #000000;
    transform: translateY(-2px);
    border-color: var(--clr-secondary);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    color: #000000;
    border-color: var(--clr-secondary);
}

.btn-text {
    padding: 0;
    background: transparent;
    color: var(--clr-secondary);
    font-weight: 600;
    border-radius: 0;
    border-bottom: 1px solid var(--clr-secondary);
}

.btn-text:hover {
    color: white;
    border-color: white;
    gap: 12px;
}

.btn-block {
    width: 100%;
}

/* Section Header & Badges */
.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--clr-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-badge i {
    color: #FFFFFF;
    margin-right: 6px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 48px;
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    color: white;
    letter-spacing: 0.5px;
    text-transform: none;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    gap: 16px;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-secondary);
    transition: var(--transition);
}

.nav-list a:hover {
    color: white;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone-btn {
    display: flex;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    padding: 6px 16px 6px 6px;
    background: rgba(0, 0, 0, 0.6);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone-btn:hover {
    border-color: var(--clr-secondary);
    background: rgba(212, 175, 55, 0.1);
}

.phone-icon {
    background: var(--clr-secondary);
    color: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    margin-right: 12px;
    transition: var(--transition);
}

.header-phone-btn:hover .phone-icon {
    transform: scale(1.1);
}

.phone-number {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-right: 12px;
    font-family: var(--font-body);
}

.phone-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--clr-secondary);
    letter-spacing: 1px;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.3s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 5rem);
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Bottom Hero Typography */
.hero-bottom {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bottom-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 1px;
}

.hero-bottom-signature {
    font-family: 'Alex Brush', cursive;
    font-size: clamp(1rem, 3vw, 2.5rem);
    color: white;
    margin-top: 24px;
    text-align: right;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-bottom-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--clr-primary-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--clr-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-secondary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* About Section (Now 3 Main Sections) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image::before {
    content: '';
    display: block;
    padding-bottom: 120%;
    /* Aspect ratio */
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-text p {
    margin-bottom: 24px;
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.placeholder-image {
    background-color: var(--clr-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--clr-border);
    height: 400px;
}

.placeholder-image::before {
    display: none;
}

.placeholder-content {
    text-align: center;
    color: var(--clr-text-light);
    padding: 60px 20px;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--clr-border);
}

/* Sekcja kontaktowa */
.contact {
    padding: 80px 0;
    /* lub Twój kolor bg-light */
    color: white;
}

/* Grid dwukolumnowy */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Lewa kolumna - dane kontaktowe */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;

}

/* Odznaka sekcji */
.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    width: fit-content;
}

/* Tytuł sekcji */
.contact .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 0 0 10px 0;
    color: white;
}

/* Opis */
.contact-info>p {
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Lista kontaktowa */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Ikony kontaktowe */
.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.3rem;
}

/* Szczegóły kontaktu */
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-detail strong {
    color: white;
    font-size: 1rem;
}

.contact-detail span {
    color: white;
    line-height: 1.5;
}

.contact-detail a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #d4af37;
}

/* Prawa kolumna - mapa */
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Responsywność */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-map iframe {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }

    .contact-list li {
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.form-group label::after {
    content: ' *';
    color: var(--clr-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--clr-secondary);
    background: transparent;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.form-success-msg {
    margin-top: 16px;
    padding: 16px;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
    border-radius: 6px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--clr-bg-alt);
    color: white;
    padding-top: 80px;
    border-top: 1px solid var(--clr-border);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--clr-secondary);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: var(--clr-text-light);
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--clr-text-light);
}

.footer-links a:hover {
    color: var(--clr-secondary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 24px 0;
    text-align: center;
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

/* Gallery Styles */
.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 0 40px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 15px;
    /* for scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 10px);
    scroll-snap-align: start;
}

@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 576px) {
    .carousel-item {
        flex: 0 0 100%;
    }
}

.carousel-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.carousel-img:hover {
    transform: scale(1.02);
    border-color: var(--clr-secondary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.8);
    color: var(--clr-secondary);
    border: 1px solid var(--clr-secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--clr-secondary);
    color: black;
}

.carousel-prev {
    left: 0px;
}

.carousel-next {
    right: 0px;
}

@media (max-width: 1250px) {
    .carousel-wrapper {
        padding: 0 10px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

.gallery-img.tall {
    height: 400px;
}

.gallery-img:hover {
    transform: scale(1.03);
    border-color: var(--clr-secondary);
    filter: brightness(1.1);
    z-index: 2;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 75vh;
    animation: zoomIn 0.4s;
    border: 2px solid var(--clr-secondary);
    border-radius: 4px;
    object-fit: contain;
    position: relative;
    top: -5vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--clr-secondary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--clr-secondary);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lightbox-thumbnails::-webkit-scrollbar {
    display: none;
}

.lightbox-thumb {
    height: 70px;
    width: 90px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--clr-secondary);
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
        font-size: 2rem;
    }

    .lightbox-next {
        right: 10px;
        font-size: 2rem;
    }

    .lightbox-thumbnails {
        width: 95%;
        bottom: 10px;
    }

    .lightbox-thumb {
        height: 50px;
        width: 60px;
    }

    .lightbox-content {
        top: -8vh;
        max-height: 65vh;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Page Header (Nekrologi) */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    color: var(--clr-text-light);
    font-size: 1.2rem;
}

/* Obituary Grid */
.obituary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.obituary-card {
    background: var(--clr-primary-light);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.obituary-card:hover {
    border-color: var(--clr-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.obituary-cross {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.obituary-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.obituary-age {
    color: var(--clr-text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.obituary-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--clr-secondary), transparent);
    margin: 20px 0;
}

.obituary-details {
    text-align: left;
}

.obituary-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.obituary-details p i {
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        padding-bottom: 60%;
    }

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

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--clr-bg-alt);
        padding: 24px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        border-bottom: 1px solid var(--clr-border);
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-info-header {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .footer-brand p {
        margin: 0 auto;
    }
}