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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    color: #fff;
    background: #000;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    height: 120vh;
    background: url('../images/pc_01.jpg');
    background-size: cover;
    background-position: bottom center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1920px;
    padding-left: 100px;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Libre Caslon Text', 'Big Caslon', 'Caslon', serif;
    font-size: 90px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero .subtitle {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    opacity: 1;
    line-height: 1.3;
}

/* Content Sections with Images */
.content-section {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

picture {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* Mobile - 100% width for images */
@media (max-width: 768px) {
    .section-image {
        max-width: 100%;
        width: 100%;
    }
    picture {
        max-width: 100%;
        width: 100%;
    }

    /* Mobile Header - Center logo, hide nav */
    header {
        justify-content: center;
        padding: 50px 30px;
        transition: padding 0.3s ease;
    }

    .header-inner {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .logo {
        margin: 0 auto;
    }

    header.scrolled {
        padding: 15px 30px;
    }

    header.scrolled .logo img {
        height: 28px;
    }

    nav {
        display: none;
    }

    /* Mobile Hero - Center content */
    .hero {
        height: 100vh;
        background: url('../images/m_01.png');
        background-size: cover;
        background-position: bottom center;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 0;
        padding: 0 30px;
        padding-top: 80px;
        text-align: center;
    }

    /* Hide subtitle on mobile */
    .hero .subtitle {
        display: none;
    }

    /* Hide pc_07 on mobile */
    #additional {
        display: none;
    }

    /* Add padding to last section on mobile - match fixed menu height */
    #country {
        padding-bottom: 70px;
    }
}
.fixed {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 9999 !important;
    background: #1F1F1F;
    border-radius: 50px;
    z-index: 9999;
    text-align: center;
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 30px;
    padding-bottom: 0;
}

.fixed a {
    color: #fff !important;
    text-decoration: none !important;
}

.fixed a:hover {
    opacity: 0.8;
}

.fixed img {
    width: 25px;
    height: 25px;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    margin-left: auto;
    margin-right: auto;
}

.fixed h5 {
    color: #fff !important;
    font-size: 10px;
    font-weight: 400;
    margin: 0;
    padding-bottom: 20px;
}

.topimg {
    margin-top: auto;
    padding-bottom: 0;
}

.topimg img {
    width: 70px !important; 
    height: 70px !important;
    margin-bottom: -10px !important;
    padding-bottom: 0px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 56px;
        letter-spacing: 2px;
        line-height: 1.1;
    }
}
@media screen and (max-width: 768px) {
    .fixed {
        display: flex;
        margin-bottom: 0px !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        position: fixed !important;
        top: auto;
        right: 0px;
        left: 0px;
        bottom: 0px;
        z-index: 9999 !important;
        padding: 10px 0px;
        flex-direction: row;
        border-radius: 0px;
        width: 100%;
    }
    .topimg {display: none;}
    .fixed div {
        width: calc(25% - 5px);
        justify-content: space-between;
        height: 55px;
    }
 
}