/* Reset default styles */
*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* Clearfix */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Body */
body {
  background-color: #171010;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 16px;
  color: #dcdcdc;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header */
header.public {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#header-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#brand-image img {
  max-width: 100px;
  height: auto;
}

#brand-menu {
  margin-left: 10px;
}

#brand-text img {
  max-width: 100%;
  height: auto;
  max-height: 48px;
}

#btn-login, #btn-logout {
  display: none;
}

#menu-main {
  margin-top: 10px;
}

#menu-main ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

#menu-main li {
  margin-right: 20px;
  padding-bottom: 6px;
}

#menu-main li a {
  font-family: "Arvo", Georgia, serif;
  font-size: 19px;
  line-height: 21px;
  color: #a0a0a0;
  font-weight: bold;
  text-decoration: none;
}

#menu-main li.current, #menu-main li.active {
  border-bottom: 3px solid #fc6621;
}

#header-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#header-right .search {
  position: relative;
  margin-right: 10px;
}

#header-right .search #searchfield {
  width: 165px;
  height: 34px;
  font-family: "Arvo", Georgia, serif;
  font-size: 14px;
  color: #707070;
  padding: 8px;
  border: 1px solid #707070;
  background: transparent;
  font-weight: bold;
}

#header-right .search #searchbutton {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  background-image: url(../img/lupita.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}

#header-right .loginout a {
  font-family: "Arvo", Georgia, serif;
  font-size: 18px;
  color: #fff;
  padding: 9px 15px;
  background-color: #851b0c;
  border-bottom: 3px solid #561208;
  text-decoration: none;
  font-weight: bold;
}

/* Main Content */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.contenidoPpal {
  width: 100%;
  background: #73261c url(../img/patron.jpg);
  padding: 15px;
}

.innerpage-header {
  width: 100%;
  padding: 0;
}

.innerpage-header h1 {
  font-family: "Arvo", Georgia, serif;
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  margin: 14px 0;
}

.row-border {
  width: 100%;
  height: 1px;
  background-color: #72180a;
  margin: 15px 0;
}

/* Form (for desires.html) */
#mydesires form {
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
}

#mydesires input,
#mydesires select,
#mydesires textarea {
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #222;
  color: #eee;
  font-size: 14px;
}

#mydesires button {
  padding: 10px 18px;
  background-color: #b71c1c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 15px;
}

#mydesires button:hover {
  background-color: #d32f2f;
}

/* Table (for desires.html) */
#desiresTable {
  width: 100%;
  max-width: 100%;
  table-layout: auto;
}

/* Modal (for desires.html) */
.modal-content {
  background-color: #171010;
  color: #ffffff;
  border: none;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
}

.modal-content h3 {
  font-family: "Arvo", serif;
  font-weight: 700;
}

.modal-content button {
  color: #ffffff;
  border-color: #ffffff;
}

.modal-content button:hover {
  background-color: #ffffff;
  color: #171010;
}

#messagesList div {
  margin-bottom: 10px;
}

#modalViewContent p {
  margin: 5px 0;
}

/* Chat Messages (for desires.html) */
#view-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 10px;
}

.chat-row {
  display: flex;
  margin: 5px 0;
}

.bubble-left {
  justify-content: flex-start;
  color: black;
}

.bubble-right {
  justify-content: flex-end;
  color: darkred;
}

.chat-bubble {
  max-width: 70%;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: #fff;
  position: relative;
}

.bubble-left .chat-bubble {
  background: #e0f7fa;
  border-bottom-left-radius: 0;
}

.bubble-right .chat-bubble {
  background: #c8e6c9;
  border-bottom-right-radius: 0;
}

.chat-sender {
  font-weight: bold;
  font-size: 0.85em;
  margin-bottom: 3px;
}

.chat-text {
  font-size: 1em;
  margin-bottom: 4px;
}

.chat-time {
  font-size: 0.75em;
  color: #666;
  text-align: right;
}

