@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #e6e3e9;
    color: #2C2A29;
    text-align: center;
}

/* HERO SECTION */
.hero {
    /*
      You can replace this image with your own.
      The linear-gradient overlay makes the text/logo pop.
    */
    background:
      linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url('images/fondo.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.logo-container img {
    max-width: 80%;
    max-width: 350px; /* Reduce logo size */
    display: block;
    margin: 0 auto; /* Center horizontally */
}

/* ABOUT SECTION */
.about {
    padding: 20px;
    font-size: 15px;

    background: #223843;
    color: white;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    width: 90%;
    max-width: 350px;
    max-height: 500px;
    margin: 20px auto; /* Centering */
    text-align: center;
}

.icon {
    font-size: 50px;
    color: #223843;
    margin: 10px 0;
    height: 70px
}

/* CALENDAR */
.calendar-section h2,h3 {
    font-size: 22px;
    margin-top: 20px;
    color: #223843;
}

.calendar {
    background: url('images/calendar.jpg') no-repeat center center/cover;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
}

.days {
    display: inline-block;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    max-width: 350px;
    text-align: center;
}

.days span {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 5px;
    background: #1A4B7D;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    font-size: 14px;
    line-height: 30px;
}

/* BOOKING SECTION */
.booking {
    padding: 20px;
}

.schedule button {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    border: none;
    background: #1A4B7D;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 90%;
    max-width: 300px; /* Limit width */
    padding: 8px;
    margin: 5px auto; /* Center buttons */
    display: block;
}

.schedule button:hover {
    background: #2A6BAB;
}

.form {
    background: #0D2234;
    color: white;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    width: 90%;
    max-width: 350px;
    margin: 20px auto; /* Centering */
    text-align: center;
}

.form label {
    display: block;
    margin-bottom: 5px;
}

.form input {
    width: 80%;
    padding: 8px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}

.form p {
    margin: 10px 0;
}

.reserve {
    background: #E88E75;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.reserve:hover {
    background: #D66D55;
}

/* Modal container */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
}

.modal input {
  display: block;
  width: 80%;
  margin: 10px auto;
  padding: 10px;
  border: none;
  background: #f0f1f4;
  color: #223843;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 90%;
  max-width: 300px; /* Limit width */
  padding: 8px;
  margin: 5px auto; /* Center buttons */
  display: block;
}

.modal button {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    border: none;
    background: #223843;
    color: #f0f1f4;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 90%;
    max-width: 300px; /* Limit width */
    padding: 8px;
    margin: 5px auto; /* Center buttons */
    display: block;
}

.modal button:hover {
    background: #2A6BAB;
}

/* Modal content box */
.modal-content {
  background-color: #f0f1f4;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  cursor: pointer;
}
