/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Oswald:wght@200..700&display=swap');

/* Header Styling */
#logo {
    background: #F7A8B8;
    padding: 10px 20px;
    border-bottom: 2px solid #AED6F1;
    text-align: center;
}

#logo img {
    max-width: 300px;
    height: auto;
    margin: 10px auto;
}


/* Navbar Styling */
.navbar {
    background-color: #FFF8E7;
    font-family: "Lobster", sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.nav-link {
    color: #4E342E !important;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F7A8B8 !important;
    text-decoration: underline;
}

.nav-link.active {
    color: #F7A8B8 !important;
    text-decoration: underline;
}


/* Carousel Styling */
.carousel-item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff8e7;
}

.carousel-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.carousel {
    overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6); 
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #F7A8B8; 
}


/* Footer Section Styling */
.footer {
    background-color: #F7A8B8 !important;
    color: #4E342E;
    font-family: "Oswald", sans-serif;
}

.footer h4 {
    font-family: "Lobster", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer a {
    color: #4E342E;;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff8e7;
}

.footer p,
.footer ul {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 5px;
}

.footer p {
    text-align: center;
    font-size: 1rem;
    margin-top: 10px;
}


/* Navbar toggler icon */
.navbar-toggler {
    background: #4E342E !important;
    border: 2px solid #F7A8B8 !important;
    padding: 8px;
    border-radius: 5px;
}

.navbar-toggler-icon {
    filter: invert(1) brightness(2);
}


/* Generally Shared Page Styling */
.shared {
    background-color: #fff8e7;
    color: rgb(91, 51, 29);
    font-family: "Lobster", sans-serif;
    padding: 30px 0;
}

.shared h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px #F7A8B8;
    text-align: center;
}

.shared .card {
    background-color: rgb(245, 222, 179);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    color: rgb(91, 51, 29);
    border: none;
    transition: transform 0.3s ease;
    text-align: center;
}

.shared .card:hover {
    transform: scale(1.05);
}

.shared .card-title {
    font-family: "Lobster", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.shared .card-text {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
}

.shared .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
}

.shared .btn {
    display: block;
    width: 25%;
    margin: 0 auto;
    background-color: rgb(120, 75, 50);
    color: rgb(245, 242, 229);
    font-family: "Lobster", sans-serif;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.shared .btn:hover {
    background-color: rgb(85, 45, 25);
    color: white;
    cursor: pointer;
}

.shared .oswald-radio label {
  font-family: 'Oswald', sans-serif;
}

.shared .oswald-text {
  font-family: 'Oswald', sans-serif;
}


/*Main*/
.main-bg {
  display: flex;
  flex-direction: column;
}


/*Contact Links*/
.contact-link {
  color: #4E342E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #F7A8B8;
  text-decoration: underline;
}


/*Cookie Banner*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
}
.cookie-content {
  max-width: 800px;
  margin: 0 auto;
}



/* Media query for smaller screens */
@media (max-width: 768px) {
    .shared .card {
        margin-bottom: 20px;
    }

    .shared .btn {
        font-size: 1rem;
        padding: 8px;
    }

    .auth-container {
        padding: 20px;
    }

    .auth-container button {
        font-size: 1rem;
        padding: 10px;
    }
}
