/* Font Face */
@font-face {
    font-family: 'Poppins';
    src: url('static/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('static/fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('static/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('static/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #dad0c4;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 70px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #40492a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #40492a;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav a:hover {
    color: #563f2e;
}

/* Hero Section */
.hero {
    background-color: #8c906b;
    min-height: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 40px 20px;
}

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

.hero-illustration {
    max-width: 320px;
    width: 100%;
    height: 280px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration img {
    width: 100%;
    max-width: 320px;
    max-height: 280px;
    height: auto;
    object-fit: contain;
}

.hero-title {
    color: #dad0c4;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* Hero Home Section */
.hero-home {
    background-color: #8c906b;
    min-height: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 40px 20px;
}

.hero-home-content {
    text-align: center;
    max-width: 500px;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-home-content img {
    width: 100%;
    max-width: 420px;
    max-height: 320px;
    height: auto;
    object-fit: contain;
}

/* About Section */
.about {
    background-color: #dad0c4;
    padding: 0;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 0.4fr;
    min-height: 550px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    padding: 80px 40px 80px 0;
    max-width: 100%;
}

.about-text h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8c906b;
    margin-bottom: 30px;
}

.about-text h4 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c906b;
    margin-top: 25px;
    margin-bottom: 12px;
}

.about-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
}

/* Inline Video Styling */
.inline-video-wrapper {
    width: 100%;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: #40492a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inline-video-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.inline-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
}

/* Small floating images within about text */
.text-with-small-image-left,
.text-with-small-image-right {
    margin-bottom: 30px;
}

.small-float-left {
    float: left;
    width: 350px;
    height: auto;
    margin: 0 30px 20px 0;
    border-radius: 8px;
    object-fit: cover;
}

.small-float-right {
    float: right;
    width: 200px;
    height: auto;
    margin: 0 0 15px 20px;
    border-radius: 8px;
    object-fit: cover;
}

.circular-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background-image: url('static/illustrations/Baumrinde_Rahmen.svg');
    background-size: cover;
    background-position: center;
    padding: 15px;
}

.circular-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 550px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: visible;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    object-position: right top;
    margin-right: 0;
    margin-top: 0;
}

/* Services Section */
.services {
    background-color: #dad0c4;
    padding: 40px 0 100px 0;
}

.services-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.service-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.service-image .circular-frame {
    max-width: 250px;
}

.service-item h3 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-preview {
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 300;
    margin: 15px 0 20px;
    padding: 0 10px;
}

.service-button {
    background-color: #8c906b;
    color: #dad0c4;
    border: none;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.service-button:hover {
    background-color: #40492a;
    transform: translateY(-2px);
}

/* Why Section */
.why {
    background-color: #40492a;
    padding: 100px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #dad0c4;
    margin-bottom: 10px;
}

.why-text h3 {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dad0c4;
    margin-bottom: 30px;
}

.why-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #dad0c4;
    font-weight: 300;
}

.why-illustration {
    display: flex;
    justify-content: center;
}

.why-illustration img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Video Gallery Section */
.video-gallery {
    background-color: #dad0c4;
    padding: 80px 0;
}

.video-gallery h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.video-item {
    position: relative;
}

.video-item h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8c906b;
    margin-bottom: 20px;
    text-align: center;
}

.video-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #40492a;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

