.underlined-title {
    position: relative;
    padding: 30px 0;
    font-weight: 100; font-family: PT Serif, PT-Serif-Fallback, Apple Color Emoji, Noto Color Emoji, serif;
}

.underlined-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: currentColor;
}

.underlined-title::before {
    top: 0;
}

.underlined-title::after {
    bottom: 0;
}

/*  common css  */
.band {
    padding: 80px 0;
    width: 100%;
}

.band-primary {
    background: linear-gradient(135deg, #efb0b7 0%, #efb0b7 100%);
    color: #B86718;
}

.band-light {
    background-color: #f8f9fa;
}


.hero-band {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}


.navbar-brand {
    font-size: 1rem;
}

.nav-link {
    color: white;
}

.btn-custom {
    background: linear-gradient(45deg, #efb0b7, #efb0b7);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    color: white;
}

.footer {
    background: linear-gradient(135deg, #efb0b7 0%, #efb0b7 100%);
    color: white;
}


@media (max-width: 768px) {
    .band {
        padding: 50px 0;
    }

    .hero-band {
        padding: 80px 0;
        min-height: 70vh;
    }

}
