/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/

/* =========================
   FONT
========================= */

@font-face {
    font-family: "Manrope";
    src: url("assets/fonts/Manrope-VariableFont_wght.woff2") format("woff2");
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
}

/* =========================
   BASE
========================= */

html, body {
    margin: 0;
    padding: 0;
    background: #000 !important;
    color: #fff !important;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.site,
.elementor,
.elementor-section {
    background: transparent !important;
}

.sf-page {
    padding-top: 180px;
}

/* =========================
   LINKS (ULTRA MINIMAL)
========================= */

a,
a:visited,
a:hover,
a:active {
    color: #fff !important;
    text-decoration: none;
}

/* =========================
   HEADER
========================= */

.sf-header {
    position: relative;
    padding: 0;
}

.sf-top {
    position: fixed;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 100;
}

/* =========================
   TITLE (FIXED)
========================= */

.sf-title {
    position: fixed;
    top: 26px;
    left: 50%;
    transform: translateX(-50%) scale(1);

    width: 100%;
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 5.8em;
    line-height: 0.9;

    text-transform: uppercase;
    text-align: center;

    color: #fff;

    overflow: hidden;
    z-index: 100;

    transition: transform 0.25s ease-out;
}

.sf-title a {
    color: #fff;
}

/* =========================
   SHRINK STATE
========================= */

.sf-header.shrink .sf-title {
    transform: translateX(-50%) scale(0.95);
}

/* =========================
   MENU
========================= */

.sf-menu {
    display: flex;
    justify-content: center;
    gap: 28px;

    margin-top: 120px;
}

/* =========================
   MENU LINKS
========================= */

.sf-menu a {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.18em;

    text-transform: uppercase;
    color: #fff;
}

/* =========================
   GALLERY (MASONRY)
========================= */

.portfolio-grid {
    column-count: 4;
    column-gap: 5px;
    line-height: 0;
    width: 100%;
	
	padding-top: 190px;
}

.portfolio-item {
    break-inside: avoid;
    margin: 0 0 5px 0;
    padding: 0;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.portfolio-item img:hover {
    opacity: 0.85;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .portfolio-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        column-count: 1;
    }
}

/* =========================
   LIGHTBOX
========================= */

.sf-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.sf-lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.sf-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.8;
}

.sf-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    opacity: 0.8;
}

.sf-prev { left: 10px; }
.sf-next { right: 10px; }

.sf-lightbox-trigger {
    cursor: pointer;
}

.sf-lightbox-close:hover,
.sf-nav:hover {
    opacity: 1;
}

/* =========================
   FOOTER
========================= */

.sf-footer {
    text-align: center;
    padding: 40px;
    font-size: 12px;
}