@font-face {
    font-family: 'Cafe24Lovingu';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2405-3@1.1/Cafe24Lovingu.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* 메인 페이지 스타일 */
body.index-page {
    overflow-y: hidden;
}

.hero-content {
    flex-direction: column-reverse;
}

/* 메인 타이틀 */
.main-title {
    text-align: center;
    max-width: 1200px;
    margin-top: 10px;
    margin-right: 40px;
}

.main-title h1 {
    font-family: 'Cafe24Lovingu', sans-serif;
    font-size: 90px;
    letter-spacing: 6px;
    color: #000;
    margin-bottom: -20px;
    
    
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    background-color: #00838f;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #006974;
}

/* 메인 이미지 */
.main-image img {
    width: 1200px;
    height: 500px;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .hero-content {
        
        flex-direction: column-reverse;
        padding: 20px;
    }
    
    .main-title {
        margin-top: 30px;
        margin-right: 0;
        text-align: center;
    }
    
    .main-title h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .main-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 20px;
        padding: 15px;
    }
    
    .main-title {
        margin-top: 50px;
    }

    .main-title h1 {
        width:320px;
        font-size: 52px;
        line-height: 1.2;
        letter-spacing: 5px;
        color: #000;
        margin-bottom: 25px;
        margin-top: -20px;

    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
} 