@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
    --primary-color: #F6E6E0;
    --primary-hover: #dbc9c3;
    --secondary-color: #A5656B;
    --link-color:  rgb(107, 104, 103);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

.bg-main {
    background-color: var(--secondary-color);
}

.btn-main {
    background-color: var(--primary-color);
    transition: 0.3s all ease-in-out;
}

.btn-main:hover {
    background-color: var(--primary-hover);
}

.text-main {
    color: var(--secondary-color);
}

.text-justify {
    text-align: justify;
}

p {
    font-size: 12px;
}


/* header section */

header {
    min-height: 10vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* navigation bar*/

    .navbar {
        background-color: var(--primary-color);

        .nav-item .nav-link {
            font-size: 14px;
            letter-spacing: 1px;
            color: var(--link-color) !important;
            transition: 0.2s all ease-in-out;
        }

        .dropdown-item {
            font-size: 13px;
        }

        .nav-item .nav-link:hover {
            color: var(--secondary-color) !important;
        }

        .nav-item.dropdown .dropdown-menu {
            background-color: var(--primary-color) !important;
        }
    }

    .navbar-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        text-transform: uppercase;
    }

    .navbar-brand img {
        width: 52px;
    }

    .navbar-brand h5 {
        font-size: 16px;
        letter-spacing: 2px;
        font-weight: 200;
    }

}

@media screen and (max-width: 991px) {

    header {

        .navbar-brand {
            align-items: center;
            justify-content: start;
        }

        .navbar-brand h5 {
            font-size: 16px;
            letter-spacing: 2px;
        }
    }
}

@media screen and (max-width: 576px) {

    header {


        .navbar-brand img {
            width: 48px;
        }

        .navbar-brand h5 {
            font-size: 13px;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
    }
}

/* main section */

main {
    flex-grow: 1;
}

/* sidebar */

.left_side_links ul li a{
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: 0.4s all ease-in-out;
}

.left_side_links ul li:hover a{
    color: var(--primary-hover);
    padding-left: 8px;
}

/* middle main section */

/* carousel */

.carousel {
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
}

.carousel img {
    height: 100%;
    object-fit: cover;
}


/* footer section*/

footer {
    background-color: var(--primary-color);

    .footer-links a {
        font-size: 12px;
        letter-spacing: 1px;
        color: rgb(107, 104, 103);
    }

    .footer-links a:hover {
        font-size: 12px;
        color: var(--secondary-color);
    }

    .footer-links a.social-links {
        font-size: 16px;
    }

    a.developer {
        color: #3E70B9;
        font-weight: 500;
    }
}

/* modal forms */

form input::placeholder {
    color: #ddd;
    font-size: 13px;
    letter-spacing: 1px;
}

form textarea::placeholder {
    color: #ddd;
    font-size: 13px;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    box-shadow: none;
    border-color: inherit;
}

/* pricing page styles */
.pricing-card {
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.display-6 {
    font-size: 2.5rem;
    font-weight: 700;
}

.alert {
    border-radius: 10px;
}

.card {
    border-radius: 15px;
}

/* Admin login link styling */
.admin-login-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    display: inline-block;
    text-decoration: none !important;
}

.admin-login-link:hover {
    background-color: var(--secondary-color);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* contact form */

ul.list-group {
    font-size: 11px;
}

p.about-regard {
    font-size: 13px;
}