:root {
  --color-primary: rgb(213,49,138);
  --color-primary-dark: #b00d63;
  --color-dark: #1a1a1a;
  --color-light: #eae5e5;
  --color-muted: #777777;
  --color-accent: #a3774a;
  --overlay-color: rgba(26, 26, 26, 0.6);
  --font-heading: "Playfair Display", serif;
  --font-main: "Lora", serif;
  --background-color-header:linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
  --hamburger-color: #fff;
  --sphere-color:#fff;
  --sherpe-text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  --sherpe-background-color-before:rgba(255, 255, 255, 0.7);
  --logo-background-color: rgba(0, 0, 0, 0.423);
  --background-color-about: white;
  --border-color-profile-img: white;
  --background-color-contact: white;
  --footer-contact-conotainer-background: rgba(255, 255, 255, 0.1);
  --footer-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  --color-default: #000;
  --polaroid-caption-color:#333;
  --gallery-container-background-color: rgb(255, 255, 255);
  --polaroid-background-color: #fff;
  --polaroid-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  --polaroid-border-color: #ddd;
  --polaroid-box-shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.3);
  --modal-background-color: rgba(0, 0, 0, 0.8);
  --modal-thumbnail-active-border-color: white;
  --modal-prev-next-color: white;
  --modal-prev-next-background-color: rgba(0, 0, 0, 0.5);
  --modal-close-color: white;
  --hero-overaly-background-color: linear-gradient(to bottom, var(--overlay-color), rgba(26, 26, 26, 0.46));
  --hero-title-text-shadow:0 2px 10px rgba(0, 0, 0, 0.3);
  --hero-subtitle-text-color: #f0e6d2;
  --hero-subtitle-text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  --hero-btn-box-shadow: 0 8px 20px rgba(219, 15, 123, 0.4);
  --hero-btn-hover-box-shadow: 0 12px 25px rgba(219, 15, 123, 0.5);
  --hero-hours-container-background:#00000082;
  --hero-hours-text-color: #c3beba;
  --pricing-table-background-color: #ffffff;
  --pricing-table-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --pricing-table-border-bottom-color-th-td:#eee;
  --pricing-table-th-color: #fff;
  --princing-table-tr-child-even-background: #f9f9f9;
  --pricing-table-tr-hover-background: rgba(213, 49, 138, 0.1);
  --princing-table-tr-background-color: #fff;
  --pricing-table-border-color: #eee;
  --box-shadow-sphere: 0 0 15px rgba(0, 0, 0, 0.3),
  inset 5px 5px 15px rgba(255, 255, 255, 0.4),
  inset -5px -5px 15px rgba(0, 0, 0, 0.3);
  --filter-sphere: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
  --footer-text-color: rgb(255, 255, 255);
  --footer-background-color: #1C1B1A;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  background: var(--background-color-header);
  padding: 1.5rem 0;
  z-index: 40;
  transition: background 0.3s ease;
  padding: 15px 0px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header__logo-img:hover {
  transform: scale(1.05);
}

.header__extras {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 697px) {
  .header__extras {
    margin-right: 35px;
  }
  .header__inner {
    gap: 1rem;
  }
}
/* Navigation */
.nav__list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-light);
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

