/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F4EFE4;
    color: #171512;
    font-family: Georgia, "Times New Roman", serif;
}


/* ================================
   NAVIGATION
================================ */

.navbar {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 30px 50px;

    z-index: 10;
}

.logo {
    display: block;
    width: 160px;
    height: 110px;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 160px !important;
    height: 110px !important;
    object-fit: contain;
    object-position: left center;
}

.navbar {
    position: absolute;
    top: 0;
    right: 0;

    width: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 35px 5vw;

    z-index: 10;
}

.navbar nav {
    display: flex;
    gap: 40px;
}

.navbar nav a {
    color: #F4EFE4;
    text-decoration: none;

    font-size: 0.85rem;
    letter-spacing: 0.08em;

    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: #B08D57;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 100vh;

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

    position: relative;

    overflow: hidden;

    background-color: #6B6862;
}

.hero-content {
    text-align: center;

    color: #F4EFE4;

    width: 100%;
    max-width: 900px;

    padding: 30px;
}

.hero-logo {
    display: block;

    width: 300px;
    height: auto;

    margin: 25px auto 35px;
}

.korean-title {
    font-family: "Noto Serif KR", serif;

    font-size: 2rem;

    letter-spacing: 0.35em;

    color: #B08D57;

    margin: 0;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);

    letter-spacing: 0.15em;

    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: "Noto Serif", serif;

    font-size: 1rem;

    letter-spacing: 0.25em;

    margin: 0 0 40px;

    color: #F4EFE4;
}

.hero-button {
    display: inline-block;

    padding: 14px 32px;

    border: 1px solid #F4EFE4;

    color: #F4EFE4;

    text-decoration: none;

    font-size: 0.85rem;

    letter-spacing: 0.08em;

    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #F4EFE4;

    color: #171512;
}


/* ================================
   TEMPORARY SECTIONS
================================ */

.placeholder-section {
    min-height: 70vh;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding: 80px 20px;
}

.placeholder-section:nth-child(even) {
    background-color: #FAF8F2;
}

.placeholder-section h2 {
    font-size: 3rem;

    margin-bottom: 20px;
}

.placeholder-section p {
    font-size: 1.1rem;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 700px) {

    .navbar {
        padding: 20px;
    }

    .navbar nav {
        gap: 15px;
    }

    .navbar nav a {
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

}