/* General Colors */
:root {
    --primary-color: #ccd3d8; /* Matches logo dominant color */
    --secondary-color: #6c757d; /* Neutral gray */
}

body {
    background-color: var(--primary-color);
    padding-top: 5rem;
    position: relative;
}

header {
    background-color: #ffffff;
    color: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .navbar-brand img {
    height: 75px;
    margin-right: 5px;
}

header .schedule-btn {
    background-color: #68bdbd;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

header .schedule-btn:hover {
    background-color: #3d7171;
    color: #fff;
}

footer {
    background-color: #ffffff;
    color: var(--secondary-color);
    padding: 1rem 0;
    text-align: center;
}

footer .social-icons a {
    font-size: 14px;  /* Adjust the font size */
    color: inherit;   /* Keep default text color */
    text-decoration: none;  /* Remove underline */
}

footer .social-icons i {
    font-size: 16px; /* Adjust icon size */
    margin-right: 5px; /* Space between icon and text */
}

footer .social-icons a span {
    font-size: 12px; /* Reduce text size */
    opacity: 0.8; /* Slight transparency for better aesthetics */
}

.hero {
    background-color: #f8f9fa; /* Light gray background for contrast */
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.hero h2 {
    font-size: 2rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero .lead {
    font-weight: bold;
    color: #0056b3; /* Slight blue tone for emphasis */
}

/* 
.hero {
    background-color: var(--primary-color);
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
} */


.hero::before {
    content: "";
    background-image: url('/static/images/logorinosalud.png');
    background-repeat: no-repeat;
    background-size: 40%;  /* Reduce size */
    background-position: center;
    opacity: 0.1;
    position: absolute;
    top: 20px;  /* Push it down */
    left: 0;
    width: 100%;
    height: 80%;  /* Reduce height so it doesn’t overlap links */
    z-index: -1;  /* Ensure it stays behind everything */
}

.social-icons a {
    margin: 0 10px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: #0d6efd;
}

.menu-button {
    background: none;
    border: none;
    color: rgb(118, 201, 190);
    font-size: 1.5rem;
    cursor: pointer;
}

.info-box {
    background-color: #f9edbe;
    color: #856404;
    padding: 20px;
    text-align: center;
    position: relative;
    width: 95%;
    margin-top: 100px;  /* Push the box down */
    z-index: 1000;
    border: 1px solid #ffeeba;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

img {
    max-height: 200px;  /* Adjust the height */
    object-fit: cover;  /* Ensures uniform image appearance */
}

a {
    pointer-events: auto !important;
    text-decoration: none;
}

/* Carousel Container: Adjust Width & Height */
#rhinoplastyCarousel {
    max-width: 500px; /* Limits the width */
    margin: 0 auto; /* Centers the carousel */
}

/* Carousel Images: Maintain Aspect Ratio */
#rhinoplastyCarousel .carousel-item img {
    max-height: 800px; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image scales properly */
    border-radius: 10px; /* Smooth rounded corners */
}

/* Adjust Captions */
#rhinoplastyCarousel .carousel-caption {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
}

/* Adjust Indicators */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Adjust Navigation Buttons */
.carousel-control-prev-icon, 
.carousel-control-next-icon {
    /* filter: invert(100%);  Makes arrows more visible */
    color: #e0ded6;
}
