/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Noto+Sans+KR:wght@300;400;700&display=swap');

:root {
    --primary-green: #1B4332;
    --secondary-green: #2D6A4F;
    --light-green: #95D5B2;
    --accent-gold: #D4A373;
    --bg-light: #F8F9FA;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../hero.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Glassmorphism Button */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

/* Grid Layout */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 12px;
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
}

.card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

.card.price-card {
    background: var(--primary-green);
    color: white;
    text-align: center;
}

.card.price-card h3,
.card.price-card p {
    color: white;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--accent-gold);
}

/* Gallery-like Split Sections */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 30px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.split-text a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: var(--transition);
}

.split-text a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.split-text a:hover {
    color: var(--primary-green);
}

.split-text a:hover::after {
    width: 100%;
}


/* Contact Bar */
.contact-bar {
    background: white;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #eee;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info strong {
    color: var(--primary-green);
}

.contact-bar a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-bar a:hover {
    color: var(--secondary-green);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.tel-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.tel-link:hover {
    color: var(--secondary-green) !important;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column !important;
        gap: 30px;
    }

    .section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .price-value {
        font-size: 2.5rem;
    }
}