/* Social */
.social {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.social__link {
  color: var(--color-light);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social__link:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

/* Phone */
.contact__phone {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact__phone:hover {
  color: var(--color-primary);
}

.responsive-navbar-btn {
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 25px;
  display: none;
}

.responsive-navbar-btn-hidden {
  display: none;
}

.responsive-navbar-btn i {
  color: var(--hamburger-color);
  font-family: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.responsive-navbar-btn i:hover {
  color: var(--color-primary);
  scale: 1.3;
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover {
  transform: scale(1.1);
}

.sphere {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  box-shadow: var(--box-shadow-sphere);
  position: relative;
  overflow: hidden;
  filter: var(--filter-sphere);
}

.sphere::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 25%;
  height: 25%;
  background: var(--sherpe-background-color-before);
  border-radius: 50%;
  filter: blur(6px);
  z-index: 1;
}

.sphere .fa-arrow-up {
  color: var(--sphere-color);
  font-size: 24px;
  text-shadow: var(--sherpe-text-shadow);
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.scroll-top-btn:hover .sphere {
  animation: pulse 1s infinite;
}

.nav__responsive {
  display: none;
}

@media (max-width: 860px) {
  .nav__list {
    display: none;
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  .responsive-navbar-btn {
    display: block;
  }
  .nav__responsive {
    display: block;
  }
  .nav ul {
    padding: 15px 0px 15px 0px;
  }
}
footer {
  padding: 2rem 0rem;
  position: relative;
  overflow: hidden;
}

.footer__privacy {
  text-align: center;
  background-color: var(--footer-background-color);
  margin: 2rem 1rem 0rem 1rem;
  padding: 1rem;
  border-radius: 25px;
  color: var(--footer-text-color);
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__socials li a {
    width: 40px;
    height: 40px;
  }
  .footer__contact h3 {
    font-size: 1.5rem;
  }
  .footer__map {
    height: 250px;
  }
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("/media/background_img.webp") no-repeat center center/cover;
  color: var(--color-light);
  overflow: hidden;
}

.logo {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
  padding-left: 25px;
  padding-top: 70px;
  position: absolute;
}

.logo img {
  margin-top: 80px;
  margin-left: 30px;
  width: 180px;
  height: auto;
}

.logo svg {
  margin: 0;
  background-color: var(--logo-background-color);
  height: 180px;
  border-radius: 50vh;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overaly-background-color);
  z-index: 1;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  animation: fadeIn 1.5s ease-in-out;
  display: flex;
  flex-direction: column;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: var(--hero-title-text-shadow);
}

.hero__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: var(--hero-subtitle-text-color);
  text-shadow: var(--hero-subtitle-text-shadow);
}

.hero__btn {
  display: inline-block;
  padding: 0.8rem 2.3rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-light);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: var(--hero-btn-box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--hero-btn-hover-box-shadow);
}

.hero__description,
.hero__hours {
  flex: 1 1 350px;
}

.hero__hours {
  position: absolute;
  right: 25px;
  background: var(--hero-hours-container-background);
  border-radius: 25px;
  bottom: 25px;
  padding: 10px;
  z-index: 20;
}

.hero__info-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
}

.hero__info-title::after {
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
  bottom: -5px;
  left: 0;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--color-dark);
  line-height: 1.8;
}

.hero__info-text {
  display: inline-block;
  color: var(--hero-hours-text-color);
  font-style: italic;
  font-size: 18px;
  padding: 5px;
}

.hero__content button {
  background-color: transparent;
  border: none;
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
  }
  .hero__subtitle {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.2rem;
  }
  .hero__btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  .hero__info {
    flex-direction: column;
    gap: 2rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
  .header__extras {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 500px) {
  .logo {
    justify-content: center;
    padding-left: 0;
  }
  .hero__subtitle {
    margin-bottom: 1.5rem;
  }
  .hero__hours {
    right: auto;
    bottom: 40px;
  }
  .hero__title {
    font-size: 1.9rem;
    margin-top: 40px;
  }
}
.pricing-container {
  max-width: 1200px;
  margin: 1.8rem auto;
  padding: 0 2rem;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pricing-table-background-color);
  box-shadow: 0 8px 20px var(--pricing-table-box-shadow);
  border-radius: 10px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--pricing-table-border-bottom-color-th-td);
}

.pricing-table th {
  background: var(--color-primary);
  color: var(--pricing-table-th-color);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table td {
  font-size: 1rem;
}

.pricing-table tr:nth-child(even) {
  background: var(--princing-table-tr-child-even-background);
}

.pricing-table tr:hover {
  background: var(--pricing-table-tr-hover-background);
  transition: background 0.3s ease;
}

.pricing-table .price {
  font-weight: bold;
  text-align: center;
}

.pricing-table-color {
  color: var(--color-accent);
}

.pricing-table .note {
  font-style: italic;
}

.note-text-color {
  color: var(--color-muted);
}

.note-colspan {
  display: flex;
  justify-content: flex-start;
}

.note-colspan-bold {
  font-weight: bold;
}

@media (max-width: 768px) {
  .pricing-table {
    background-color: transparent;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--pricing-table-border-color);
    border-radius: 8px;
    background: var(--princing-table-tr-background-color);
  }
  .pricing-table td {
    display: block;
    text-align: right;
    padding: 1rem;
    position: relative;
    border-bottom: none;
  }
  .pricing-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    font-weight: bold;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    font-family: var(--font-heading);
  }
  .pricing-table .price {
    text-align: right;
  }
  .pricing-table td:last-child {
    border-bottom: none;
  }
  .pricing-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .pricing-container {
    padding: 0 1rem;
    margin: 2rem auto;
  }
  .pricing-table td {
    padding: 0.8rem;
  }
  .pricing-title {
    font-size: 1.5rem;
  }
  .note p {
    margin-top: 20px;
  }
}
.polaroid img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

