/* =====================================================
   WORLD OF LUCY KAY
   Homepage - restored visual size + correct links v0.6
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #050604;
  color: #fff7e8;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none !important;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050604;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("gateway.webp") center center / cover no-repeat;
  transform: scale(1.01);
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 236, 170, 0.07), rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.62) 84%),
    linear-gradient(to bottom, rgba(0,0,0,0.30), rgba(0,0,0,0.08) 42%, rgba(0,0,0,0.70));
}

.gold-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(213, 174, 92, 0.56);
  z-index: 5;
  pointer-events: none;
}

#particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* HEADER - match previous version */

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 62px 0;
}

.main-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 46px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right a {
  color: rgba(255, 245, 220, 0.94) !important;
  text-decoration: none !important;
  font-family: "Cinzel", serif;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  transition: 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #f5d48a !important;
  text-shadow: 0 0 16px rgba(245, 212, 138, 0.55);
}

/* LK LOGO - previous size */

.logo {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: #f5d48a !important;
  text-decoration: none !important;
}

.logo-circle {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 174, 92, 0.92);
  border-radius: 50%;
  background: rgba(10, 14, 8, 0.52);
  color: #f5d48a;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.86rem;
  line-height: 1;
  box-shadow:
    0 0 20px rgba(203, 164, 91, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* CENTER TITLE - restored smaller size */

.hero-content {
  position: absolute;
  left: 50%;
  top: 46.2%;
  transform: translate(-50%, -50%);
  z-index: 8;
  width: min(820px, 90vw);
  text-align: center;
}

.welcome {
  margin-bottom: 18px;
  color: rgba(255, 245, 220, 0.92);
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 0.54em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.title {
  color: #fff7e8;
  font-family: "Cinzel", serif;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.78),
    0 0 20px rgba(255, 240, 190, 0.10);
}

.title-top,
.title-bottom {
  display: block;
  font-size: clamp(3.15rem, 5.25vw, 5.65rem);
  letter-spacing: 0.12em;
  line-height: 0.88;
}

.title-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 17px 0 11px;
}

.line {
  width: 142px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(224, 180, 89, 0.82), transparent);
}

.of {
  color: #fff2d0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 3.05vw, 3.15rem);
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0;
  line-height: 0.8;
}

.subtitle {
  margin-top: 26px;
  color: rgba(255, 245, 220, 0.92);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
}

.atlas-button {
  position: relative;
  display: inline-block;
  margin-top: 48px;
  min-width: 390px;
  padding: 17px 42px;
  border: 1px solid rgba(224, 180, 89, 0.88);
  border-radius: 7px;
  background: rgba(12, 42, 22, 0.72);
  color: #f6d99a !important;
  text-decoration: none !important;
  font-family: "Cinzel", serif;
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  box-shadow:
    0 0 18px rgba(224, 180, 89, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.atlas-button::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(224, 180, 89, 0.26);
  border-radius: 4px;
  pointer-events: none;
}

.atlas-button::after {
  content: "✦";
  display: block;
  margin-top: 3px;
  color: #f5d48a;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.atlas-button:hover {
  transform: translateY(-4px);
  background: rgba(13, 53, 26, 0.82);
  color: #ffe2a3 !important;
  border-color: rgba(245, 203, 112, 0.98);
  box-shadow:
    0 0 24px rgba(224, 180, 89, 0.34),
    0 18px 40px rgba(0, 0, 0, 0.34);
}

/* BOTTOM ICONS - line icons, same feel as previous */

.bottom-icons {
  position: absolute;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(50px, 7vw, 104px);
  width: min(1120px, 92vw);
}

.bottom-icons a,
.icon-item,
.icon-item:link,
.icon-item:visited,
.icon-item:hover,
.icon-item:active {
  display: block;
  width: 100px;
  text-align: center;
  text-decoration: none !important;
  color: rgba(255, 245, 220, 0.92) !important;
  border: 0 !important;
  outline: none !important;
  transition: 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-5px);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  color: rgba(245, 212, 138, 0.95) !important;
  text-decoration: none !important;
  text-shadow: 0 0 14px rgba(245, 212, 138, 0.28);
  transition: 0.3s ease;
}

