@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'nunito';
}
.all-content{
    background:#DFDCB9;
}
/* navbar */
#navbar{
    background-color: #201f1f;
    padding-left: 60px;
    font-weight: bold;
    padding-left: 15%;
}
#logo{
    font-size: 23px;
    color: white;
}
#logo img{
    margin-bottom: 15px;
    padding-right: 20px;
    padding-top: 10px;
}
.navbar-nav{
    margin-left: 10px;
}
.nav-link{
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
    margin-left: 15px;
    transition: 0.5s ease;
}
.nav-link:hover{
    background-color: #D69F1F;
    color: white;
    border-radius: 5px;
}
.nav-link.active{
    background-color: #D69F1F;
    color: white;
    border-radius: 5px;
}
.icons{
    margin-left: 30px;
}
.icons img{
    margin-left: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}
.icons img:hover{
    transform: translateY(-5px);
}
@media screen and (max-width:330px){
    #logo{
        font-size: 15px;
    }
}
/* navbar end */

/* contact */
#contenedor{
    margin-top: 50px;
}
#contenedor h1{
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: #D69F1F;
    text-shadow: 1px 1px 1px black;
    border-bottom: 2px solid #D69F1F;
}

form{
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #201f1f;
    height: 250px;
    padding: 20px;
    border-radius: 10px;
}

.FormRecCon{
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #201f1f;
    height: 180px;
    padding: 20px;
    border-radius: 10px;
}

label{
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

input {
    margin-top:80%;
    border-radius: 10px;
    height: 50px;
    text-align: center;
}

.btn{
    background-color: #D69F1F;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.5s ease;
}

/* contact */

/* footer */
#footer {
    width: 100%;
    background-color: #201f1f;
    box-shadow: 0px 0px 5px black;
    margin-top: 50px;
    color: white;
    padding: 40px 20px;
    position: relative;
    /* Posición relativa para asegurar que el contenido no se desplace */
}

#footer.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.col-md-4.pt-3.py-md-0 {
    flex: 1;
    margin-bottom: 20px;
}

.col-md-4.pt-3.py-md-0#left {
    text-align: left;
}

.col-md-4.pt-3.py-md-0#center {
    text-align: center;
}

.col-md-4.pt-3.py-md-0#right {
    text-align: center;
}

.col-md-4.pt-3.py-md-0 h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fdd835;
}

.col-md-4.pt-3.py-md-0 p,
.col-md-4.pt-3.py-md-0 a {
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.6;
}

.col-md-4.pt-3.py-md-0 a:hover {
    color: #fdd835;
}

.google-map iframe {
    border-radius: 10px;
    border: none;
    width: 300px;
    height: 200px;
}

.social-icons {
    display: flex;
    justify-content: center;
    /* Centramos los íconos horizontalmente */
    gap: 15px;
    margin-top: 10px;
}

.social-icons img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

/* footer */
html{
    scroll-behavior: smooth;
}
.arrow{
    position: fixed;
    background-color: #D69F1F;
    border-radius: 50px;
    height: 50px;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
}
