:root {
    --bg-dark: #121619;
    --sand: #D8CFAF;
    --leaf-green: #6A7152;
    --deep-green: #233329;
    --text-light: #f8f9fa;
}

body {
    background:
            linear-gradient(
                    135deg,
                    var(--bg-dark) 0%,
                    var(--deep-green) 100%
            );

    background-attachment: fixed;

    color: var(--text-light);

    font-family: 'Inter', sans-serif;

    min-height: 100vh;

    margin: 0;
}



/* HERO SECTION */

.hero-section {
    padding-top: 25vh;
    padding-bottom: 5vh;

    display: flex;
    align-items: center;
}



/* PROFILE CARD */

.profile-card {
    background-color: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    overflow: hidden;

    width: 100%;

    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}



/* HERO IMAGE */

.hero-image-container {
    overflow: hidden;

    height: 100%;

    min-height: 400px;

    background-color: var(--leaf-green);
}

.hero-img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}



/* TEXT */

.subtitle {
    color: var(--leaf-green);

    font-weight: 700;

    font-size: 0.85rem;

    letter-spacing: 3px;
}

.info-text {
    color: var(--sand);

    font-weight: 500;
}

h6 {
    color: var(--text-light);

    opacity: 0.7;

    text-transform: uppercase;

    font-size: 0.7rem;

    letter-spacing: 2px;
}



/* PORTFOLIO */

.portfolio-section {
    margin-top: 10px;

    padding-bottom: 50px;
}



/* FILTER BUTTONS */

.btn-filter {
    background: transparent;

    border: 1px solid var(--leaf-green);

    color: var(--leaf-green);

    padding: 8px 22px;

    border-radius: 50px;

    transition: all 0.3s ease;

    font-size: 0.85rem;

    font-weight: 600;
}

.btn-filter.active,
.btn-filter:hover {
    background: var(--leaf-green);

    color: white;
}



/* MASONRY GRID */

.mosaic-grid {
    column-count: 3;

    column-gap: 20px;

    width: 100%;
}

.mosaic-item {
    display: inline-block;

    width: 100%;

    margin-bottom: 20px;

    break-inside: avoid;
}

.mosaic-item img {
    width: 100%;

    height: auto;

    min-height: 200px;

    object-fit: cover;

    border-radius: 10px;

    display: block;

    transition: transform 0.3s ease;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.03);
}

.mosaic-item:hover img {
    transform: scale(1.02);
}



/* RESPONSIVE */

@media (max-width: 992px) {

    .mosaic-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {

    .mosaic-grid {
        column-count: 1;
    }
}