@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Jua&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
    /* Warm & Playful Pastel Color System */
    --bg-main: #FFFDF9; /* Cream/Warm Ivory */
    --bg-card: #FFFFFF;
    --text-primary: #4A3F3B; /* Warm Charcoal/Deep Brown */
    --text-secondary: #7A6F6A; /* Soft Muted Brown */
    --text-muted: #A39893;
    
    /* Playful Accent Colors */
    --accent-yellow: #FFD25A; /* Banana Yellow */
    --accent-orange: #FFA053; /* Soft Orange */
    --accent-pink: #FF8E99; /* Strawberry Pink */
    --accent-mint: #86E3CE; /* Soft Mint Green */
    --accent-blue: #70AEFF; /* Sky Blue */
    --accent-purple: #D0B3FF; /* Soft Lavender */
    
    /* Borders & Roundness */
    --border-play: 4px solid #F0EAE1;
    --border-hover: 4px solid #FFD25A;
    --radius-bubble: 32px;
    --radius-pill: 9999px;
    
    /* Fonts */
    --font-display: 'Fredoka', 'Noto Sans KR', sans-serif;
    --font-body: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Animations */
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Explicitly set display font for headings, navigation, buttons, and labels */
h1, h2, h3, h4, .logo, .badge, .tracker-title, .tracker-count, .stat-val, .project-title, .btn-submit, nav a, .footer-logo, .form-label {
    font-family: var(--font-display);
}

/* Playful background doodles & blobs */
body::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 210, 90, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 600px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 142, 153, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 20px 0;
    background: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 3px dashed #F0EAE1;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo span {
    color: var(--accent-orange);
}

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

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition-bounce);
}

nav a:hover {
    color: var(--text-primary);
    background: #FFF0D4;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 210, 90, 0.18) 0%, rgba(0,0,0,0) 65%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 142, 153, 0.12) 0%, rgba(0,0,0,0) 65%);
    pointer-events: none;
    z-index: 0;
}

/* 2-column hero layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* LEFT: Editorial Headline */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.badge {
    display: inline-block;
    padding: 7px 16px;
    background: #FFF0D4;
    border: 2.5px solid var(--accent-yellow);
    color: #A86200;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    box-shadow: 0 3px 0 rgba(255, 210, 90, 0.5);
}

.hero-left h1 {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.055em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-left h1 span {
    color: var(--accent-orange);
    position: relative;
    display: inline;
}

.hero-left p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-tag {
    background: #FFFFFF;
    border: 2.5px solid #F0EAE1;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: -0.02em;
    transition: var(--transition-bounce);
    box-shadow: 0 3px 0 #F0EAE1;
}

.hero-tag:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 3px 0 var(--accent-yellow);
    transform: translateY(-2px);
}

/* RIGHT: Studio Identity Cards */
.hero-right {
    position: relative;
}

/* RIGHT: 2x2 Studio Value Tile Grid */
.studio-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.studio-tile {
    border-radius: 24px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    cursor: default;
}

.studio-tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(92, 75, 71, 0.12);
}

