/* Puerto 99 - Restored Styles */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #c9a96e;
  color: #000;
  padding: 8px 16px;
  z-index: 100000;
}
.skip-link:focus {
  top: 0;
}

/* === Sticky Header === */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.header-logo img {
  width: 80px;
  height: auto;
}

.header-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #c9a96e;
  color: #c9a96e;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-book-btn:hover {
  background: #c9a96e;
  color: #000;
  opacity: 1;
}

/* === Hamburger Menu === */
.hamburger {
  padding: 15px;
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.15s linear;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  z-index: 99999;
  position: relative;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger:hover, .hamburger:focus {
  background: unset;
  outline: unset;
}

.hamburger-box {
  width: 35px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 1px;
  background-color: white;
  border-radius: 1px;
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/* === Full-screen Menu Overlay === */
#rightsection {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9998;
  overflow-y: auto;
  background-color: #0a0a0a;
}

#rightsection.active {
  display: flex;
}

.menu-overlay {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.menu-overlay-left {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.menu-overlay-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-overlay-left .overlay-subtitle {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.menu-overlay-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-overlay-nav {
  list-style: none;
  padding: 0;
}

.menu-overlay-nav li {
  margin: 15px 0;
}

.menu-overlay-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.menu-overlay-nav a:hover,
.menu-overlay-nav a.active {
  color: #c9a96e;
  opacity: 1;
}

/* === Hero Section === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 20px 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

/* === Content Sections === */
.content-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-image img {
  width: 100%;
  border-radius: 2px;
}

.content-text h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #c9a96e;
}

.content-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.content-text .address {
  font-weight: 700;
  color: #ffffff;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: #c9a96e;
  color: #000000;
}

.btn-primary:hover {
  background-color: #b8954f;
  opacity: 1;
}

.btn-secondary {
  background-color: transparent;
  color: #c9a96e;
  border: 1px solid #c9a96e;
}

.btn-secondary:hover {
  background-color: #c9a96e;
  color: #000;
  opacity: 1;
}

/* === Location Section === */
.location-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #c9a96e;
}

.location-info p {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 8px;
}

.location-info strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-info a {
  color: #c9a96e;
}

.location-info a:hover {
  opacity: 1;
  text-decoration: underline;
}

.location-map {
  width: 100%;
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.3);
}

/* === Gallery Image === */
.gallery-section {
  padding: 0 20px 80px;
  background-color: #0a0a0a;
}

.gallery-section .content-container {
  max-width: 1200px;
}

.gallery-section img {
  width: 100%;
  border-radius: 2px;
}

/* === Floating Social Icons === */
.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9990;
}

.floating-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.floating-icon:hover {
  transform: scale(1.2);
  opacity: 1;
}

.floating-icon.facebook {
  background-color: #3b5998;
}

.floating-icon.whatsapp {
  background-color: #25d366;
}

.floating-icon.reservations {
  background-color: #c9a96e;
}

/* === Footer === */
.site-footer {
  background-color: #000000;
  padding: 60px 20px;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin: 0 auto 40px;
}

.footer-columns {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.footer-column h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #c9a96e;
}

.footer-column p,
.footer-column a {
  font-size: 13px;
  color: #999999;
  line-height: 2;
}

.footer-column a:hover {
  color: #c9a96e;
  opacity: 1;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #c9a96e;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  transition: opacity 0.3s;
}

.footer-btn i {
  margin-right: 5px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.footer-social a {
  font-size: 18px;
  color: #999;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #c9a96e;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 12px;
  color: #666;
}

/* === Responsive === */
@media (max-width: 991px) {
  .two-column,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-overlay-left {
    display: none;
  }

  .menu-overlay-right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header-book-btn {
    display: none;
  }

  .hero-section {
    min-height: 70vh;
    padding: 100px 20px 60px;
  }

  .content-section,
  .location-section {
    padding: 50px 15px;
  }

  .content-text h2,
  .location-info h2 {
    font-size: 24px;
  }

  .floating-icons {
    right: 10px;
    bottom: 10px;
  }

  .floating-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
