:root {
    --brand-pink: #ff2d8c;
    --soft-pink: #fff0f6;
    --text-dark: #201a3d;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.serif-font {
    font-family: 'Playfair', serif;
    color: var(--text-dark);
}

.contact-section h2 {
    font-family: "DmSans", sans-serif;
    color: rgb(95, 82, 122) !important;
    font-size: 1.125rem;
    line-height: 1.75rem !important;
    font-weight: 300 !important;

}

.contact-section h3 {
    font-family: "Playfair", serif;
    font-size: 18px;
    color: rgb(31, 15, 61);
    line-height: 28px;

}

.contact-section p {
    font-family: "DmSans", sans-serif;
    font-size: 16px;
    color: rgb(95, 82, 122) !important;
    line-height: 24px;
    font-weight: 300 !important;
}

/* Icon Styling */
.icon-box {
    background-color: var(--soft-pink);
    color: var(--brand-pink);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Card Styling */
.contact-card {
    border-radius: 20px;
    background-color: #fcfcfd;
}

/* Form Styling */
.form-label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: .8rem;
    font-family: "DmSans", sans-serif !important;
    color: rgb(31, 15, 61) !important;
    line-height: 14px !important;
}

.custom-input {
    border: 1px solid #e9ecef;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #6c757d;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-input:focus {
    border-color: var(--brand-pink);
    box-shadow: 0 0 0 0.25rem rgba(255, 45, 140, 0.1);
}

/* Button Styling */
.btn-pink {
    background-color: var(--brand-pink);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #e0257a;
    color: white;
    transform: translateY(-1px);
}

.contact-card {
    padding: 2rem !important;
    border: 1px solid #e5e0eb !important;
}

.contact-card h2 {
    font-family: "Playfair", serif;
    line-height: 32px;
    font-size: 24px;
    font-weight: 700 !important;
    color: rgb(31, 15, 61) !important;
}
.hero-section {
    background: url('../images/contact_hero.avif') no-repeat center center/cover;
    position: relative;
}

.hero-section .minds {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    font-family: "DmSans", sans-serif;
}

.hero-section .overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(268 75% 19% / .6);
    z-index: 1;
}
.hero-section{
    height: 30dvh;
}
.hero-section h1{
  font-family:"Playfair", serif !important;
}
.hero-section .container-fluid {
    z-index: 9;
    position: relative;
}

/* Layout Adjustments */
@media (max-width: 991.98px) {
    .contact-section h2 {
        text-align: center;
    }
}