@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Gaegu:wght@400;700&display=swap');

:root {
    /* Jeju Vibe Palette */
    --color-tangerine: #FF8C00;
    --color-tangerine-light: #FFB347;
    --color-ocean: #20B2AA;
    --color-ocean-dark: #008B8B;
    --color-sand: #F5F5DC;
    --color-volcanic: #333333;
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;

    --font-main: 'Noto Sans KR', sans-serif;
    --font-hand: 'Gaegu', cursive;

    --shadow-card: 0 10px 20px rgba(0, 0, 0, 0.08);
    --radius-lg: 20px;
    --radius-btn: 50px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-volcanic);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 600px;
    /* Mobile-first optimization */
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--color-white);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

/* Header */
.header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-hand);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-tangerine);
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    padding: 40px 0;
    background: radial-gradient(circle at top, #FFF7E6 0%, transparent 70%);
}

.hero-badge {
    display: inline-block;
    background: var(--color-ocean);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(32, 178, 170, 0.3);
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-volcanic);
}

.hero h1 span {
    color: var(--color-tangerine);
    font-family: var(--font-hand);
}

.hero p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* CTA Buttons */
.cta-btn {
    display: block;
    width: 100%;
    padding: 18px 0;
    text-align: center;
    background: linear-gradient(to right, var(--color-tangerine), #FF6B6B);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-btn);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    transition: transform 0.2s;
    animation: pulse 2s infinite;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Categories */
.section-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 150px;
    background-color: #eee;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 15px;
    text-align: center;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-desc {
    font-size: 0.8rem;
    color: #888;
}

/* Banner */
.banner {
    margin: 40px -20px;
    background: var(--color-ocean);
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.banner h2 {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.banner-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: white;
    color: var(--color-ocean-dark);
    border-radius: 30px;
    font-weight: 700;
}

/* Reviews / Trust */
.trust-bar {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
}

.trust-item {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}

.trust-item i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--color-tangerine);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
    margin-top: 40px;
}