@font-face {
    font-family: THICCCBOI;
    font-weight: bold;
    src: url('THICCCBOI-Bold.ttf');
}
@font-face {
    font-family: THICCCBOI;
    font-weight: normal;
    src: url('THICCCBOI-Medium.ttf');
}

body {
    font-family: THICCCBOI, sans-serif;
}

h1 {
    margin: 0;
    transition: filter 0.2s ease;
}

h1:hover {
    filter: blur(2px);
}

.h1 {
    font-family: "Playfair Display", sans-serif;
    font-style: italic;
    font-weight: 400;
}

p {
    margin: 0;
}

.hover {
    opacity: 70%;
    transition: opacity 0.2s ease;
}

.hover:hover {
    opacity: 100%;
}

.hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.3s ease;
}

.position-relative:hover .hover-img {
    filter: grayscale(100%) brightness(50%);
}

.ratio.position-relative {
    display: flex !important;            /* enable flex */
    align-items: center;                 /* vertical center */
    justify-content: center;             /* horizontal center */
    text-align: center;                  /* center multiline text */
    padding: 0 10px;                    /* optional padding for text */
}

.overlay-text {
    position: absolute;                  /* keep absolute for overlay */
    z-index: 2;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;                 /* vertical center text */
    justify-content: center;             /* horizontal center text */
    padding: 0 1rem;
    white-space: normal;                 /* allow multiline wrap */
}

.position-relative:hover .overlay-text {
    opacity: 1;
}

/* Mobile menu styling */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.90); /* translucent */
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Close button position */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Menu content layout */
.mobile-menu .menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu .nav-links a {
    font-size: 1.5rem;
    margin: 15px 0;
}

/* Social links at bottom */
.mobile-menu .social-links {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-img {
    max-height: 1.75em;
    width: auto;
}