/* Tile color themes */
.studio-tile-yellow {
    background: linear-gradient(135deg, #FFF9E0 0%, #FFEDB3 100%);
    border: 2px solid rgba(255, 210, 90, 0.4);
}
.studio-tile-mint {
    background: linear-gradient(135deg, #EDFBF6 0%, #C5F2E5 100%);
    border: 2px solid rgba(134, 227, 206, 0.4);
}
.studio-tile-blue {
    background: linear-gradient(135deg, #EDF4FF 0%, #C5DAFF 100%);
    border: 2px solid rgba(112, 174, 255, 0.4);
}
.studio-tile-pink {
    background: linear-gradient(135deg, #FFF0F2 0%, #FFD0D7 100%);
    border: 2px solid rgba(255, 142, 153, 0.4);
}

/* Decorative circle blob inside each tile */
.studio-tile::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
}
.studio-tile-yellow::after { background: #FFD25A; }
.studio-tile-mint::after   { background: #86E3CE; }
.studio-tile-blue::after   { background: #70AEFF; }
.studio-tile-pink::after   { background: #FF8E99; }

.studio-tile-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.studio-tile-yellow .studio-tile-icon-wrap { background: rgba(255, 210, 90, 0.4); }
.studio-tile-mint   .studio-tile-icon-wrap { background: rgba(134, 227, 206, 0.4); }
.studio-tile-blue   .studio-tile-icon-wrap { background: rgba(112, 174, 255, 0.4); }
.studio-tile-pink   .studio-tile-icon-wrap { background: rgba(255, 142, 153, 0.4); }

.studio-tile-title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1.3;
}

.studio-tile-desc {
    font-size: 12.5px;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    line-height: 1.6;
}


.progress-bar-container {
    height: 12px;
    background: #F5F1EB;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 2px solid #EAE2D8;
}

.progress-bar {
    height: 100%;
    width: 2%;
    background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    border-radius: var(--radius-pill);
    transition: width 1.2s ease-out;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-left h1 {
        font-size: 52px;
    }
    .hero-left {
        align-items: center;
        text-align: center;
    }
    .hero-tags {
        justify-content: center;
    }
    .studio-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    nav ul {
        gap: 12px;
    }
    nav a {
        font-size: 14px;
        padding: 4px 12px;
    }
    .hero-left h1 {
        font-size: 42px;
    }
    .studio-card-grid {
        grid-template-columns: 1fr;
    }
}



/* Projects Section */
.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
    margin-bottom: 12px;
    text-align: center;
    color: var(--text-primary);
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.project-card {
    border-radius: var(--radius-bubble);
    overflow: hidden;
    background: var(--bg-card);
    border: 4px solid #F0EAE1;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 20px rgba(92, 75, 71, 0.03);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-yellow);
    box-shadow: 0 20px 30px rgba(92, 75, 71, 0.08);
}

.card-header-img {
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 0 rgba(0,0,0,0.05);
    z-index: 20;
}

.status-live {
    background: var(--accent-mint);
    color: #1b5e4c;
    border: 2px solid #67cfb8;
}

.status-dev {
    background: var(--accent-orange);
    color: #fff;
    border: 2px solid #ff8838;
}

.status-planning {
    background: var(--accent-purple);
    color: #553b7c;
    border: 2px solid #b794eb;
}

.card-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px dashed #F0EAE1;
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: #FFFBF5;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 2px solid #F0EAE1;
}

.project-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-desc {
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px dashed #F0EAE1;
    padding-top: 20px;
    margin-top: auto;
}

.project-links {
    display: flex;
    gap: 12px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFF8EB;
    border: 3px solid var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 0 var(--accent-yellow);
}

.btn-icon:hover {
    transform: translateY(-3px);
    background: var(--accent-yellow);
    color: #fff;
    box-shadow: 0 6px 0 #E5B22A;
}

/* Device Mockup General Style */
.device-mockup {
    width: 130px;
    height: 210px;
    background: #FFFDF8;
    border: 5px solid #EAE2D8;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(92, 75, 71, 0.05);
    margin-top: 15px;
    transition: var(--transition-bounce);
}

.project-card:hover .device-mockup {
    transform: scale(1.08) rotate(1deg);
    border-color: var(--accent-yellow);
}

.device-notch {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 8px;
    background: #EAE2D8;
    border-radius: 4px;
    z-index: 10;
    transition: var(--transition-bounce);
}

.project-card:hover .device-notch {
    background: var(--accent-yellow);
}

.device-screen {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    user-select: none;
}

/* Screen Specific Designs using Assets */

/* 1. Mallang Play (Sago Mini Playground) */
.card-mallangplay .card-header-img {
    background: linear-gradient(135deg, #FFF9EB 0%, #FFEFC7 100%);
}

.play-screen {
    background: #FFFBF0;
    background-image: url('assets/logo_mallang_play.png');
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: center 25px;
}

.play-character {
    width: 70px;
    height: 70px;
    background-image: url('assets/char_bear.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 45px;
    animation: bounce-ch 1.8s infinite ease-in-out;
}

@keyframes bounce-ch {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.play-btn {
    position: absolute;
    bottom: 12px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    box-shadow: 0 3px 0 #D57222;
}

/* 2. Mallang Storybook (Cute Green Screen with Cat) */
.card-storybook .card-header-img {
    background: linear-gradient(135deg, #EBFDF8 0%, #C7F7EB 100%);
}

.storybook-screen {
    background: #F4FBF9;
}

.story-char {
    width: 65px;
    height: 65px;
    background-image: url('assets/char_cat.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 15px;
    animation: wiggle-ch 2.5s infinite ease-in-out;
}

@keyframes wiggle-ch {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg) scale(1.05); }
}

.story-page {
    width: 80%;
    background: #fff;
    border-radius: 12px;
    padding: 10px 8px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
    border: 2px solid #E2F5F0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story-line {
    height: 4px;
    background: #D5ECE6;
    border-radius: 2px;
    width: 100%;
}

.story-line.short {
    width: 60%;
}

.story-audio {
    margin-top: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.audio-wave {
    width: 3px;
    height: 8px;
    background: var(--accent-mint);
    border-radius: 2px;
}

.audio-wave.playing {
    animation: wave-play 0.6s infinite alternate ease-in-out;
}

.audio-wave.playing:nth-child(2) { animation-delay: 0.15s; }
.audio-wave.playing:nth-child(4) { animation-delay: 0.3s; }

@keyframes wave-play {
    0% { height: 8px; }
    100% { height: 18px; }
}

/* 3. Garden of Memories (Warm Botanical Garden) */
.card-garden .card-header-img {
    background: linear-gradient(135deg, #FBFBF5 0%, #F5F5E9 100%);
}

.garden-screen {
    background: #FAF9F3;
    border: none;
}

.garden-flower {
    font-size: 16px;
    margin-top: 8px;
    animation: float-flower 3s infinite ease-in-out;
}

@keyframes float-flower {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-4px) rotate(15deg); }
}

.garden-frame {
    width: 64px;
    height: 64px;
    border: 3px solid #E6DFD3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
}

.garden-avatar {
    width: 44px;
    height: 44px;
    background-image: url('assets/char_rabbit.png'); /* Warm friendly rabbit representing memory */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.garden-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 10px;
    background: #FFF1DF;
    padding: 2px 10px;
    border-radius: 10px;
}

.garden-tribute {
    margin-top: auto;
    margin-bottom: 12px;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.tribute-bar {
    height: 2px;
    background: #EAE2D8;
    width: 100%;
}

.tribute-bar.short {
    width: 50%;
}

/* 4. Placeholder Card */
.card-placeholder {
    background: #FFFDF9;
    border: 4px dashed #DDD5C9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    padding: 32px;
    cursor: pointer;
}

.card-placeholder:hover {
    border-color: var(--accent-orange);
    background: #FFF8F2;
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.placeholder-plus {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FFF0E4;
    border: 3px dashed var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-orange);
    transition: var(--transition-bounce);
    box-shadow: 0 4px 0 #FFF0E4;
}

.card-placeholder:hover .placeholder-plus {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 6px 0 #E27B2B;
    transform: scale(1.1) rotate(90deg);
}

/* Support Section */
.support {
    padding: 20px 0 80px;
    background: var(--bg-main);
}

.support-card {
    background: #FFFDF9;
    border: 3px solid #FFF0D4;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 12px 24px rgba(92, 75, 71, 0.04);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 142, 153, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.support-icon {
    font-size: 56px;
    line-height: 1;
    background: #FFF0D4;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 210, 90, 0.2);
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.support-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.03em;
}

.support-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    letter-spacing: -0.01em;
}

.btn-support {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 0 #D36C22;
    transition: var(--transition-bounce);
    font-size: 15px;
    margin-top: 8px;
    letter-spacing: -0.02em;
}

.btn-support:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 7px 0 #B95B17;
    background: #E87A2E;
}

.coupang-notice-top {
    display: inline-block;
    background: #FFF5F5;
    border: 2px solid #FEB2B2;
    color: #C53030;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 3px 0 rgba(254, 178, 178, 0.4);
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Responsive Support Card */
@media (max-width: 768px) {
    .support {
        padding: 0 0 60px;
    }
    .support-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    .support-content {
        align-items: center;
    }
    .btn-support {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    border-top: 3px dashed #F0EAE1;
    background: #FFFBF5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff;
    border: 3px solid #F0EAE1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-orange);
    box-shadow: 0 4px 0 #F0EAE1;
}

.detail-content h4 {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.detail-content p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
}

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 4px solid #F0EAE1;
    border-radius: var(--radius-bubble);
    padding: 40px;
    box-shadow: 0 10px 20px rgba(92, 75, 71, 0.02);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: #FFFDF9;
    border: 3px solid #F0EAE1;
    border-radius: 16px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-bounce);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: #fff;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--accent-orange);
    border: none;
    border-radius: 16px;
    padding: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-display);
    transition: var(--transition-bounce);
    box-shadow: 0 6px 0 #D57222;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #C16215;
}

/* Footer */
footer {
    border-top: 3px dashed #F0EAE1;
    padding: 48px 0;
    background: #FFFDF8;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo span {
    color: var(--accent-orange);
}

.footer-info {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: right;
}

.footer-links {
    margin-top: 8px;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-bounce);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-sep {
    color: #EAE2D8;
    user-select: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    body::before, body::after, .hero::before, .hero::after {
        display: none !important;
    }
    .hero h1, .hero-left h1 {
        font-size: 44px;
    }
    .hero p, .hero-left p {
        font-size: 15px;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-info {
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 16px;
    }
    .footer-sep {
        display: none;
    }
}
