:root {
    --primary-color: #7ab8e2;
    /* Soft Blue */
    --secondary-color: #f8c8dc;
    /* Soft Pink */
    --accent-color: #e2f0fb;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #ffffff;
    --section-bg: #fcfcfc;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(240, 240, 240, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

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

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

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: radial-gradient(circle at 0% 0%, rgba(122, 184, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(248, 200, 220, 0.15) 0%, transparent 50%);
    padding-top: 180px;
    padding-bottom: 100px;
}

.hero-content {
    text-align: center;
    width: 100%;
    margin-top: 180px;
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 75px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    word-break: keep-all;
}

.hero-placeholder {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.img-box {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.img-box:hover {
    background: #f1f3f5;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Sections General */
section {
    padding: 150px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.underline {
    width: 80px;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 10px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 19px;
    color: var(--text-light);
}

.about-stat {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    flex: 1;
    border: 1px solid #f8f9fa;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 14px;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

/* Features Section */
#features {
    background-color: var(--section-bg);
    position: relative;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 60px 40px;
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f3f5;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.card .icon {
    font-size: 50px;
    margin-bottom: 30px;
    display: block;
}

.card h3 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

.card p {
    font-size: 17px;
    color: var(--text-light);
}

/* Care Section */
.care-content {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
    border: 1px solid #f8f9fa;
}

.care-item {
    display: flex;
    gap: 30px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px dashed #eee;
}

.care-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.care-item h3 {
    min-width: 200px;
    font-size: 26px;
    color: var(--primary-color);
}

.care-item p {
    font-size: 19px;
    color: var(--text-light);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(0.98);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-placeholder:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 80px 0;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

footer p {
    font-size: 15px;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .care-item {
        flex-direction: column;
        gap: 15px;
    }

    .care-item h3 {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    nav ul {
        display: none;
    }

    .stat-card p {
        font-size: 18px;
    }
}
/* deploy update 1 */
