:root {
    --primary-color: #FCA311;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #ddd;
    --font-family: 'Noto Sans KR', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0;
}

.auth-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

/* Hero Section */
#hero {
    display: flex;
    height: calc(100vh - 80px); /* Adjust based on header height */
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 0 0 40%;
    background: #fff;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    padding-left: 10%; /* Visual alignment */
}

.badge {
    background: #888;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 3rem;
    word-break: keep-all;
}

.highlight {
    color: var(--primary-color);
}

.btn-link {
    display: inline-block;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination Dots */
.pagination-dots {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #888;
    border: 2px solid #555;
    background: transparent;
    width: 12px;
    height: 12px;
}

/* Floating Quick Menu */
.quick-menu {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.quick-item {
    background: #fff;
    border-radius: 12px; /* iOS style rounded corners */
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s, background 0.3s, color 0.3s;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.2;
}

.quick-item:hover {
    transform: translateY(-5px);
}

.quick-item .icon-box {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color); /* Icon color */
}

/* Active Quick Item (Orange) */
.quick-item.active {
    background: var(--primary-color);
    color: #fff;
}

.quick-item.active .icon-box {
    color: #fff;
}


/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    .hero-content {
        flex: 0 0 50%;
    }
    .quick-menu {
        transform: scale(0.8) translateY(-60%);
        right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .auth-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }

    #hero {
        flex-direction: column;
        height: auto;
    }

    .hero-content {
        order: 2; /* Text below image on mobile usually, but let's see. Plan said Text top often. Let's stack naturally. */
        padding: 3rem 1.5rem;
        flex: auto;
        width: 100%;
        text-align: center;
    }
    
    .hero-text {
        padding-left: 0;
    }

    h1 {
        font-size: 2rem; /* Smaller for mobile */
        margin-bottom: 1.5rem;
    }

    .hero-image {
        order: 1;
        height: 50vh; /* Half height image */
        flex: auto;
    }

    .pagination-dots {
       display: none; /* Hide dots on mobile usually */
    }

    .quick-menu {
        display: none; /* Hide floating menu on small mobile or change to bottom bar */
        /* Alternative: Bottom bar */
        /*
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        width: 100%;
        transform: none;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px;
        background: transparent;
        pointer-events: none; 
        */
        /* For now, hiding to keep it clean as per typical request unless specified */
    }
    
    /* Mobile Nav Drawer styles */
    .mobile-nav.active {
        display: block;
        padding: 1rem;
    }
    
    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-nav a {
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        padding: 0.5rem 0;
    }
}
