/* GLOBAL STYLES - taschenelite Pure Elegance */
:root {
  --bg-color: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.9);
  --primary-color: #000000;
  --secondary-color: #f9f9f9;
  --accent-color: #c5a059; /* Soft Gold */
  --text-color: #1a1a1a;
  --text-muted: #666666;
  --border-color: #e0e0e0;
  --font-serif: 'Libre Bodoni', serif;
  --font-sans: 'Montserrat', sans-serif;
  --container-width: 1100px;
  --transition: all 0.4s ease;
}

* {
  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.7;
  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 1.5rem;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader__dot {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 5px;
  animation: bounce 0.6s infinite alternate;
}

.preloader__dot:nth-child(2) { animation-delay: 0.2s; }
.preloader__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  to { transform: translateY(-20px); }
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

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

.header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98);
}

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

.nav {
  flex: 1;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

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

.logo__main span {
  font-style: italic;
  font-weight: 700;
  color: var(--accent-color);
}

.logo__sub {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-top: 0.5rem;
}

.nav__list {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 5px;
}

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

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

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

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

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  width: 24px;
  height: 1px;
  background-color: var(--primary-color);
  position: absolute;
  transition: var(--transition);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--primary-color);
  position: absolute;
  transition: var(--transition);
}

.hamburger-inner::before { top: -6px; }
.hamburger-inner::after { bottom: -6px; }

.hamburger.active .hamburger-inner { transform: rotate(45deg); }
.hamburger.active .hamburger-inner::before { top: 0; opacity: 0; }
.hamburger.active .hamburger-inner::after { bottom: 0; transform: rotate(-90deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.mobile-menu .nav__link {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* FOOTER */
.footer {
  background: var(--secondary-color);
  padding: 8rem 0 3rem;
  margin-top: 8rem;
  border-top: 1px solid var(--border-color);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 5rem;
}

.footer__title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

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

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

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

/* COOKIE POPUP */
.cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  max-width: 400px;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.cookie-popup__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cookie-popup__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-accept { 
  background: var(--primary-color); 
  color: #fff; 
}

.btn-decline { 
  background: transparent; 
  color: var(--primary-color); 
}

@media (max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .footer__grid { grid-template-columns: 1fr; gap: 3rem; }
  .cookie-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100% - 2rem);
    padding: 2rem;
  }
  .cookie-popup__inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cookie-popup__actions { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; }
}
