body {
    font-family: "Gabriela", serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-family: "Cactus Classical Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.navbar-nav li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-section {
    position: relative;
    height: 407px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding-left: 120px;
    z-index: 1;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    font-family: 'Amethysta', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 57px;
    color: #ffedca;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    white-space: pre-line;
    z-index: 3;
}


.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-1 {
    grid-column: span 2;
    aspect-ratio: 2 / 1.5;
}

.item-2 {
    grid-column: span 4;
    aspect-ratio: 4 / 1.5;
}

.item-3 {
    grid-column: span 4;
    aspect-ratio: 4 / 1;
}

.item-4 {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.item-5 {
    grid-column: span 4;
    aspect-ratio: 4 / 1.5;
}

.item-6 {
    grid-column: span 2;
    aspect-ratio: 2 / 1.5;
}

.load-more {
    font-size: 0.9rem;
    color: #2a36ff;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.load-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .navbar-brand span {
        font-size: 14px;
    }

    .hero-section {
        padding-left: 20px;
        height: 300px;
    }

    .hero-text {
        font-size: 32px;
        line-height: 40px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        grid-column: span 1;
        aspect-ratio: 16 / 9;
    }

}

@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        line-height: 34px;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }
}