html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
@font-face {
  font-family: 'Bowhouse';
  src: url('../../assets/fonts/Bowhouse-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bowhouse';
  src: url('../../assets/fonts/Bowhouse-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@media (max-width: 1023px) {
  html,
  body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  *::-webkit-scrollbar {
    display: none;
  }
}
:root {
  --background: hsl(0, 0%, 24%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 30%);
  --card-foreground: hsl(0, 0%, 98%);
  --primary: hsl(0, 0%, 98%);
  --primary-foreground: hsl(0, 0%, 24%);
  --secondary: hsl(0, 0%, 38%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(0, 0%, 45%);
  --muted-foreground: hsl(0, 0%, 82%);
  --border: hsl(0, 0%, 40%);
  --input: hsl(0, 0%, 38%);
  --ring: hsl(0, 0%, 75%);
  --radius: 0.5rem;
  --destructive: hsl(0, 84.2%, 60.2%);
  --gray-50: hsl(0, 0%, 98%);
  --gray-100: hsl(0, 0%, 95%);
  --gray-200: hsl(0, 0%, 90%);
  --gray-300: hsl(0, 0%, 82%);
  --gray-400: hsl(0, 0%, 72%);
  --gray-500: hsl(0, 0%, 62%);
  --gray-600: hsl(0, 0%, 52%);
  --gray-700: hsl(0, 0%, 45%);
  --gray-800: hsl(0, 0%, 30%);
  --gray-900: hsl(0, 0%, 24%);
  --gray-950: hsl(0, 0%, 18%);
  --green-500: #22c55e;
  --amber-500: #f59e0b;
  --red-500: #ef4444;
  --blue-500: #3b82f6;
  --purple-500: #a855f7;
  --cyan-500: #06b6d4;
  --yellow-500: #eab308;
  --emerald-500: #10b981;
  --gold-500: #fbbf24;
  --gold-600: #f59e0b;
  --gold-700: #d97706;
  --font-display: Arial, Helvetica, sans-serif;
  --font-heading: Arial, Helvetica, sans-serif;
  --font-subheading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-fallback: Arial, Helvetica, sans-serif;
}
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}
body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading,
.font-serif {
  font-family: var(--font-heading) !important;
}
::selection {
  background: var(--gold-500);
  color: black;
}
::-moz-selection {
  background: var(--gold-500);
  color: black;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  font-size: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.font-serif {
  font-family: var(--font-heading);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 9999px;
  border: 2px solid var(--background);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-600);
  border: 2px solid var(--background);
  background-clip: padding-box;
}
.page-content::-webkit-scrollbar {
  width: 10px;
}
.page-content::-webkit-scrollbar-track {
  background: transparent;
}
.page-content::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 9999px;
  border: 2px solid var(--card);
  background-clip: padding-box;
}
.page-content::-webkit-scrollbar-thumb:hover {
  background: var(--gold-600);
  border: 2px solid var(--card);
  background-clip: padding-box;
}
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  padding-top: 4.5rem;
  gap: 0.75rem;
  background: var(--background);
  position: relative;
}
@media (min-width: 1024px) {
  .app-container {
    flex-direction: row;
    height: 100vh;
    padding-top: 4.5rem;
    overflow: hidden;
  }
}
.left-panel {
  display: block;
  height: 35vh;
  border-radius: 2rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .left-panel {
    position: relative;
    height: 100%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .layout-home .left-panel {
    width: 50%;
  }
  .layout-page .left-panel {
    width: 30%;
  }
}
.left-panel-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
  position: relative;
  container-type: inline-size;
}
.left-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform: rotate(10deg) scale(1.3);
}
.left-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.8) 100%);
  border-top: 1px solid var(--border);
  z-index: 10;
}
.google-rating-badge {
  text-decoration: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  display: inline-flex;
  flex-direction: column;
  gap: 0.16rem;
  min-width: 10.1rem;
  padding: 0.45rem 0.62rem 0.48rem;
  border-radius: 0.7rem;
  background: rgba(58, 58, 58, 0.72);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.google-rating-badge:hover {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.7);
}
.google-rating-badge:hover .google-rating-label,
.google-rating-badge:hover .google-rating-score,
.google-rating-badge:hover .google-rating-reviews {
  color: rgba(255, 255, 255, 0.95);
}
.google-rating-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem;
}
.google-rating-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.google-rating-score {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}
.google-rating-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}
.google-rating-stars {
  color: #fbbf24;
  font-size: 0.65rem;
  letter-spacing: 0.03em;
}
.google-rating-reviews {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 1280px) {
  .google-rating-badge {
    min-width: 9.6rem;
    padding: 0.42rem 0.56rem 0.46rem;
  }
  .google-rating-score {
    font-size: 0.8rem;
  }
}
@media (max-width: 1023px) {
  .google-rating-badge {
    display: none;
  }
}
.hero-title-overlay {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 20;
}
@media (max-width: 768px) {
  .hero-title-overlay {
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-title-overlay {
    bottom: 1rem;
    left: 0.75rem;
    right: 0.75rem;
  }
}
.hero-title-overlay h1 {
  font-family: 'Bowhouse', serif !important;
  font-weight: 900;
  font-size: clamp(4.5rem, 20cqw, 15rem);
  color: white;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
  word-break: normal;
  overflow-wrap: normal;
  display: block;
  width: 100%;
  transition: color 0.3s ease;
}
.hero-title-overlay h1:hover {
  color: var(--gold-500);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 3.5cqw, 1.8rem);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
  font-weight: 500;
  max-width: 100%;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  transition: color 0.3s ease;
  cursor: default;
  text-wrap: balance;
}
@media (max-width: 480px) {
  .hero-subtitle {
    max-width: 280px;
    line-height: 1.3;
  }
}
.hero-subtitle:hover {
  color: var(--gold-500);
}
.content-area {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}
@media (min-width: 1024px) {
  .content-area {
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    height: 100%;
  }
  .layout-home .content-area {
    width: 50%;
  }
  .layout-page .content-area {
    width: 100%;
  }
}
.right-panel {
  width: 100%;
  position: relative;
  background: transparent;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 1024px) {
  .layout-home .right-panel {
    height: 100%;
  }
}
.main-navbar {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 2rem;
  border-top: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.main-navbar,
.main-navbar button,
.main-navbar a,
.main-navbar span {
  font-weight: 700;
}
.main-navbar.scrolled {
  background: var(--background);
  border-color: var(--border);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .main-navbar {
    padding: 0.6rem 2.5rem;
  }
}
.navbar-section {
  display: flex;
  align-items: center;
}
.navbar-section-left {
  flex-shrink: 0;
}
.navbar-section-center {
  display: none;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .navbar-section-center {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .navbar-section-center {
    gap: 3rem;
  }
}
.navbar-section-right {
  flex-shrink: 0;
  gap: 1rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}
.navbar-logo:hover {
  color: var(--gold-500);
}
.navbar-logo img {
  display: none;
}
.navbar-logo span {
  font-family: 'Bowhouse', serif !important;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.navbar-logo:hover span {
  color: var(--gold-500);
}
@media (min-width: 1280px) {
  .navbar-logo span {
    font-size: 1.4rem;
    letter-spacing: 0.14em;
  }
}
.nav-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
}
.nav-link:hover {
  color: var(--gold-500);
  transform: translateY(-1px);
}
.nav-link.active {
  color: var(--gold-500);
}
#profile-container {
  display: flex;
  align-items: center;
  color: white;
  transition: color 0.3s ease;
}
#profile-container:hover {
  color: var(--gold-500);
}
#profile-container .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}
#profile-container .nav-link:hover {
  color: inherit;
}
#profile-container svg {
  opacity: 0.8;
}
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
}
.hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--background);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0.5rem 1rem;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: white;
}
@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none;
  }
}
.language-selector {
  position: relative;
}
.lang-btn {
  background: none;
  border: none;
  color: white;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  transition: color 0.3s ease;
  transform: translateY(0);
}
.lang-btn:hover {
  color: var(--gold-600);
  transform: translateY(-1px);
}
.lang-btn.active {
  color: var(--gold-600);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--gray-800);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 120px;
  z-index: 300;
}
.lang-dropdown.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-option {
  background: none;
  border: none;
  color: white;
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lang-option:hover {
  color: var(--gold-500);
}
.lang-option.active {
  color: var(--gold-500);
}
.main-content {
  flex: 1;
  height: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 1rem;
}
.layout-home .main-content {
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .layout-home .main-content {
    height: 100%;
    overflow: hidden;
  }
}
@media (max-width: 1023px) {
  .main-navbar {
    padding: 0.6rem 1rem;
  }
  .navbar-logo span {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }
  .navbar-section-right {
    gap: 0.5rem;
  }
  #profile-container .nav-link {
    font-size: 0;
  }
  #profile-container .nav-link svg {
    width: 18px;
    height: 18px;
  }
  .lang-btn {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
}
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 0;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.footer-inner {
  padding: 0.75rem 2rem;
  text-align: center;
}
.footer-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.footer-brand {
  font-family: 'Bowhouse', serif !important;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.footer-brand:hover {
  color: var(--gold-500);
}
.footer-separator {
  color: var(--border);
  font-size: 1.5rem;
  line-height: 1;
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--border);
  border-radius: 50%;
  margin: 0 0.4rem;
  vertical-align: middle;
}
.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.825rem;
}
.footer-link:hover {
  color: var(--gold-500);
}
.footer-link.instagram-link {
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-link.instagram-link:hover {
  color: #E1306C;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}
.footer-link.instagram-link svg {
  transition: transform 0.2s ease;
}
.footer-link.instagram-link:hover svg {
  transform: scale(1.1);
}
.legal-content,
.privacy-content {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}
.legal-content strong,
.privacy-content strong {
  color: var(--gold-500);
  font-family: var(--font-subheading);
  font-weight: 400;
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content strong:first-child,
.privacy-content strong:first-child {
  margin-top: 0;
}
.legal-content br,
.privacy-content br {
  display: block;
  content: "";
  margin-bottom: 0.5rem;
}
.layout-home .site-footer {
  display: none !important;
}

@media (max-width: 768px) {
  .footer-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    justify-items: center;
    align-items: center;
  }
  .footer-separator {
    display: none;
  }
  .footer-inner {
    padding: 0.75rem 1rem;
  }
  .layout-page .left-panel {
    display: none;
  }
}
