/* GLOBAL STYLES - SchuhWeltz Premium */
:root {
  --bg-color: #0a0a0a;
  --header-bg: rgba(10, 10, 10, 0.8);
  --primary-color: #d4af37; /* Versace Gold */
  --secondary-color: #1a1a1a;
  --text-color: #ffffff;
  --text-muted: #a0a0a0;
  --accent-color: #f5f5f5;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 1px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader__ring {
  width: 50px;
  height: 50px;
  border: 2px solid var(--glass-border);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* HEADER & NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 15px;
  border-left: 2px solid var(--primary-color);
}

.logo__main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary-color);
  line-height: 0.9;
  letter-spacing: 2px;
}

.logo__sub {
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 400;
}

.nav__list {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition);
}

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.nav__cta {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.7rem 1.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--primary-color);
  margin-bottom: 8px;
  transition: var(--transition);
}

.hamburger span:last-child { margin-bottom: 0; }

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 2rem;
}

.side-menu.active {
  right: 0;
}

.side-menu .nav__link {
  font-size: 2rem;
  color: var(--text-color);
  font-family: var(--font-serif);
}

.side-menu .nav__cta {
  font-size: 1.2rem;
  padding: 1.5rem 4rem;
}

/* COOKIE POPUP */
.cookie-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background: var(--secondary-color);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-popup__title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.cookie-popup__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cookie-popup__actions {
  display: flex;
  gap: 1rem;
}

.cookie-btn-accept {
  flex: 1;
  padding: 0.8rem;
  background: var(--primary-color);
  color: #000;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-decline {
  flex: 1;
  padding: 0.8rem;
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #050505;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__col-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

.footer__links li {
  margin-bottom: 0.8rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cookie-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}
