@charset "utf-8";

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* ============================
   Header Styles
============================ */
header {
    background-color: #f8f9fa;
    padding: 15px 0;
}

header .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    max-height: 60px;
}

header .contact-info,
header .working-hours {
    font-size: 0.9rem;
    text-align: left;
}

header .working-hours {
    text-align: center;
}

/* ============================
   Navbar Styles
============================ */
.navbar {
    background-color: #EADFD0;
    margin-bottom: 50px; 
}

.navbar-nav .nav-link {
    color: #000000 !important;
}

.navbar-toggler {
    border-color: #ffffff;
    outline: none; 
    box-shadow: none; 
}

.navbar-toggler-icon {
    background-color: #ffffff;
    border: none;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #2A718F !important;
	text-decoration: underline;
}


@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }

    .navbar-nav .nav-item {
        margin: 5px 0; 
    }
}

.search-bar {
    margin-left: 20px; 
}

/* ============================
   Contact Info and Working Hours
============================ */
header .contact-info,
header .working-hours {
    font-size: 0.9rem; 
    text-align: left;
    padding: 10px 20px;
}


@media (max-width: 576px) {
    header .contact-info,
    header .working-hours {
        font-size: 0.8rem; 
        padding: 5px 15px; 
        text-align: center; 
    }
}


/* ============================
   Form Styles
============================ */
form {
    margin-top: 20px;
}

form label {
    display: inline-block;
    width: 150px;
    text-align: left;
}

form .form-control {
    border-radius: 25px; 
    padding-left: 20px;
}

form .btn-primary {
    background-color: #DED2C3;
    color: black; 
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

form .btn-primary:hover {
    background-color: #A6978D; 
    color: white; 
}

@media (max-width: 576px) {
    form {
        padding: 15px; 
    }
}

textarea.form-control {
    background-color: #DED2C3; 
    color:#FFFFFF; 
	border: 1px solid #A6978D; 
}

.social-link:hover {
    text-decoration: underline; 
    font-size: 1.1em; 
    transition: 0.2s ease-in-out; 
}

.other-link:hover {
    text-decoration: underline; 
    font-size: 1.1em; 
    transition: 0.2s ease-in-out; 
}


/* ============================
   Footer Styles
============================ */
footer {
    background-color: #2A718F;
    color: #ffffff;
    padding: 40px 0;
}

footer h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

footer .subscribe-btn {
    background-color: #ffffff; 
    color: #2E6B83; 
    transition: all 0.3s ease; 
}

footer .subscribe-btn:hover {
    background-color: #2E6B83; 
    color: #ffffff; 
    border: 1px solid #2E6B83; 
}

a {
    color: inherit; 
    text-decoration: none; 
}

a:hover {
    color:#000000; 
    text-decoration: underline; 
}

footer .text-center {
    color: #ffffff !important; 
}


footer .social-link{
	color: white;
	text-decoration: none;
}

footer .social-link:hover{
	color: black;
	text-decoration: underline;
	transition: none !important;
}

@media (max-width: 576px) {
    footer {
        padding: 20px 0; 
    }
    
    footer .container {
        display: block; 
        width: 100%;
    }

    footer .row {
        margin-bottom: 15px; 
    }

    footer h6, footer p {
        font-size: 0.9rem;
    }

    footer .col-md-2,
    footer .col-md-4 {
        width: 100%; 
        margin-bottom: 20px; 
    }

    footer .text-center {
        margin-top: 20px;
        font-size: 0.85rem;
    }
}


@media (max-width: 576px) {
    footer .col-md-2, footer .col-md-4 {
        text-align: center;
		margin-bottom: 20px;
    }

    footer .text-center {
        text-align: center;
    }

    footer .col-md-2 ul, footer .col-md-4 form {
        text-align: center;
    }
}