.gallery-container .pricing-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary-dark);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  top: -25px;
  z-index: 10;
}

.gallery-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 3rem 0 0 0;
  background-color: var(--gallery-container-background-color);
}

.galery {
  position: relative;
  max-width: 1200px;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-wrap: wrap;
  padding: 5rem;
  justify-content: center;
}

.polaroid {
  background: var(--polaroid-background-color);
  width: 220px;
  height: 280px;
  padding: 15px 15px 40px;
  box-shadow: var(--polaroid-box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
  border: 1px solid var(--polaroid-border-color);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}

.polaroid img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

.img-polaroid {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-size: cover;
}

.polaroid__caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--polaroid-caption-color);
  margin-top: 10px;
  font-style: italic;
}

.polaroid:nth-child(odd) {
  transform: rotate(-5deg);
}

.polaroid:nth-child(even) {
  transform: rotate(15deg);
}

.polaroid:hover {
  transform: scale(1.1) rotate(0deg);
  box-shadow: var(--polaroid-box-shadow-hover);
  z-index: 10;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--modal-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}

.modal-image {
  width: 70%;
  max-width: 580px; /* Adjust as needed */
  height: auto;
  background-position: center;
  background-size: cover !important;
}

.modal-thumbnails {
  margin-top: 10px;
  max-width: 580px; /* Match main image width */
  overflow-x: auto;
  white-space: nowrap;
  padding: 5px;
  display: flex;
  gap: 5px;
}

.modal-thumbnail {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.modal-thumbnail.active {
  opacity: 1;
  border: 2px solid var(--modal-thumbnail-active-border-color);
}

.modal-prev, .modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--modal-prev-next-background-color);
  color: var(--modal-perv-next-color);
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}

.modal-prev {
  left: 10px;
}

.modal-next {
  right: 10px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--modal-close-color);
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .galery {
    padding: 4.5rem 1rem 0 1rem;
  }
  .polaroid {
    width: 160px;
    height: 240px;
  }
}
/* Contact Section Styles */
.contact-section {
  background-color: var(--background-color-contact);
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
}

.contact-section .pricing-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-grid div:nth-of-type(1) {
  padding-left: 30%;
}

.contact-grid div:nth-of-type(2) {
  padding-left: 35%;
}

.contact-grid p {
  font-family: var(--font-main);
  color: var(--color-dark);
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.contact-grid p span {
  color: var(--color-default);
  font-weight: 500;
}

.text-contact-color {
  color: var(--color-muted) !important;
}

.contact-grid a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact {
  background: var(--footer-contact-conotainer-background);
  padding: 2rem;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.footer__contact h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer__contact p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}

.footer__map {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 15px;
  box-shadow: var(--footer-box-shadow);
  transition: transform 0.3s ease;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 697px) {
  .footer__contact {
    padding: 2rem 0;
  }
  .contact-grid div:nth-of-type(1) {
    padding-left: 0;
  }
  .contact-grid div:nth-of-type(2) {
    padding-left: 0;
  }
}
.about-us {
  width: 100%;
  height: 100%;
  background-color: var(--background-color-about);
}

.about-us__title {
  text-align: center;
  padding-top: 1.8rem;
}

.about-us__title h2 {
  font-size: 2.5rem;
}

.about-us__background {
  width: 100%;
  height: 350px;
  background: url(/media/background-img-2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-us__content {
  padding: 6.5rem 2.5rem 2.5rem;
  text-align: center;
  position: relative;
  font-family: var(--font-main);
  font-size: 1.125rem;
}

.about-us__contetn-img {
  background: url(/media/maja.webp);
  width: 180px;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 25vh;
  position: absolute;
  top: -100px;
  border: 1px solid var(--border-color-profile-img);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

svg {
  width: 180px;
  height: 400px;
  display: block;
  margin: auto;
  overflow: visible;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-light);
  color: var(--color-dark);
  scroll-behavior: smooth;
}

.pix_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer_contact-map {
  background: url(/media/mapa_100.webp);
  width: 100%;
  height: 400px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}/*# sourceMappingURL=styles.css.map */