/* ===================================
   Variables & Reset
   =================================== */

:root {
    --primary-color: #2C3E50;
    --secondary-color: #E8B86D;
    --accent-color: #C29958;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a68;
    --text-light: #7a7a9a;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #2C3E50 0%, #3E5771 100%);
    --gradient-accent: linear-gradient(135deg, #E8B86D 0%, #C29958 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

/* ===================================
   Fixed CTA Button
   =================================== */

.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-cta .cta-button {
    background: var(--gradient-accent);
    color: var(--text-dark);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    font-family: 'Noto Sans KR', sans-serif;
}

.fixed-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 184, 109, 0.4);
}

.fixed-cta .cta-button i {
    font-size: 20px;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 140px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(5px);
    background: url(../images/bgc.jpg) no-repeat center center;
    background-size: cover;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 48px;
    font-family: 'Noto Sans KR', sans-serif;
}

.hero-title .title-main {
    display: block;
    font-size: 42px;
    margin-bottom: 12px;
}

.hero-title .title-highlight {
    display: block;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-image {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(232, 184, 109, 0.5);
}

.author-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.3;
}

.author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
}

.author-badge i {
    color: var(--text-dark);
    font-size: 16px;
}

.author-info {
    text-align: left;
}

.author-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.author-title {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 12px;
}

.author-position {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 16px;
}

.author-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-tags span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.author-tags i {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-description strong {
    font-weight: 700;
    color: var(--secondary-color);
}

.highlight-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-cta {
    margin-top: 48px;
}

.primary-btn {
    background: var(--gradient-accent);
    color: var(--text-dark);
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    font-family: 'Noto Sans KR', sans-serif;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(232, 184, 109, 0.4);
}

.primary-btn.large {
    padding: 22px 56px;
    font-size: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    background: var(--bg-white);
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 28px;
    color: var(--text-dark);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Content Rows (Image + Text)
   =================================== */

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-row.reverse {
    direction: rtl;
}

.content-row.reverse > * {
    direction: ltr;
}

.content-image .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.content-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(232, 184, 109, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: var(--text-dark);
    font-size: 32px;
    margin-left: 4px;
}

.content-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.content-text p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   Feature List
   =================================== */

.feature-list {
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-list i {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.feature-list span {
    display: block;
    font-size: 15px;
    color: var(--text-medium);
}

/* ===================================
   Philosophy Section
   =================================== */

.philosophy-section {
    background: var(--bg-light);
}

.quote-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    margin: 24px 0 32px;
    box-shadow: var(--shadow-sm);
}

.quote-box i {
    color: var(--accent-color);
    font-size: 32px;
    opacity: 0.3;
    margin-bottom: 16px;
}

.quote-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.highlight-box {
    background: var(--gradient-accent);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.highlight-box i {
    font-size: 32px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.highlight-box strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.85;
    margin: 0;
}

/* ===================================
   Community Section
   =================================== */

.community-section {
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid var(--bg-light);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--text-dark);
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   Offerings Section
   =================================== */

.offerings-section {
    background: var(--bg-light);
}

.offerings-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offering-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.offering-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.offering-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offering-icon i {
    font-size: 24px;
    color: var(--text-dark);
}

.offering-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.offering-content p {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.author-details strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.author-details span {
    display: block;
    font-size: 14px;
    color: var(--text-medium);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-date {
    font-size: 13px;
    color: var(--text-light);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: var(--gradient-primary);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.cta-content > p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 500;
}

.cta-feature i {
    color: var(--secondary-color);
    font-size: 20px;
}

.cta-note {
    margin-top: 24px;
    font-size: 15px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-about h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title .title-main {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .content-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .fixed-cta {
        padding: 12px 16px;
    }
    
    .fixed-cta .cta-button {
        padding: 14px 24px;
        font-size: 14px;
        gap: 8px;
    }
    
    .fixed-cta .cta-button i {
        font-size: 18px;
    }
    
    .hero {
        padding: 80px 0 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .title-main {
        font-size: 28px;
    }
    
    .hero-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .author-info h2 {
        font-size: 26px;
    }
    
    .author-title {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }
    
    .author-tags {
        align-items: center;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .content-row,
    .content-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
    
    .content-image img {
        height: 350px;
    }
    
    .content-text h3 {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content > p {
        font-size: 17px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .primary-btn.large {
        padding: 18px 40px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .fixed-cta {
        padding: 10px 12px;
    }
    
    .fixed-cta .cta-button {
        padding: 12px 20px;
        font-size: 13px;
        gap: 6px;
    }
    
    .fixed-cta .cta-button i {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title .title-main {
        font-size: 24px;
    }
    
    .author-info h2 {
        font-size: 22px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .content-text h3 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

