﻿.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .glass-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

    .hero-image-wrapper img {
        transition: transform 0.5s ease;
    }

    .hero-image-wrapper:hover img {
        transform: scale(1.05);
    }

.modern-badge {
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-btn {
    backdrop-filter: blur(10px);
    background: rgba(33, 52, 72, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

    .modern-btn:hover {
        background: rgba(33, 52, 72, 0.95);
        transform: translateX(-5px);
    }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gallery-item img {
        transition: transform 0.4s ease;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

.info-card {
    border: 1px solid #213448;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

    .info-card:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #213448;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #452829;
}

.section-title {
    background: linear-gradient(135deg, #213448, #547792, #94B4C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.description-text {
    color: #452829;
    line-height: 1.8;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #213448;
}

.project-title {
    background: linear-gradient(135deg, #94B4C1, #EAE0CF, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
}


@media (max-width: 768px) {
    .project-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}