* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Le Murmure', sans-serif;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #e0d0c1;
}

header {
    background-color: #000000;
    padding: 10px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

footer {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 100px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: zoom-out;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; 
    height: auto;
    padding: 15px;
    box-sizing: border-box;
}

.lightbox-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 85vh; 
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

/* Add a cursor pointer to all images that can be clicked */
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable:hover {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    footer p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    footer p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    footer p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 80%;
        max-width: 400px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 2em;
        margin-left: 0;
    }

    .profile-pic {
        width: 80%;
        max-width: 300px;
        height: auto;
        margin: 20px auto;
    }

    .circle-decoration {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        top: 10px;
        right: 10px;
    }

    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.5em;
    }

    #projects h2 {
        font-size: 48px;
    }
}

@media screen and (max-width: 390px) {
    .lightbox-content {
        padding: 10px;
        width: 95%;
    }

    .lightbox-image {
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}
