/* two section in home page  */
.colored-section{
    background-color:rgb(241, 240, 240);
    color:black;
}
 .white-section{
    background: white;
 }

 /* nav bar  */

 .carousel-item {
    height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
 
  }
  .nav-item{
    padding-left: 0.6rem;
  }
  .navbar-nav{
    padding-left: 0.6rem;
  }
  #navbar_top{
      padding: 1rem;
      transition: 0.4s;
  }
  .fixed-top.navbar_top{
    transition: 0.4s ;
  }
#slider{
  transition: 0.4s ;
}
  /* testimonials section */
#testimonials{

  background-color:rgb(241, 240, 240);
  color:black;
  text-align: center;
}

.testimonial-text{
 font-size: 2.5rem;
 line-height: 1.5;
 padding:2em;
 margin: 1px;
 text-align: center;
}
.testimonials-image{
 width:11%;
 margin-left:44%;
 text-align: center;
}

/* pre and next button style  */
.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: invert(1);
}

/* parallex effect  */

.parallex{
    /* The image used */
    background-image: url("../picture/cesourel/lighting.jpg");

    /* Set a specific height */
    min-height: 450px;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



 /* Each page url to title  */
.page-title{
  
  text-align: center;
  position: relative;
  padding: 200px 0 0 0;
  font-family: 'Noto Sans JP', sans-serif
  
}

/* card style */

.card{
  border:1px solid black;
  box-shadow:  0 0 18px 0 gray;
}

/* service page image */

.side-image{
  width: 450px; height: 350px;
}


  /* card style in about page - out team  */


.profile img {
  width: 68px;
  height: 68px;
  border-radius: 50%
}
.img{
  border:1px solid black;
  box-shadow:  0 0 20px 0 gray;
  max-width: 300px;
}

.about {
  text-align: center;
  border-radius: 20px;
  margin-left: 30px;
  margin-right: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.about-founder {
  position: relative;
  bottom: 35px
}

 /* vertical devider  */



/* responsiveness */
/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
 
}
 
@media (max-width:767px) {
  .carousel-inner {
    height: 15rem;
  }
  .title{
    font-size:3rem;
  }
}

@media all and (min-width: 992px) {
	.navbar-nav .nav-item .dropdown-menu{ display: none; }
	.navbar-nav .nav-item:hover .nav-link{   }
	.navbar-nav .nav-item:hover .dropdown-menu{ display: block; }
	.navbar-nav .nav-item .dropdown-menu{ margin-top:0; }
}	

/* Estilos para el modal de reserva */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .close {
    color: white;
    text-shadow: none;
    opacity: 0.8;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6e8efb;
    box-shadow: 0 0 0 0.2rem rgba(110, 142, 251, 0.25);
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem;
}

.btn-success {
    background: #25D366;
    border-color: #25D366;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-success i {
    margin-right: 8px;
}

/* Animación para el modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .modal-body {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .btn-success {
        width: 100%;
        margin-top: 1rem;
    }
}	