/*
      _/_/    _/    _/  _/      _/    _/_/    _/_/_/_/_/  _/_/_/_/  _/      _/
   _/    _/  _/    _/  _/_/  _/_/  _/    _/      _/      _/          _/  _/
  _/_/_/_/  _/    _/  _/  _/  _/  _/_/_/_/      _/      _/_/_/        _/
 _/    _/  _/    _/  _/      _/  _/    _/      _/      _/          _/  _/
_/    _/    _/_/    _/      _/  _/    _/      _/      _/_/_/_/  _/      _/

PROJECT:     Beatrix Tajall Official Website
FILE:        css/styles.css
PURPOSE:     Global styles for layout, typography, and UI components.
STACK:       CSS3
CREATED:     2026-01-27
AUTHOR:      Aumatex srls | www.aumatex.it
REPOSITORY:  https://github.com/aumadev/beatrixtajall
LICENSE:     Proprietary Software
SECURITY:    Do not expose, share or modify without authorization.
RIGHTS:      © 2025–2026 Aumatex srls. All rights reserved.

Unauthorized reproduction, distribution or modification
without prior written consent is strictly prohibited.
*/
:root {
  --brand-terra: #a65e4e;
  --brand-gold: #d4af37;
  --bg-dark: #1a1818;
  --bg-cream: #f9f7f2;
  --text-dark: #2c2828;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: "Cormorant Garamond", serif;
}

.btn-luxury {
  background-color: var(--brand-terra);
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-luxury:hover {
  background-color: #8a4b3d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(166, 94, 78, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

#navbar.nav-solid #nav-bg,
body[data-nav="solid"] #nav-bg {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(249, 247, 242, 0.92)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(26, 24, 24, 0.08);
}
body[data-nav="solid"] #mobile-menu-btn {
  color: #2c2828;
}
body[data-nav="solid"] #nav-logo {
  filter: invert(1) brightness(0);
}

#site-footer {
  margin-top: auto;
}

.image-reveal-wrapper {
  overflow: hidden;
}
.image-reveal {
  transform: scale(1.1);
  transition: transform 1.5s ease-out;
}
.group:hover .image-reveal {
  transform: scale(1.05);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.glass-nav.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.service-card {
  background: #fff;
  transition: all 0.4s ease;
  border: 1px solid rgba(166, 94, 78, 0.1);
}
.service-card:hover {
  border-color: var(--brand-terra);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(166, 94, 78, 0.1);
}

.toggle-checkbox:checked + .toggle-label {
  display: inline-block;
  background-color: var(--brand-terra);
}
.toggle-label {
  display: inline-block;
  width: 44px;
  height: 24px;
  background-color: #ccc;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-checkbox:checked + .toggle-label:after {
  transform: translateX(100%);
}
.toggle-checkbox {
  display: none;
}

.logo-dark {
  filter: invert(1) brightness(0) !important;
}

#mobile-menu {
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  header .bg-fixed {
    background-attachment: scroll !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .image-reveal {
    transition: none !important;
    transform: none !important;
  }
  .btn-luxury {
    transition: none !important;
  }
}
