@font-face {
    font-family: "Neco";
    src: url("../images/assets/fonts/Neco-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neco";
    src: url("../images/assets/fonts/Neco-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neco";
    src: url("../images/assets/fonts/Neco-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(141, 84, 89, 0.42) 0%,
            rgba(55, 28, 31, 0.2) 35%,
            transparent 70%
        ),
        #070606;

    color: #ffffff;

    font-family:
        "Neco",
        Arial,
        Helvetica,
        sans-serif;
}

body.menu-open {
    overflow: hidden;
}

button {
    font: inherit;
}


/* HAMBURGER BUTTON */

.menu-button {
    position: fixed;
    top: 28px;
    left: 28px;
    z-index: 50;

    width: 54px;
    height: 48px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border: none;
    border-radius: 10px;

    background: #c98291;

    cursor: pointer;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.35);

    transition:
        transform 180ms ease,
        background 180ms ease;
}

.menu-button:hover {
    transform: scale(1.05);
    background: #d3919f;
}

.menu-button span {
    width: 30px;
    height: 4px;

    border-radius: 999px;

    background: #28171b;
}


/* TOP-RIGHT LOGO */

.site-logo {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 50;
}

.site-logo img {
    width: 150px;
    height: auto;
    display: block;
}


/* SIDE MENU */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.side-menu {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 14px;

    width: min(320px, calc(100vw - 28px));

    padding: 35px 28px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    border: 1px solid rgba(226, 160, 173, 0.35);
    border-radius: 24px;

    background: rgba(18, 13, 15, 0.94);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55);

    transform: translateX(-110%);

    transition:
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.open .side-menu {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 14px;
    right: 18px;

    border: none;

    background: transparent;
    color: #ffffff;

    font-size: 42px;

    cursor: pointer;
}

.menu-logo {
    width: 250px;
    height: auto;

    margin: 10px auto 28px;
}

.side-menu a {
    padding: 14px 18px;

    border-radius: 14px;

    color: #ffffff;
    text-decoration: none;

    font-size: 20px;
    font-weight: 500;

    transition:
        background 180ms ease,
        color 180ms ease;
}

.side-menu a:hover,
.side-menu a.active {
    background: #c98291;
    color: #28171b;
}


/* HOME PAGE */

.home-page {
    width: min(1200px, 90vw);

    margin: 0 auto;

    padding: 150px 0 100px;
}


/* ABOUT SECTION */

.about-section {
    display: grid;

    grid-template-columns:
        minmax(250px, 420px)
        minmax(300px, 1fr);

    align-items: center;

    gap: 65px;

    padding: 40px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;

    background: rgba(20, 14, 16, 0.76);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.38);
}

.about-image {
    overflow: hidden;

    aspect-ratio: 1 / 1;

    border-radius: 24px;

    background: #171214;
}

.about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 18px;
}

.about-content h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
}

.about-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.7;
}


/* DIRECTORY */

.directory-section {
    margin-top: 90px;
}

.directory-section h2 {
    margin-bottom: 30px;

    font-size: clamp(30px, 4vw, 46px);
    text-align: center;
}

.directory-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

   .directory-card img {
     position: absolute;
     right: 30px;
     top: 50%;
     transform: translateY(-50%);
     width: 250px;
     height: auto;
     margin-top: 0;
 }

 .directory-card {
     position: relative;
     min-height: 220px;
 
     padding: 30px 300px 30px 30px;
 
     display: flex;
     flex-direction: column;
     justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;

    background: rgba(22, 16, 18, 0.82);

    color: #ffffff;
    text-decoration: none;

    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.3);

    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.directory-card:hover {
    transform: translateY(-6px);

    background: rgba(201, 130, 146, 0.2);

    border-color: rgba(226, 160, 173, 0.65);
}

.directory-card h3 {
    margin-bottom: 10px;

    font-size: 28px;
    font-weight: 700;
}

.directory-card p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 15px;
    line-height: 1.5;
}

.coming-soon-button {
    position: relative;
}

.coming-soon-button::after {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);

    background: #00000067;
    color: #c58b91;
    border: 2px solid #c58b91;
    border-radius: 10px;
    padding: 20px 30px;

    font-size: 60px;
    font-weight: bold;
    letter-spacing: 2px;
    white-space: nowrap;

    z-index: 100;
    pointer-events: none;
}

/* TABLET */

@media (max-width: 850px) {
    .about-section {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 30px;
    }

    .about-image {
        width: min(100%, 430px);

        margin: 0 auto;
    }

    .about-content {
        align-items: center;

        text-align: center;
    }
}


/* MOBILE */

@media (max-width: 600px) {
    .menu-button {
        top: 18px;
        left: 18px;

        width: 48px;
        height: 43px;
    }

    .site-logo {
        top: 18px;
        right: 18px;
    }

    .site-logo img {
        width: 48px;
    }

    .home-page {
        width: 90vw;

        padding: 105px 0 70px;
    }

    .about-section {
        padding: 20px;

        border-radius: 20px;
    }

    .about-image {
        border-radius: 18px;
    }

    .about-content h1 {
        font-size: 38px;
    }

    .about-content p {
        font-size: 16px;
    }

    .directory-section {
        margin-top: 60px;
    }

    .directory-grid {
        grid-template-columns: 1fr;
    }

    .directory-card {
        min-height: 150px;

        padding: 24px;
    }
    .directory-card img {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
}