.portfolio-section {
    background-color: #F5F0E6;
    padding: 80px 20px;
    border-radius: 20px 20px 0 0;
}

.services-text {
    text-align: center;
    font-family: "Philosopher", sans-serif;
    font-size: 2.5rem;
    color: #C4B6D2;
    margin-bottom: 30px;
}

.play {
    text-align: center;
    margin-bottom: 60px;
    color: #442b20;
    font-size: 16px;
    font-style: italic;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
}

.portfolio-row {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-item {
    text-align: center;
    max-width: 380px;
    }


.portfolio-thumbnail {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.portfolio-caption {
    font-family: "Xanh Mono", monospace;
    font-size: 1.25rem;
    color: #442b20;
    margin-top: 16px;
}

.portfolio-video {
    width: 100%;
    max-width: 380px;
    height: 675px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
    background-color: #000;
}

.resume-button {
    display: flex;
    justify-content: center;
    background-color: #F5F0E6;
    padding-bottom: 20px;
}

.big-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    background-color: #F5F0E6;
    padding: 15px 32px;
    text-decoration: none;
    font-size: 2rem;
    font-family: "Philosopher", sans-serif;
    color: #C4B6D2;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
}

a {
    text-decoration: none;
}

.big-button:hover {
    color: #333;
}

.big-button:visited {
    text-decoration: none;
}

/* Hide default browser video controls */
.portfolio-video::-webkit-media-controls {
    display: none !important;
}

