/* ========== THEKLA JEWELRY - DARKER FULL WIDTH ========== */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500&display=swap");

:root {
  --bg-main: #050507;           /* DARKER BLACK */
  --bg-body: #1a1a1c;           /* DARKER BEIGE */
  --accent: #d98a5a;            /* DARKER GOLD */
  --accent-soft: #4a2a1f;       /* DARKER BROWN */
  --text-main: #f0ede9;         /* SLIGHTLY DARKER CREAM */
  --text-muted: #b8a89a;        /* DARKER MUTED */
  --btn-bg: #f5f2ee;            /* DARKER BUTTON */
  --btn-text: #0f0e0d;          /* DARKER TEXT */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* GLOBAL LAYOUT */
html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* WRAPPER FILLS AVAILABLE HEIGHT */
.page-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: visible;
  background: var(--bg-main);
  position: relative;
  flex: 1 0 auto;
  min-height: 0;       /* important: remove 100vh here */
}

/* FOOTER STICKS TO BOTTOM OF WRAPPER */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 50px 32px 50px;
  background: radial-gradient(circle at top left, rgba(217,138,90,0.12), transparent 55%);
  color: var(--text-muted);
  font-size: 13px;
  margin-top: auto;    /* key line: pushes footer to bottom */
}


/* Hero container */
.hero-wrapper {
  background: var(--bg-main);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  position: relative;
}

/* ========== MOBILE HAMBURGER + DESKTOP NAV ========== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 60px;
  gap: 60px;
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.18em;
  font-size: 20px;
  text-decoration: none;
  color: var(--text-main);
}

/* Desktop nav */
.nav-links {
  display: flex;
  gap: 40px;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  font-weight: 400;
  padding: 8px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text-main);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  gap: 5px;
  margin-left: auto;
}

.menu-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--text-main);
  transition: 0.3s;
  border-radius: 2px;
}

/* X animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-3px, -3px);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 1000;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu-links a {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-main);
  text-decoration: none;
  padding: 16px;
}

/* ========== HERO ========== */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding: 0 60px 100px 60px;
  gap: 80px;
  align-items: start;
  min-height: 95vh;
  max-width: 1600px;
  margin: 0 auto;
}

/* Left / image block */
.hero-media {
  position: relative;
  overflow: hidden;
  height: 750px;
}

.hero-media-inner {
  position: relative;
  height: 100%;
}

.hero-media-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-main);
  border-top-left-radius: 320px;
  transform-origin: top left;
  transform: translateX(50%);
}

.hero-image {
  height: 100%;
  background-image: url("images/Thekla.jpg");
  background-size: cover;
  background-position: center 10%;
  clip-path: inset(100px 0 100px 100px round 0 0 0 0);
}

/* Right / content */
.hero-content {
  position: relative;
  padding: 140px 0 80px 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 750px;
}

.hero-eyebrow {
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 1.1;
  margin: 0 0 24px 0;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 420px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 12px;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.hero-line {
  margin-top: 80px;
  position: relative;
  height: 120px;
}

.hero-line svg {
  width: 100%;
  height: 100%;
}

.scroll-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow span {
  display: block;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  padding: 6px;
  transform: rotate(45deg) translateY(-1px);
}

/* DARKER Visual effects */
.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, #cc6633 0, transparent 55%);
  opacity: 0.28;
  top: 240px;
  right: 100px;
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  top: 260px;
  right: 140px;
  font-size: 52px;
  color: #cc6633;
}

/* ========== DARKER CONTENT SECTIONS ========== */

.content-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-main);
}

.section-header {
  margin-bottom: 48px;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 0 0 16px 0;
  line-height: 1.1;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Product Images */
.grid .product-card:nth-child(1) .product-image {
  background-image: url('images/Product1.png');
}

.grid .product-card:nth-child(2) .product-image {
  background-image: url('images/Product2.png');
}

.grid .product-card:nth-child(3) .product-image {
  background-image: url('images/Product3.jpg');
}

.grid .product-card:nth-child(4) .product-image {
  background-image: url('images/Product4.jpg');
}

/* Fallback styling */
.product-image {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* DARKER Product cards */
.product-card {
  background: #0f0f11;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s;
  cursor: pointer;
  border: 1px solid #1a1a1c;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.6);
  border-color: var(--accent);
}

.product-image {
  aspect-ratio: 1/1; /* ensures square images */
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin-bottom: 20px;
}

.product-name {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-main);
}

.product-meta {
  font-size: 15px;
  color: var(--text-muted);
}

/* Content blocks */
.text-block {
  max-width: 800px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 auto 48px;
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
  font-size: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-item-title {
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 18px;
}

/* DARKER Contact form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  font-size: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  background: #0f0f11;
  border-radius: 16px;
  border: 1px solid #1a1a1c;
  padding: 18px 20px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 138, 90, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  margin-top: 12px;
  border: none;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-text);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1200px) {
  .navbar,
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  /* MOBILE NAV */
  .navbar {
    justify-content: space-between;
    padding: 24px 40px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0 40px 80px 40px;
    gap: 60px;
  }

  .hero-media {
    height: 550px;
  }

  .hero-content {
    padding: 100px 0 60px 0;
    min-height: 550px;
  }

  .content-section {
    padding: 80px 40px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 20px 24px;
  }
  
  .hero {
    padding: 0 24px 60px 24px;
  }
  
  .hero-title {
    font-size: 52px;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 50px 32px 50px;
  background: radial-gradient(circle at top left, rgba(217,138,90,0.12), transparent 55%);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  min-width: 220px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.18em;
  font-size: 16px;
  color: var(--text-main);
  display: inline-block;
  margin-bottom: 6px;
}

.footer-tagline {
  margin: 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-meta {
  margin-left: auto;
  text-align: right;
  min-width: 200px;
}

.footer-meta p {
  margin: 0;
}

/* Footer responsive */
@media (max-width: 900px) {
  .site-footer {
    padding: 24px 30px 28px 30px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-meta {
    text-align: left;
    margin-left: 0;
  }
}
