:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-anthracite: #333333;
    --color-gray-light: #f4f4f4;
    --overlay-bg: rgba(0, 0, 0, 0.95);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    /* Fallback, we'll aim for a premium feel */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Global Header */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    /* Increased padding */
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    /* Ensures visibility on light/dark */
    color: white;
}

.logo a {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.header-logo-img {
    max-height: 50px;
    width: auto;
}

.menu-trigger {
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 2px;
}

.menu-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.menu-trigger:hover::after {
    width: 100%;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    /* Changed to transparent as image is in pseudo */
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    overflow: hidden;
    /* Ensure blur doesn't leak */
}

/* Background Image with Blur */
.menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/FOTO STUDIO -1.jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    /* Blur effect */
    transform: scale(1.05);
    /* Slight scale to hide blurred edges */
    z-index: -1;
    /* Place behind content */
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
}

/* White frame around the menu items */
.menu-nav {
    border: 1px solid white;
    padding: 60px 100px;
    /* Adjust padding for the frame look */
    background-color: rgba(0, 0, 0, 0.2);
    /* Slight dark overlay for text pop */
    backdrop-filter: none;
}

.menu-nav ul {
    text-align: center;
}

.menu-nav li {
    margin: 20px 0;
    overflow: hidden;
}

.menu-nav a {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-nav a:hover {
    color: var(--color-anthracite);
    transform: scale(1.05);
    /* Architectural scale effect */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-typography {
    position: absolute;
    bottom: 10%;
    right: 5%;
    text-align: right;
    color: white;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 5vw;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.hero-title span {
    font-weight: 600;
    display: block;
    /* Stack on mobile, or keep inline but emphasize */
}

/* Asymmetrical Symbol - Replaced with Image */
.hero-symbol-img {
    position: absolute;
    top: 50%;
    right: -50px;
    /* Adjusted to account for image width/position */
    width: 150px;
    /* Increased size for visibility */
    height: auto;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
    /* Slight transparency to blend */
}

/* Content Section - Cards */
.content-section {
    background-color: var(--color-black);
    padding: 100px 0;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    gap: 20px;
    height: 60vh;
    /* Consistent height */
}

.card {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #333;
    /* Minimal separator */
}

.card:last-child {
    border-right: 1px solid #333;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0.6;
    filter: grayscale(100%);
    /* Elegant grayscale by default */
}

.card:hover .card-bg {
    transform: scale(1.05);
    opacity: 0.8;
    filter: grayscale(0%);
    /* Reveal color on hover */
}

.card h2 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 1;
    /* Always visible */
    mix-blend-mode: overlay;
    /* Subtle blend */
}

/* Footer CTA */
.footer-cta {
    background-color: var(--color-anthracite);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.footer-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.btn {
    padding: 15px 40px;
    border: 1px solid white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-primary {
    background-color: white;
    color: black;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-nav a {
        font-size: 2rem;
    }

    .menu-nav {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 8vw;
    }

    .cards-container {
        flex-direction: column;
        height: auto;
    }

    .card {
        height: 300px;
        width: 100%;
        border: none;
        border-bottom: 1px solid #333;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Inner Pages - Split Header */
.split-header {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.header-image {
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: white;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.header-text {
    height: 50vh;
    width: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20%;
    text-align: center;
}

.header-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray-light);
    font-weight: 300;
}

/* Project List */
.project-list {
    padding: 100px 0;
    background-color: var(--color-black);
}

.project-card {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto 100px auto;
    position: relative;
}

.project-image {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.project-card:hover .project-image {
    filter: grayscale(0%);
}

.project-title {
    position: absolute;
    top: 10%;
    left: 80%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    pointer-events: none;
    text-align: center;
    width: 100%;
}

/* Contacts Page */
.contacts-wrapper {
    padding-top: 100px;
    /* Space for fixed header */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contacts-info {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--color-black);
}

.contacts-info h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 4px;
}

.info-item {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--color-gray-light);
}

.info-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #666;
}

/* Custom Grayscale Map Placeholder */
.map-container {
    width: 100%;
    height: 60vh;
    background-color: #222;
    /* Fallback */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
    /* Simple abstract map bg */
    background-size: cover;
    background-position: center;
    filter: invert(90%) hue-rotate(180deg) grayscale(100%);
    /* Make it dark/grayscale */
    position: relative;
}



/* Responsive Inner Pages */
@media (max-width: 768px) {
    .header-image h1 {
        font-size: 3rem;
    }

    .header-text {
        padding: 0 5%;
    }

    .project-image {
        height: 50vh;
    }

    .project-title {
        font-size: 2.5rem;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Chi Siamo Page Styles */
.split-hero {
    display: flex;
    height: 100vh;
    width: 100%;
}

.split-hero-image {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Blurred Header Image for Yachts/Concept */
.header-image-blurred {
    position: relative;
    overflow: hidden;
    /* Ensure blur doesn't bleed */
}

.header-image-blurred::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    /* Inherit the image set inline */
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    /* The blur effect */
    transform: scale(1.05);
    /* Scale up to hide blurred edges */
    z-index: 1;
}

.header-image-blurred h1 {
    position: relative;
    z-index: 2;
    /* Keep title above the blur */
}

.split-hero-content {
    width: 50%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.bio-content {
    color: white;
    max-width: 600px;
}

.bio-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bio-content h2 {
    font-size: 1.5rem;
    color: var(--color-gray-light);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.separator-line {
    width: 100px;
    height: 2px;
    background-color: white;
    margin-bottom: 40px;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
    font-weight: 300;
    text-align: justify;
}

/* Timeline Section (Zig-Zag) */
.timeline-section {
    background-color: var(--color-white);
    /* Contrast background - or keep dark if preferred */
    background-color: #111;
    /* Dark gray for premium feel */
    padding: 100px 0;
}

.timeline-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-row {
    display: flex;
    /* min-height: 400px; Remove fixed height */
    margin-bottom: 0;
    align-items: stretch;
    /* Stretch to equal height if text is longer, or 'center' */
    /* Let's use stretch so backgrounds match if we had them, but here image defines height */
}

.timeline-text {
    width: 50%;
    background-color: #1a1a1a;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.timeline-visual {
    width: 50%;
    /* background-size: cover; removed */
    /* background-position: center; removed */
    display: flex;
    align-items: center;
    /* Center image vertically if container is taller */
    justify-content: center;
    background-color: #000;
    /* Fallback */
    overflow: hidden;
}

.timeline-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Optional: maintains aspect ratio */
}

/* Article Detail Page Styles */
.article-detail {
    padding: 120px 0;
    min-height: 80vh;
    background-color: #0d0d0d;
    color: white;
}

.article-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.article-image {
    width: 40%;
    flex-shrink: 0;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    width: 60%;
}

.article-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.article-content h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #999;
}

.article-content .separator-line {
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 40px;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Button Read More */
.btn-read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-read-more:hover {
    background-color: white;
    color: black;
}

/* Positioning in Timeline */
/* When text is on LEFT (Row 1 & 3), button goes Bottom RIGHT */
.timeline-row .timeline-text {
    position: relative;
    /* Context for absolute positioning if needed, but flex is better */
    align-items: flex-end;
    /* This aligns everything to right, but we want text left and button right? */
    /* No, wait. User said: "sotto il Teaser... in basso a destra se l'immagine è a destra" */
    /* Image Right = Row 1 & 3. Text is Left. Button should be Bottom Right of the text block? */
    /* Let's use specific classes or nth-child logic */
}

/* Default (Image Right, Text Left) -> Button Right */
.timeline-row .timeline-text .btn-read-more {
    align-self: flex-end;
    /* Pushes button to the right side of the flex column */
}

.timeline-row .timeline-text {
    align-items: flex-start;
    /* Keeps text left-aligned */
}

/* Reverse (Image Left, Text Right) -> Button Left */
.timeline-row.reverse .timeline-text .btn-read-more {
    align-self: flex-start;
    /* Pushes button to the left side */
}

/* Gallery Detail Specifics */
.gallery-detail-section {
    padding: 120px 0;
    min-height: 80vh;
    background-color: #0d0d0d;
    color: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.separator-line.centered {
    margin: 0 auto;
}

.large-gallery-item img {
    max-height: 70vh;
    object-fit: contain;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Responsive for Article Detail */
@media (max-width: 992px) {
    .article-container {
        flex-direction: column;
    }

    .article-image,
    .article-content {
        width: 100%;
    }

    .article-image {
        margin-bottom: 40px;
    }
}

.timeline-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: white;
}

.timeline-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    font-weight: 300;
}

/* Zig-Zag Logic: Reverse alternate rows */
.timeline-row.reverse {
    flex-direction: row-reverse;
}

/* Responsive for Chi Siamo */
@media (max-width: 992px) {
    .split-hero {
        flex-direction: column;
        height: auto;
    }

    .split-hero-image {
        width: 100%;
        height: 50vh;
    }

    .split-hero-content {
        width: 100%;
        padding: 60px 20px;
        height: auto;
    }

    .timeline-row {
        flex-direction: column;
        height: auto;
    }

    .timeline-row.reverse {
        flex-direction: column;
    }

    .timeline-text,
    .timeline-visual {
        width: 100%;
    }

    .timeline-visual {
        height: auto;
        /* Remove fixed height */
    }
}

/* Single Project Page Styles */
.project-header {
    height: 80px;
    /* Same height as global header */
    width: 100%;
    position: fixed;
    /* Fix it to top like the header */
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    /* Center vertically in the 80px strip */
    justify-content: center;
    /* Center horizontally in the page */
    z-index: 999;
    /* Let clicks pass through to header links if needed */
    background-color: transparent;
    /* Transparent to overlay */
    padding: 0 50px;
    pointer-events: none;
}

/* Adjust title to match Logo/Menu specs */
.single-project-title {
    font-size: 3rem;
    /* Match other main titles */
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    pointer-events: auto;
    /* Re-enable clicks if it's text */
    margin-top: 5px;
    /* Fine-tune alignment with MENU text baseline */
    margin: 0;
}

/* Responsive adjustments for project header */
@media (max-width: 992px) {

    /* On mobile/tablet, we might want it smaller or differently positioned, 
           but for now keeping it centered as requested */
    .single-project-title {
        font-size: 1.5rem;
    }
}

.video-section {
    padding-top: 80px;
    width: 100%;
    height: auto;
    min-height: 60vh;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Prevent overflow */
}

.video-player {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
    /* Ensure video is fully visible */
    border-bottom: 1px solid #333;
}

.profile-view {
    width: 100%;
    padding: 50px 20px;
    /* Added horizontal padding */
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Prevent overflow */
}

.profile-view img {
    width: 100%;
    /* Ensure it fills width if needed */
    max-width: 1200px;
    /* Max constraint */
    height: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
}

/* Technical Specs Column */
.tech-specs {
    background-color: var(--color-gray-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-black);
}

.tech-specs h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.specs-list {
    list-style: none;
    max-width: 600px;
    width: 100%;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.spec-value {
    font-weight: 300;
    color: var(--color-black);
    text-align: right;
}

/* Bottom Gallery Carousel */
.bottom-gallery {
    padding: 50px 0;
    background-color: var(--color-black);
    overflow: hidden;
    /* Hide scrollbar if implementing JS slider later */
}

.gallery-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    /* Allow horizontal scroll */
    padding: 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    /* Fixed width for carousel items */
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

/* Dependance Page Grid */
.dependance-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

.dependance-item {
    width: 45%;
    /* Side by side on desktop */
    min-width: 300px;
    cursor: zoom-in;
}

.dependance-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dependance-item:hover img {
    transform: scale(1.02);
}

/* Lightbox Styles */
#lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    /* Hidden by default */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

#lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid #333;
}

.watermark-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Let clicks pass through */
    opacity: 0.2;
    /* Semi-transparent */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    width: 100%;
    height: 100%;
}

.watermark-overlay img {
    width: 200px;
    /* Logo size */
    opacity: 0.5;
    margin-bottom: 20px;
}

.watermark-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dependance-item {
        width: 100%;
    }

    .watermark-overlay img {
        width: 150px;
    }

    .watermark-overlay span {
        font-size: 1.5rem;
    }
}