/* Login Form (for login.html) */
.login-form {
  max-width: 70%;
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  margin: 15px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-column-login {
  flex: 1 1 50%;
  max-width: 50%;
}

.left-column-login img.screen-sm {
  max-width: 100%;
  height: auto;
  display: block;
}

.right-column {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 15px;
}

.member-login-box {
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 8px;
}

.member-login-box .login-header h2 {
  font-family: "Arvo", Georgia, serif;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.member-login-box .nav-tabs {
  border-bottom: 2px solid #fc6621;
  background-color: #0d0d0d;
}

.member-login-box .nav-tabs .nav-link {
  font-family: "Arvo", Georgia, serif;
  font-size: 16px;
  color: #a0a0a0;
  border: none;
  border-bottom: 3px solid transparent;
  background-color: #0d0d0d;
  padding: 10px 15px;
}

.member-login-box .nav-tabs .nav-link.active {
  color: #ffffff;
  border-bottom: 3px solid #fc6621;
  background-color: #b71c1c;
}

.member-login-box .nav-tabs .nav-link:hover {
  color: #ffffff;
  border-bottom: 3px solid #fc6621;
  background-color: #851b0c;
}

.member-login-box .form-control {
  background-color: #222;
  border: 1px solid #444;
  color: #eee;
  border-radius: 6px;
}

.member-login-box .btn-primary {
  background-color: #b71c1c;
  border: none;
}

.member-login-box .btn-primary:hover {
  background-color: #d32f2f;
}

.member-login-box .btn-danger {
  background-color: #851b0c;
  border: none;
}

.member-login-box .btn-danger:hover {
  background-color: #a3210f;
}

.member-login-box .btn-success {
  background-color: #2e7d32;
  border: none;
}

.member-login-box .btn-success:hover {
  background-color: #388e3c;
}

/* Enter-Exit Page (for filter.html) */
.enter-exit {
  max-width: 70%;
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  margin: 15px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-column {
  flex: 1 1 50%;
  max-width: 50%;
}

.left-column img.screen-sm {
  max-width: 100%;
  height: auto;
  display: block;
}

.right-column {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 15px;
}

.right-column h1.center {
  font-family: "Arvo", Georgia, serif;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.right-column p.center {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.enter-exit-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.enter-exit-buttons .button a {
  font-family: "Arvo", Georgia, serif;
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.enter-exit-buttons .button.enter-accepted a {
  background-color: #b71c1c;
}

.enter-exit-buttons .button.enter-accepted a:hover {
  background-color: #d32f2f;
}

.enter-exit-buttons .button.exit a {
  background-color: #532b2b;
}

.enter-exit-buttons .button.exit a:hover {
  background-color: #422222;
}

.right-column p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
}

.right-column ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.right-column ol li {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.right-column a.emphasized {
  color: #fc6621;
  text-decoration: underline;
}

/* Visit Us Page (for visit-us.html) */
#visit-us {
  width: 100%;
  max-width: 100%;
}

#caribbean-experience {
  font-family: "Arvo", serif;
  padding: 2em 15px;
  color: #fff;
  line-height: 1.6;
}

#caribbean-experience p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 2em;
  text-align: center;
}

#caribbean-experience h3 {
  font-size: 1.5em;
  margin-top: 2em;
  text-align: center;
  color: #fc6621;
}

#caribbean-experience ul {
  max-width: 800px;
  margin: 1em auto;
  font-size: 1.3em;
  list-style-position: outside;
  padding-left: 20px;
}

#caribbean-experience ul li {
  margin-bottom: 10px;
}

.destination {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 2em;
  background: rgba(0, 0, 0, 0.25);
  padding: 0px;
  border-radius: 8px;
}

.destination-text {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 5px;
}

.destination-text h3 {
  font-size: 1.4em;
  margin-bottom: 1em;
}

.destination-text p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.destination-text a {
  color: #fc6621;
  text-decoration: underline;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 1em;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.destination-gallery {
  flex: 1 1 50%;
  max-width: 50%;
}

.glider-contain {
  width: 100%;
  border: 2px solid #fc6621;
  border-radius: 8px;
  padding: 5px;
}

.glider img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Upcoming Shows (for upcoming-shows.html) */
#upcoming-shows-cat {
  width: 100%;
  max-width: 100%;
}

#upcoming-shows-cat .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

/* Previous Shows (for previous-shows.html) */
#previous-shows-cat {
  width: 100%;
  max-width: 100%;
}

#previous-shows-cat .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

/* The Men (for the-men.html) */
#modelsCatalog {
  width: 100%;
  max-width: 100%;
}

#modelsCatalog .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.model-list-item {
  flex: 1 1 22%;
  max-width: 22%;
  text-align: center;
}

