/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    background-image: url('../images/jeju1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.3;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-ivory);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--color-gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== NOTICE BANNER SECTION ===== */
.notice-banner {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-top: 2px solid rgba(201, 162, 39, 0.3);
    border-bottom: 2px solid rgba(201, 162, 39, 0.3);
    padding: 1.5rem 2rem;
    animation: slideDown 0.6s ease-out;
}

.notice-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.notice-banner-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.notice-banner-icon i {
    font-size: 1.5rem;
    color: var(--color-black);
}

.notice-banner-text {
    flex: 1;
    min-width: 300px;
}

.notice-banner-label {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.notice-banner-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
    line-height: 1.4;
    word-break: keep-all;
    word-wrap: break-word;
}

.notice-banner-subtitle {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    word-break: keep-all;
    word-wrap: break-word;
}

.notice-banner-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--color-gold);
    border-radius: 25px;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.notice-banner-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateX(5px);
}

.notice-banner-btn i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.notice-banner-btn:hover i {
    transform: translateX(3px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(201, 162, 39, 0);
    }
}

/* ===== OUR PROMISE SECTION ===== */
.our-promise {
    background: linear-gradient(to bottom, #111111 0%, #0a0a0a 100%);
}

.our-promise .card {
    text-align: center;
    height: 100%;
}

.our-promise .card-icon {
    display: flex;
    justify-content: center;
}

/* ===== BRANCH QUICK VIEW SECTION ===== */
.branch-quick {
    padding: 6rem 2rem;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.branch-card {
    background-color: rgba(242, 239, 234, 0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.2);
    border-color: var(--color-gold);
}

.branch-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

.branch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.branch-status {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.branch-status-coming {
    background-color: var(--color-gray);
    color: var(--color-ivory);
}

.branch-info {
    padding: 1.5rem;
}

.branch-name {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.branch-desc {
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.branch-link {
    color: var(--color-ivory);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.branch-link:hover {
    color: var(--color-gold);
    gap: 0.8rem;
}

.branch-card-coming {
    opacity: 0.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(17, 17, 17, 0.95) 100%);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    word-break: keep-all;
    word-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .notice-banner {
        padding: 1.2rem 1.5rem;
    }
    
    .notice-banner-content {
        gap: 1.5rem;
    }
    
    .notice-banner-icon {
        width: 45px;
        height: 45px;
    }
    
    .notice-banner-icon i {
        font-size: 1.3rem;
    }
    
    .notice-banner-title {
        font-size: 1.15rem;
    }
    
    .notice-banner-subtitle {
        font-size: 0.85rem;
    }
    
    .notice-banner-btn {
        width: 100%;
        justify-content: center;
    }
    
    .branch-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .notice-banner {
        padding: 1rem;
    }
    
    .notice-banner-content {
        gap: 1rem;
        justify-content: center;
    }
    
    .notice-banner-icon {
        width: 40px;
        height: 40px;
    }
    
    .notice-banner-icon i {
        font-size: 1.2rem;
    }
    
    .notice-banner-text {
        text-align: center;
        min-width: auto;
    }
    
    .notice-banner-title {
        font-size: 1rem;
    }
    
    .notice-banner-subtitle {
        font-size: 0.8rem;
    }
    
    .notice-banner-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
    
    .branch-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