@media (max-width: 968px) {
    .video-grid {
        gap: 40px;
        padding: 0 20px;
    }
    
    .video-gallery {
        padding: 60px 0;
    }
    
    .video-gallery h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .video-item h3 {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

/* Contact Divider */
.contact-divider {
    background-color: #40492a;
    height: 8px;
    width: 100%;
}

/* Contact Section */
.contact {
    background-color: #dad0c4;
    padding: 100px 0;
    text-align: center;
}

.contact h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.contact-icon {
    display: inline-block;
}

.contact-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-icon img:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #dad0c4;
    padding: 40px 0 30px;
    border-top: 1px solid #b79d86;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #8c906b;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a img {
    width: 30px;
    height: auto;
    transition: transform 0.3s;
}

.social-links a img:hover {
    transform: scale(1.1);
}

/* Desktop Optimizations - Hide inline videos, show only gallery */
@media (min-width: 769px) {
    /* Hide all inline videos on desktop */
    .inline-video-wrapper {
        display: none;
    }
    
    /* Show video gallery on desktop */
    .video-gallery {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #dad0c4;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .nav.active {
        max-height: 300px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0;
    }

    .about-text {
        padding: 40px 20px;
        max-width: 100%;
    }

    .about-image {
        min-height: 400px;
        order: -1;
        padding: 0;
        margin: 0;
    }
    
    .about-image img {
        max-width: 100%;
        margin: 0;
    }
    
    /* Mobile: Show inline videos, hide gallery */
    .inline-video-wrapper {
        margin: 20px 0;
        display: block;
    }
    
    /* Hide video gallery on mobile */
    .video-gallery {
        display: none;
    }
    
    /* Hide floating images on mobile */
    .small-float-left,
    .small-float-right {
        display: none;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .about-text h2,
    .why-text h2,
    .contact h2 {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .circular-frame {
        max-width: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Legal Pages */
.legal-page {
    background-color: #dad0c4;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #40492a;
    margin-bottom: 50px;
    text-align: center;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #40492a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #8c906b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: #8c906b;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 8px;
}

.legal-content a {
    color: #8c906b;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #40492a;
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #dad0c4;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: #40492a;
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    padding: 15px 25px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    background-color: #dad0c4;
}

.modal-close:hover,
.modal-close:focus {
    color: #8c906b;
}

#modalBody {
    padding: 20px 60px 60px;
}

#modalBody h2 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #40492a;
    margin-bottom: 30px;
    text-align: center;
}

#modalBody h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c906b;
    margin-top: 30px;
    margin-bottom: 15px;
}

#modalBody p {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 15px;
}

#modalBody ul {
    margin: 15px 0;
    padding-left: 30px;
}

#modalBody li {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 8px;
}

#modalBody .modal-price {
    background-color: #8c906b;
    color: #dad0c4;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    text-align: center;
}

#modalBody .modal-price p {
    color: #dad0c4;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 90vh;
    }

    #modalBody {
        padding: 20px 30px 40px;
    }

    #modalBody h2 {
        font-size: 22px;
    }

    .modal-close {
        font-size: 30px;
        padding: 10px 20px;
    }
}

/* Service Detail Pages */
.service-detail {
    background-color: #dad0c4;
    padding: 80px 0;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #40492a;
    margin-bottom: 40px;
    text-align: center;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c906b;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.service-detail-content li {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 12px;
}

.price-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.price-image {
    display: flex;
    justify-content: center;
}

.price-image .circular-frame {
    max-width: 300px;
}

.price-box {
    background-color: #8c906b;
    color: #dad0c4;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.price-box p {
    color: #dad0c4;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.price-box p:last-child {
    margin-bottom: 0;
}

/* Text with Images - Grid Layout */
.text-with-image-left,
.text-with-image-right {
    display: grid;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.text-with-image-left {
    grid-template-columns: 45% 1fr;
}

.text-with-image-right {
    grid-template-columns: 1fr 45%;
}

.float-left,
.float-right {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 8px;
    object-fit: cover;
}

/* Bottom Banner with Text */
.bottom-banner-with-text {
    background-color: #40492a;
    padding: 80px 0;
}

.banner-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-text-content.centered {
    grid-template-columns: 1fr;
    justify-items: center;
}

.banner-text h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #dad0c4;
    margin-bottom: 10px;
}

.banner-text h3 {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dad0c4;
    margin-bottom: 30px;
}

.banner-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #dad0c4;
    font-weight: 300;
    margin-bottom: 15px;
}

.banner-illustration {
    display: flex;
    justify-content: center;
}

.banner-illustration img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.logo a {
    display: inline-block;
}

@media (max-width: 768px) {
    .service-detail-content h2 {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .service-detail-content h3 {
        font-size: 18px;
    }

    .text-with-image-left,
    .text-with-image-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .text-with-image-left > img,
    .text-with-image-right > img {
        grid-column: 1;
        grid-row: auto;
    }

    .text-with-image-left > *:not(img),
    .text-with-image-right > *:not(img) {
        grid-column: 1;
    }

    .banner-text-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .banner-illustration img {
        max-width: 200px;
    }

    .banner-image img {
        max-width: 100%;
    }

    .price-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-image .circular-frame {
        max-width: 250px;
    }
}

/* Image Gallery */
.image-gallery {
    background-color: #dad0c4;
    padding: 80px 0;
}

.image-gallery h2 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #40492a;
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #dad0c4;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #8c906b;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .lightbox-close {
        top: 20px;
        right: 30px;
        font-size: 40px;
    }
}