.line-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-item p,
.bottom-icons p {
  margin: 0;
  color: rgba(255, 245, 220, 0.92) !important;
  text-decoration: none !important;
  font-family: "Cinzel", serif;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
  transition: 0.3s ease;
}

.icon-item:hover .line-icon,
.icon-item:hover p {
  color: #f5d48a !important;
  text-shadow: 0 0 15px rgba(245, 212, 138, 0.58);
}

/* QUOTE - centered under icons, never on the right */

.quote {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 18px !important;
  transform: translateX(-50%) !important;
  z-index: 8 !important;
  width: 90% !important;
  margin: 0 !important;
  color: rgba(255, 245, 220, 0.92) !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.24rem !important;
  font-style: italic !important;
  line-height: 1.2 !important;
  text-align: center !important;
  white-space: normal !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.86) !important;
}

/* ABOUT - matching designed section */

.about-section {
  position: relative;
  min-height: 74vh;
  padding: 120px 24px;
  background:
    radial-gradient(circle at center, rgba(224, 180, 89, 0.10), transparent 54%),
    linear-gradient(rgba(5, 7, 4, 0.82), rgba(5, 7, 4, 0.92)),
    url("gateway.webp") center center / cover no-repeat;
  display: grid;
  place-items: center;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(203, 164, 91, 0.38);
  pointer-events: none;
}

.about-card {
  position: relative;
  z-index: 2;
  width: min(880px, 90vw);
  padding: 52px 58px;
  border: 1px solid rgba(203, 164, 91, 0.50);
  background: rgba(10, 15, 8, 0.72);
  backdrop-filter: blur(5px);
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 22px 55px rgba(0, 0, 0, 0.42);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(224, 180, 89, 0.18);
  pointer-events: none;
}

.about-kicker {
  margin-bottom: 16px;
  color: rgba(245, 212, 138, 0.95);
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.about-card h2 {
  color: #fff7e8;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.72);
}

.about-card p:not(.about-kicker) {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 245, 220, 0.88);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.45;
}

.about-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-button {
  position: relative;
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid rgba(224, 180, 89, 0.82);
  background: rgba(14, 30, 14, 0.78);
  color: #f6d99a !important;
  text-decoration: none !important;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.about-button.secondary {
  background: rgba(10, 12, 8, 0.42);
}

.about-button::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(224, 180, 89, 0.22);
  pointer-events: none;
}

.about-button:hover {
  background: rgba(12, 25, 12, 0.92);
  color: #ffe2a3 !important;
  border-color: rgba(245, 203, 112, 0.95);
  box-shadow:
    0 0 20px rgba(224, 180, 89, 0.34),
    0 16px 36px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header,
.hero-content,
.bottom-icons,
.quote,
.about-card {
  animation: fadeUp 1.2s ease both;
}

.hero-content { animation-delay: 0.14s; }
.bottom-icons { animation-delay: 0.32s; }
.quote { animation-delay: 0.48s; }

/* RESPONSIVE */

@media (max-width: 1100px) {
  .site-header {
    padding: 24px 38px 0;
  }

  .nav-left,
  .nav-right {
    gap: 24px;
  }

  .bottom-icons {
    gap: 34px;
    width: 94vw;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 920px;
  }

  .main-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .logo {
    order: -1;
    width: 66px;
    height: 66px;
  }

  .logo-circle {
    width: 66px;
    height: 66px;
    font-size: 1.85rem;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .nav-left a,
  .nav-right a {
    font-size: 0.72rem;
  }

  .hero-content {
    top: 44%;
  }

  .title-top,
  .title-bottom {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .line {
    width: 80px;
  }

  .atlas-button {
    min-width: 0;
    width: min(390px, 88vw);
  }

  .bottom-icons {
    flex-wrap: wrap;
    bottom: 74px;
    gap: 24px 34px;
  }

  .bottom-icons a,
  .icon-item {
    width: 92px;
  }

  .quote {
    bottom: 24px !important;
  }

  .about-card {
    padding: 38px 26px;
  }

  .about-button {
    width: 100%;
    text-align: center;
  }
}