/* ============================
   Alexa Cooper Tattoo — BOTANICAL DARK THEME
   Finished replacement style.css
   (keeps your current layout; only updates look/feel)
   ============================ */

:root{
  /* Core palette */
  --bg0: #07090b;                 /* near-black */
  --bg1: #0b1210;                 /* deep green-black */
  --panel: rgba(12, 18, 16, 0.78);
  --panel-strong: rgba(10, 16, 14, 0.92);
  --line: rgba(118, 141, 122, 0.30);

  --text: #f3f1ea;                /* warm ivory */
  --muted: rgba(243,241,234,0.72);

  --accent: #4da77d;              /* emerald */
  --accent-soft: #95c9a6;         /* sage */
  --cta1: #2f8f6a;                /* button green (deep) */
  --cta2: #66c79a;                /* button green (bright) */

  --shadow: rgba(0,0,0,0.55);
}

/* ============================
   Base styles / reset
   ============================ */

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);

  /* Moody botanical background */
  background:
    radial-gradient(1200px 800px at 18% 18%, rgba(77,167,125,0.14), transparent 60%),
    radial-gradient(900px 600px at 82% 22%, rgba(149,201,166,0.10), transparent 55%),
    radial-gradient(900px 700px at 55% 95%, rgba(77,167,125,0.08), transparent 65%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* Subtle texture – optional but clean */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.9) 1px, transparent 0);
  background-size: 26px 26px;
  z-index: 0;
}

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

a {
  color: inherit;
}

/* Wrapper spacing – vertical only, side padding will come from .page-wrap */
main {
  padding: 96px 0 64px;
}

/* Headings */
h1, h2, h3 {
  margin: 0 0 0.4rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 3vw + 1.4rem, 3rem);
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.1rem;
}

/* ============================
   Vines + page wrapper
   ============================ */

/* Decorative vine images on left & right */
.vine {
  position: fixed;
  top: 0;
  height: 100vh;
  width: auto;
  z-index: 0;
  pointer-events: none;

  /* more “planty” without screaming */
  opacity: 0.62;
  filter: saturate(1.15) contrast(1.05);
}

.vine-left {
  left: -140px;
}

.vine-right {
  right: -140px;
  transform: scaleX(-1);
}

/* Wrap all page content so it sits above vines and doesn't touch them */
.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 80px 64px;
  position: relative;
  z-index: 1;
}

/* On smaller screens, don't overdo the side padding */
@media (max-width: 800px) {
  .page-wrap {
    padding-inline: 16px;
  }
}

/* ============================
   Header / navigation
   ============================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;

  padding: 1rem 2rem;

  /* floating, no bar */
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 999px;

  border: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

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

.logo-name {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.main-nav a:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* ============================
   Hero section
   ============================ */

.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy p {
  margin-top: 0.75rem;
  font-size: 0.98rem;
  color: rgba(243,241,234,0.84);
  max-width: 520px;
}

.hero-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Hero image container */
.hero-highlight {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(77,167,125,0.12) 0, transparent 55%),
    linear-gradient(180deg, rgba(10,16,14,0.88), rgba(5,8,7,0.92));
  box-shadow: 0 24px 60px var(--shadow);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* Call-to-action button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;

  background: linear-gradient(135deg, var(--cta1), var(--cta2));
  color: #07110c;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;

  box-shadow: 0 12px 32px rgba(77,167,125,0.22);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 42px rgba(77,167,125,0.28);
}

.btn-center {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   Sections
   ============================ */

.section {
  max-width: 1080px;
  margin: 3.2rem auto 0;
  padding: 0 4px;
}

.section-intro {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: rgba(243,241,234,0.78);
  max-width: 640px;
}

/* About cards */
.about-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.about-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.60);
}

.about-card ul {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: rgba(243,241,234,0.84);
}

/* ============================
   Portfolio preview
   ============================ */

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.link-inline {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--accent-soft);
}

.link-inline:hover {
  text-decoration: underline;
  color: var(--text);
}

.portfolio-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.portfolio-item {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border-radius: 14px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.62);
}

.portfolio-item img {
  border-radius: 10px;
  object-fit: cover;
}

.portfolio-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: rgba(243,241,234,0.86);
  text-align: center;
}

/* Hide elements only on small screens */
@media (max-width: 700px) {
  .hide-on-mobile { display: none !important; }
}


/* ============================
   Booking steps
   ============================ */

.booking-steps {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.step-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.66);
}

.step-number {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(77,167,125,0.95);
  color: #07110c;
}

/* ============================
   Contact section
   ============================ */

.contact-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.contact-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border-radius: 14px;
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.66);
}

.contact-card a {
  color: rgba(243,241,234,0.90);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
  color: var(--text);
}

/* ============================
   Footer
   ============================ */

.site-footer {
  max-width: 1080px;
  margin: 3rem auto 0;
  padding: 1.5rem 16px 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ============================
   Responsive tweaks
   ============================ */

@media (max-width: 900px) {
  .site-header {
    padding: 0.9rem 0.2rem;
  }

  .main-nav {
    gap: 1rem;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-highlight {
    order: -1;
  }

  main {
    padding-top: 72px;
  }
}

@media (max-width: 520px) {
  .main-nav {
    gap: 0.75rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .logo-name {
    font-size: 0.82rem;
  }

  .logo-img {
    width: 46px;
    height: 46px;
  }
}
/* ============================
   RC-NextShift credit (footer)
   ============================ */
.rc-credit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 8px;
  opacity: 0.85;
}

.rc-logo{
  height:22px;
  width:auto;
  display:block;
}

