.fullscreen-image-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.fullscreen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding-top: 120px;
    background: rgba(0, 0, 0, 0.3);
}

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

.fullscreen-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.fullscreen-subtitle {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .fullscreen-overlay {
        padding-top: 80px;
    }

    .fullscreen-title {
        font-size: 2rem;
    }

    .fullscreen-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .fullscreen-overlay {
        padding-top: 60px;
    }

    .fullscreen-title {
        font-size: 1.8rem;
    }

    .fullscreen-subtitle {
        font-size: 1rem;
    }
}