@import url('https://fonts.googleapis.com/css2?family=Fauna+One&family=Mouse+Memoirs&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Englebert&family=Fauna+One&family=Mouse+Memoirs&display=swap');

/* reset styles:*/
* {
    padding:0;
    margin: 0;
    border:none;
    box-sizing: border-box;
}

#wrapper {
    background-color: #332a22;
    font-family: "Englebert", serif;
    font-size: 1.30em;


}

/* NAVIGATION BAR STYLES */
.navbar {
    background-color: #fff;
    padding: 15px 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-brand img {
    height: 90px;
    width: auto;
    margin-left: 10%;
}

.navbar-nav {
    font-family: "Fauna One", serif;
    font-size: 1.2rem;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    color: #4c3c2d; /* Warm brown for dog rescue theme */
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    background-color: #f4d03f; /* Golden tone for warmth */
    color: #fff;
    transform: scale(1.05);
}

/* Active page styling */
.navbar-nav .nav-item.active .nav-link {
    background-color: #c29511;
    color: white;
    font-weight: bold;
}

/* Mobile Navigation Styling */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 2.5em;
    height: 2.5em;
}


/* jumbotron */
/* JUMBOTRON STYLING */
.jumbotron.home {
    position: relative;
    background-image: url("../images/anoir-chafik-2_3c4dIFYFU-unsplash.jpg");
    background-size: cover;
    background-position: center;
    height: 700px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 50% 60px;
    border-bottom-right-radius: 50% 60px;
    overflow: hidden;
}

/* Dark overlay for better text visibility */
.jumbotron.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darker for readability */
    z-index: 1;
}

/* Jumbotron Content */
.jumbotron.home .container {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    animation: fadeInUp 1s ease-in-out; /* Smooth fade-in effect */
}

.jumbotron.home h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    font-family: "Englebert", serif;
}

.jumbotron.home p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: "Fauna One", serif;
}

/* Subtle Button Animation */
.jumbotron.home .btn {
    background-color: #f4d03f;
    color: #4c3c2d;
    font-size: 1.3rem;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

.jumbotron.home .btn:hover {
    background-color: #c29511;
    color: white;
    transform: scale(1.05);
}

/* Smooth fade-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Jumbotron Styling */
.jumbotron.about {
    position: relative;
    background-image: url("../images/golden.jpg");
    background-size: contain;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}


.jumbotron.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.jumbotron.about .container {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3.2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Englebert", serif;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

/* About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #332a22;
    background-color: #FAF3E0;
    border-radius: 15px;
}

 /*Section Title */
.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Englebert", serif;
}
.section-title.mission {
    color: #cebe9d;
}
.section-title.foster {
    color: #332a22;
}
div .team .section-title {
    color: #C6BBAC;
}
/* Text Styling */
.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #3c2f24;
    font-family: "Fauna One", serif;
    max-width: 90%;
}

/* Image Styling */
.rounded-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.rounded-image:hover {
    transform: scale(1.05);
}

.container-fluid.background {
    background-color: #FDF6E3;
    color: #332a22;
}

/* TEAM SECTION STYLING */
.container-fluid.team {
    background-color: #332a22;
    color: white;
    padding: 80px 5%;
    text-align: center;
}
/* Individual Team Member*/
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 15px rgba(244, 208, 63, 0.5);
}


.team-member h5 {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: "Fauna One", serif;
}


.team-member p {
    font-size: 1.1rem;
    color: #d3c0a0;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f4d03f;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.container-fluid.content {
    padding: 80px 5%;
    background-color: #332a22;
    color: #fff;
}

/* Text Styling */
.container-fluid p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-family: "Fauna One", serif;
    max-width: 85%;
    margin: 0 auto;
}
/* Image Styling */
.rounded-image {
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}
.rounded-image:hover {
    transform: scale(1.05);
}

.container-fluid.background {
    background-color: #C6BBAC;
    color: #332a22;
}

h1, h2{
    font-weight: 400;
    font-style: normal;
}

h2.text-center {

}


h2.text-center {
    font-size: 4em;
}

.col-sm-6.left-column {
    width: 30% ;
}


.right-column {
    width: 70%;
}

.col-sm-6.left-column .right-column {
    margin: 0 auto;
}

/*.carousel {*/

.carousel {
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* Caption */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 8px;
    bottom: 20px;
}

/* Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
    filter: invert(100%);
    width: 5%;
}

/* Carousel Indicators */
.carousel-indicators button {
    background-color: #f4d03f;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s;
}

.carousel-indicators .active {
    background-color: #c29511;
}




.container-fluid.content.team {
    background-color: #332a22 ;
}

/* Hero Section */
.container-adopt.adopt-body {
    position: relative;
    background: url("../images/jamie-street-UtrE5DcgEyg-unsplash.jpg") center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.6);
}
.adopt-header {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
/* Dog Cards */
.card {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: #fff;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
}
.card:hover {
    transform: scale(1.03);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}
.rounded-card {
    border-radius: 10px 10px 0 0;
    height: 250px;
    object-fit: cover;
}
/* Card Text */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4c3c2d;
    margin-top: 10px;
}

.card-text {
    font-size: 1.2rem;
    color: #666;
}

