/* OMGAdult — original site styles (mobile-first base) */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #f0f0f0;
  line-height: 1.6;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content { flex: 1 0 auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #ff8a00;
  color: #140f30;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  z-index: 2000;
}

.skip-link:focus { left: 10px; }

header {
  background: rgba(15, 12, 41, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.45rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-switch a {
  color: #8a8aa3;
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-switch a.is-active,
.lang-switch a[aria-current="page"] {
  color: #ff8a00;
  border-color: rgba(255, 138, 0, 0.45);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f0f0f0;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

nav[data-main-nav] {
  flex-basis: 100%;
  width: 100%;
}

nav ul {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

nav.is-open ul {
  display: flex;
}

nav a {
  display: block;
  padding: 0.65rem 0;
  color: #d1d1e9;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover,
nav a[aria-current="page"] {
  color: #ff8a00;
}

.hero {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.25rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 6vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: #b8b8d1;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  background: linear-gradient(90deg, #e52e71, #ff8a00);
  color: #fff;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(229, 46, 113, 0.4);
}

.cta-button:hover {
  filter: brightness(1.05);
}

.cta-button:focus-visible,
nav a:focus-visible,
.gallery-item:focus-visible,
.footer-links a:focus-visible,
.contact-item a:focus-visible,
.cookie-btn:focus-visible {
  outline: 2px solid #ff8a00;
  outline-offset: 3px;
}

.hero-badges {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-badges li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1d1e9;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.image-gallery-section {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.25rem;
}

.image-gallery-section h2 {
  text-align: center;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.25rem;
}

.reviews-section h2 {
  text-align: center;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e52e71, #ff8a00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.review-author { font-weight: 600; }

.review-text {
  color: #d1d1e9;
  font-style: italic;
}

.legal-main {
  max-width: 800px;
  margin: 2rem auto 3rem;
  padding: 0 1.25rem;
}

.legal-main h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  color: #d1d1e9;
}

.legal-box h2 {
  font-size: 1.1rem;
  color: #fff;
  margin: 1.25rem 0 0.5rem;
}

.legal-box h2:first-child { margin-top: 0; }

.legal-box p,
.legal-box ul {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-box ul { padding-left: 1.25rem; }

.legal-box a { color: #ff8a00; }

footer {
  background: rgba(10, 8, 28, 0.95);
  padding: 2rem 1.25rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-links h3,
.footer-contact h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: #b8b8d1;
  text-decoration: none;
}

.footer-links a:hover { color: #ff8a00; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #b8b8d1;
}

.contact-item a {
  color: #b8b8d1;
  text-decoration: none;
}

.contact-item a:hover { color: #26a5e4; }

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #8a8aa3;
  font-size: 0.88rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 12, 41, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent.is-hidden { display: none; }

.cookie-text { color: #d1d1e9; font-size: 0.9rem; }

.cookie-buttons { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.cookie-btn {
  min-height: 2.75rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.cookie-btn.accept {
  background: linear-gradient(90deg, #00b09b, #96c93d);
  color: #fff;
}

.cookie-btn.decline {
  background: rgba(255, 255, 255, 0.1);
  color: #d1d1e9;
}

.age-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: #8a8aa3;
}

.age-note a { color: #ff8a00; }

@media (min-width: 768px) {
  header { padding: 1.2rem 2rem; }

  .menu-toggle { display: none; }

  nav[data-main-nav] {
    flex-basis: auto;
    width: auto;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
  }

  nav a { padding: 0.5rem 0; }

  .hero { margin: 3rem auto; padding: 0 2rem; }

  .image-gallery-section,
  .reviews-section { padding: 0 2rem; }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .cookie-consent {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
