body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body {
    background-image: url('img/bg.png?height=1080&width=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}

main {
    flex: 1;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ccc;
}

.social {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social a {
    color: white;
    font-size: 1.5em;
}

.contact-button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: #f0f0f0;
}

.description {
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: justify;
}

.skills, .projects, .referrals {
    margin-bottom: 30px;
}

.logo-strip {
    /* display: flex; */
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-strip img {
    margin: 0 10px 0 10px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.thumbnail-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.thumbnail:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2em;
    opacity: 0.8;
    pointer-events: none;
}

.referral-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

blockquote {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ccc;
    margin: 0;
    padding: 20px;
    font-style: italic;
    max-width: 300px;
    text-align: left;
}

blockquote footer {
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    flex-shrink: 0;
}

.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.fullscreen-overlay img,
.fullscreen-overlay video {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.2em;
    }

    .thumbnail-container {
        width: 80px;
        height: 80px;
    }

    /* .logo-strip img {
        width: 40px;
        height: 40px;
    }  */

    .referral-container {
        flex-direction: column;
    }

    blockquote {
        max-width: 100%;
    }
}