/* Button */
.btn-primary {
    background-color: #f4d03f;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #c29511;
    transform: scale(1.05);
}
/* Pagination */
.pagination .page-link {
    color: #4c3c2d;
    font-weight: bold;
}

.pagination .page-item.active .page-link {
    background-color: #f4d03f;
    border-color: #f4d03f;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #c29511;
    color: #fff;
}

.jumbotron.lost {
    background-image: linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)), url("../images/AdobeStock_447618268.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    max-width: 100%;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    color: #fff;
    display: flex;
    /*z-index: 50;*/

}
.lost-title {
    /*position: absolute;*/
    /*z-index: 50;*/
    /*opacity: 99;*/
    display: flex;
    color: #ffff;
    margin-left: auto;
    margin-right: auto;
    left: 25%;
    right: 25%;
    top: 50%;
    text-align: center;
    font-size: 4.37em;

}
.lost-content {
    padding: 50px 10%;
}

.lost-content .col-md-6:first-child {
    padding: 30px;
    border-radius: 10px;
}

/* Headings */
.lost-content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #f4d03f;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Paragraphs */
.lost-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f8f9fa;
}

.lost-content {
    padding: 50px 5%;
}

form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}

.form-group label {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.form-control {
    border-radius: 5px;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    transition: 0.3s ease-in-out;
}


.form-control:focus {
    border-color: #f4d03f;
    box-shadow: 0px 0px 10px rgba(244, 208, 63, 0.4);
}


.btn-primary {
    background-color: #f4d03f;
    border: none;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #c29511;
    transform: scale(1.05);
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4c3c2d;
}

form {
    background: #FAF3E0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}

.form-group label {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4c3c2d;
}

.form-control {
    border-radius: 5px;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    transition: 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #f4d03f;
    box-shadow: 0px 0px 10px rgba(244, 208, 63, 0.4);
}

.form-control-file {
    font-size: 1rem;
}
.btn-primary {
    background-color: #f4d03f;
    border: none;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #c29511;
    transform: scale(1.05);
}


.jumbotron.contact {
    background-image: linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)), url("../images/dog-group-optmzd.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    max-width: 100%;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    color: #fff;
    display: flex;
    /*z-index: 50;*/

}
.contact-title {
    display: flex;
    color: #ffff;
    margin-left: auto;
    margin-right: auto;
    left: 25%;
    right: 25%;
    top: 50%;
    text-align: center;
    font-size: 4.37em;

}

.contact-content {
    padding: 60px 10%;
    text-align: center;
    background: #FAF3E0;
    border-radius: 10px;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    transition: all 0.3s ease-in-out;
}

.contact-box:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.icon-box {
    font-size: 2.5rem;
    color: #c29511;
    margin-bottom: 15px;
}

.contact-box h3 {
    font-size: 1.5rem;
    color: #4c3c2d;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-box p, .contact-box a {
    font-size: 1.2rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-box a:hover {
    color: #c29511;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.life-page {
    background: #FAF3E0;
    padding: 60px 10%;
    text-align: center;
}

.ruff-life {
    font-size: 3.5rem;
    font-weight: bold;
    color: #4c3c2d;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.card-group {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    max-width: 350px;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4c3c2d;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.card-text small {
    color: #999;
}


@keyframes morph {
    0%, 100% {
        border-radius: 42% 56% 72% 28% / 42% 42% 56% 48%;
    }
    33% {
        border-radius: 72% 28% 48% / 28% 28% 72% 72%;
    }
    66% {
        border-radius: 100% 56% 56% 100% / 100% 100% 56% 56%;
    }
}

.blob {
    overflow: hidden;
    width: 25rem;
    height: 25rem;
    border-radius: 42% 56% 72% 28% / 42% 42% 56% 48%;

    background: #4c3c2d url("../images/Optimized-evy-prentice--xFcBvbwLAU-unsplash.jpg");
    background-size: cover;
    background-position: center;
    animation: morph 3.75s linear infinite;
}

/* footer*/


.contact-footer p a, .col-md-4 ul.list-inline li a {
    color: #ffffff;
    /*font-family: "Englebert", serif;*/
}



@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        justify-content: space-between;
    }
}


@media (max-width: 768px) {
    .container-fluid p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .rounded-image {
        width: 100%;
        max-width: 400px;
    }

    .carousel-img {
        height: 300px;
    }

    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .team-member h5 {
        font-size: 1.2rem;
    }

    .team-member p {
        font-size: 1rem;
    }

    .jumbotron.about {
        height: 320px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1.2rem;
    }

    .rounded-image {
        width: 100%;
        max-width: 350px;
    }

    .adopt-header {
        font-size: 3rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-text {
        font-size: 1.1rem;
    }

    .btn-primary {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .lost-content h2 {
        font-size: 1.8rem;
    }

    .lost-content p {
        font-size: 1.1rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .ruff-life {
        font-size: 2.5rem;
    }

    .card {
        max-width: 100%;
    }

    @media (max-width: 768px) {
        .contact-content {
            padding: 40px 5%;
        }

        .contact-box {
            padding: 20px;
        }

        .icon-box {
            font-size: 2rem;
        }

        .contact-box h3 {
            font-size: 1.3rem;
        }

        .contact-box p {
            font-size: 1.1rem;
        }

        .map-container iframe {
            height: 300px;
        }

    }
}
