/*
 * Globals
 */

/* Primary Button Style */
.btn-custom {
  background-color: #ba8f62;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover & Focus */
.btn-custom:hover,
.btn-custom:focus {
  background-color: #a57850;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

/* Active Press Effect */
.btn-custom:active {
  transform: scale(0.98);
  box-shadow: none;
}

img {
  object-fit: cover;
}

.glightbox img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.glightbox img:hover {
  transform: scale(1.02);
}



/* Custom default button */
/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  background-color: #ba8f62; /* Default background color */
  color: #d1d1d1; /* Default text color */
  text-shadow: none; /* Prevent inheritance from `body` */
  border: 2px solid #ba8f62; /* Default border color */
  transition: all 0.3s ease; /* Smooth transition */
}

/* Hover effect */
.btn-light:hover {
  background-color: #ba8f62; /* Keep the background the same on hover */
  color: #ba8f62; /* Keep the text color white on hover */
  border-color: #ba8f62; /* Keep the border color the same */
  transform: scale(1.05); /* Slightly enlarge the button on hover */
}

/*
 * Base structure
 */

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}


body {
  overflow-x: hidden;
  background-color: #394f5a;
  color: #d1d1d1;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

h1, h2 {
  color: #ba8f62;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 2rem;
}

.content-wrapper {
  padding-top: 70px;
  padding-bottom: 50px;
}

.content-section {
  padding: 20px;
}

.cover-container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
}

/* On large screens (e.g. desktops) */
@media (min-width: 992px) {
  .cover-container {
    max-width: 50%;
  }
}

/* On tablets and medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
  .cover-container {
    max-width: 70%;
  }
}

/* On small screens (e.g. phones) */
@media (max-width: 767.98px) {
  .cover-container {
    max-width: 100%;
  }
}


/*
 * Header
 */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}


.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

#contacto {
    font-family: Arial, sans-serif;
    margin: 20px 0;
}

#contacto h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.map-container {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.contact-item i {
    margin-right: 10px;
    color: #2c3e50;
    font-size: 1.5em;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-item b {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
  #reservas p,
  #contacto p {
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  h1 img {
    height: 100px !important;
  }

  .lead {
    font-size: 1rem;
  }

  .btn-custom {
    width: 100%;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }

  .contact-info .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nav-masthead .nav-link {
    display: block;
    margin: 5px 0;
  }
}

@media screen and (max-width: 576px) {
  .row.g-3 {
    gap: 1rem;
  }

  .row.g-3 > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