.model-list-item a {
  text-decoration: none;
}

.model-image {
  margin: 0;
}

.model-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.model-image img:hover {
  transform: scale(1.05);
}

.model-image figcaption {
  font-family: "Arvo", Georgia, serif;
  font-size: 16px;
  color: #ffffff;
  margin-top: 10px;
  font-weight: bold;
}

/* Model Page (for yeiber.html) */
#modelPage {
  width: 100%;
  max-width: 100%;
}

#modelPage .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

.model-related-container {
  width: 100%;
}

.model-details-top {
  margin-bottom: 30px;
}

.model-details {
  width: 100%;
  display: flex;
}

.model-img-div {
  width: 50%;
}

.model-img-div img {
    width: 100%;
    /* height: auto; */
    border-radius: 8px;
    margin: 0px;
}

.model-videos {
  float: right;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-item {
    width: 44%;
    display: inline-block;
    margin: 1.5em;
}

.video-item h2 {
  font-family: "Arvo", Georgia, serif;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.video.player.flowplayer {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.video.player.flowplayer .fp-ratio {
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video.player.flowplayer .fp-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.video.player.flowplayer a {
  display: block;
  width: 100%;
  height: 100%;
}

.model-info {
    float: left;
    width: 49%;
    max-width: 49%;
    padding-left: 3em;
}

.model-description p {
  font-family: "Arvo", Georgia, serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}

.model-stats p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.model-stats .model-stats-header {
  font-weight: bold;
  color: #fc6621;
}

.freePics-row .content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Footer */
footer {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 15px;
}

.footer-links {
  margin-bottom: 30px;
  padding: 20px 0;
  text-align: center;
}

.footer-links a {
  display: inline-block;
  margin-right: 20px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

#social-helpdesk {
  padding: 45px 0;
  text-align: center;
}

#social-helpdesk h2 {
  font-family: "Arvo", Georgia, serif;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: bold;
}

#helpdesk .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 17px;
}

#helpdesk .row div {
  flex: 1 1 18%;
  margin: 0 0.5%;
}

#helpdesk .helpdesk-button a {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  background-color: #532b2b;
  border-bottom: 3px solid #422222;
  color: #fff;
  text-decoration: none;
}

.nav-link {
  color:white;
}

/* Media Queries for Responsiveness */
@media (min-width: 960px) {
  .login-form, .enter-exit, .destination {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  #header-left, #header-right {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  #brand-menu {
    margin-left: 0;
    margin-top: 10px;
  }

  #menu-main ul {
    justify-content: center;
  }

  #menu-main li {
    margin-right: 10px;
  }

  #header-right .search #searchfield {
    width: 100%;
    max-width: 200px;
  }

  #mydesires form {
    max-width: 100%;
    padding: 10px;
  }

  #desiresTable {
    font-size: 12px;
  }

  #helpdesk .row div {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }

  .login-form, .enter-exit {
    flex-direction: column;
    max-width: 90%;
  }

  .left-column-login, .right-column, .left-column {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }

  .destination {
    flex-direction: column;
  }

  .destination-text, .destination-gallery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .model-details {
    display: block;
  }

  .model-img-div {
      width: 100%;
  }

  .model-videos {
    float: none;
    max-width: 100%;
  }

  .video-item {
    width: 100%;
    display: inline-block;
    margin: 0em;
}

  .model-info {
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
    margin-top:  2.5em;
  }

  .model-list-item {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 767px) {
  #brand-text img {
    max-width: 80%;
  }

  #menu-main li {
    margin-right: 5px;
    font-size: 16px;
  }

  #header-right .search #searchfield {
    width: 100%;
    max-width: 150px;
  }

  #helpdesk .row div {
    flex: 1 1 100%;
  }

  .modal-content {
    max-width: 95%;
    padding: 15px;
  }

  .login-form, .enter-exit {
    max-width: 95%;
    padding: 10px;
  }

  .member-login-box .login-header h2, .right-column h1.center {
    font-size: 20px;
  }

  .member-login-box .nav-tabs .nav-link {
    font-size: 14px;
    padding: 8px 10px;
  }

  #caribbean-experience p, #caribbean-experience ul {
    font-size: 1.1em;
  }

  #caribbean-experience h3 {
    font-size: 1.3em;
  }

  .destination-text h3 {
    font-size: 1.2em;
  }

  .model-list-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}