/* Reset and General Styles */
* {
    font-family: "League Spartan", sans-serif;
	margin: 0;
}
html {
	scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar-nav {
    font-size: 19px;
    font-weight: 300;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.nav-item {
    padding: 0px 25px;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    padding-bottom: 5px;
    color: #000;
    text-decoration: none;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease-out;
}

.navbar-nav .nav-item .nav-link:hover::after {
    left: 0;
    width: 100%;
}

.navbar-nav .nav-item.active .nav-link::after {
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
}

/* Hero Section */
.hero-bg {
    position: relative; /* Needed for absolute positioning of the overlay */
    background-image: url("../image/contact-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 105vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 400px 25px 40px;
    text-align: center;
}

/* Semi-transparent overlay for the background */
.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust opacity (20% transparency) */
    z-index: 1; /* Ensure it sits behind the content */
}

/* Heading styles (on top of overlay) */
.hero-bg h1 {
    position: relative; /* Ensure the heading is above the overlay */
    z-index: 2; /* Ensure it sits above the overlay */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 9.5rem;
    color: #E4A4BD;
    padding-right: 50px;
}
.text-center h2 {
    font-family: "League Spartan", sans-serif;
    font-weight: 700; /* Bold */
    font-size: 4.5rem; /* Large and attention-grabbing */
    margin-top: 20px;
    margin-bottom: 20px;
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0; /* Start invisible */
    transition: all 1s ease-out; /* Smooth transition for animation */
}

.text-center h2.animate {
    transform: translateX(0); /* Move into place */
    opacity: 1; /* Fully visible */
}
#animation_text {
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0; /* Start invisible */
    transition: all 1s ease-out; /* Smooth transition for animation */
}
 #animation_text.animate {
    transform: translateX(0); /* Move into place */
    opacity: 1; /* Fully visible */
}

/* Contact Section Styles */
#contact {
    background-color: #FFF7ED; /* Match the website's light section colors */
    padding: 50px 20px;
}

#contact h2 {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
}

#contact p {
    font-family: "League Spartan", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

/* Form Section Styles */
#contactForm {
    background: #FFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

#contactForm .form-label {
    font-family: "League Spartan", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 10px;
}

#contactForm .form-control {
    border: 1px solid #ccc; /* Subtle border for input fields */
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    color: #444;
    background-color: #FDF8F3;
    transition: all 0.3s ease;
}

#contactForm .form-control:focus {
    outline: none;
    border-color: #177042; /* Match the button's green color */
    box-shadow: 0 0 5px rgba(23, 112, 66, 0.5);
}


/* Modal Styles */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Same shadow as the form */
}

.modal-header {
    background-color: #E4A4BD;
    color: #fff;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-header h5 {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-body p {
    font-family: "League Spartan", sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.modal-footer {
    border-top: none;
    text-align: center;
}

#contactForm .btn {
    background-color: #E4A4BD !important;
    border-color: #E4A4BD !important;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s ease;
}

#contactForm .btn:hover {
    background-color: #d093a9 !important; /* Slightly darker shade for hover effect */
    border-color: #d093a9 !important;
    transform: translateY(-2px) !important; /* Slight lift effect */
}

/* Modal Buttons */
.modal-footer .btn-primary {
    background-color: #E4A4BD !important;
    border-color: #E4A4BD !important;
    color: #fff !important;
}

.modal-footer .btn-primary:hover {
    background-color: #d093a9 !important;
    border-color: #d093a9 !important;
}

/* Footer Styles */
footer {
    background-color: #E4A4BD;
    border-top: 1px solid #ddd;
	color: #FDF8F3;
	width: 100%;
}

footer a {
	color: #FDF8F3;
    text-decoration: none;
    transition: color 0.3s ease;
}
.list-unstyled a{
	color: #FDF8F3 !important;
}
.list-unstyled li{
	padding: 4px;
}
footer h5 {
	text-transform: uppercase;
	font-size: 25px;
	padding-bottom: 10px;
}

footer a:hover {
    color: #111111;
}

footer .fab {
	color: #FDF8F3;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

footer .fab:hover {
    transform: scale(1.2);
}

/* Responsive Styles for Small Screens */
@media (max-width: 576px) {
    /* Navbar */
    .navbar-nav {
        font-size: 16px;
        padding: 5px;
    }

    .nav-item {
        padding: 0 10px;
    }

    .nav-link {
        font-size: 14px;
    }

    /* Hero Section */
    .hero-bg {
        height: 300px; /* Let height adjust dynamically */
        padding: 130px 15px 20px;
        text-align: center;
    }

    .hero-bg h1 {
        font-size: 2.5rem;
        padding-right: 0;
    }

    /* Contact Section */
    #contact {
        padding: 30px 15px;
    }

    #contact h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    #contact p {
        font-size: 0.9rem;
    }

    /* Form Section */
    #contactForm {
        padding: 20px 15px;
    }

    #contactForm .form-label {
        font-size: 1rem;
    }

    #contactForm .form-control {
        font-size: 0.9rem;
        padding: 8px;
    }

    #contactForm .btn {
        font-size: 1rem;
        padding: 8px 15px;
    }

    /* Modal */
    .modal-content {
        padding: 15px;
    }

    .modal-header h5 {
        font-size: 1.25rem;
    }

    .modal-body p {
        font-size: 0.9rem;
    }

    .modal-footer .btn {
        font-size: 1rem;
        padding: 8px 15px;
    }

    /* Footer */
    footer {
        font-size: 14px;
    }

    footer h5 {
        font-size: 18px;
    }

    .list-unstyled li {
        padding: 2px;
    }

    /* Accordion and Table Adjustments */
    .accordion-button {
        font-size: 1rem;
    }

    .accordion-body {
        font-size: 0.9rem;
    }

    .accordion-item {
        margin-bottom: 10px;
    }
}

