





      /* Prints table — desktop */

      /* Prints icon grid */
      .prints-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.07);
        overflow: hidden;
      }
      @media (min-width: 640px)  { .prints-grid { grid-template-columns: repeat(3, 1fr); } }
      @media (min-width: 1024px) { .prints-grid { grid-template-columns: repeat(5, 1fr); } }

      .print-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 1.75rem 1rem;
        background: rgba(0,0,0,0.35);
        transition: background 0.25s ease;
      }
      .print-item:hover { background: rgba(255,255,255,0.06); }

      .print-icon {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 0.25rem;
      }
      .print-name {
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-on-surface, #e8e3dd);
      }
      .print-detail {
        font-size: 0.75rem;
        line-height: 1.5;
        color: var(--color-on-surface-variant, #a09890);
      }

#me{
    background-color: #404040; margin-bottom:10em; margin-top: 10em;
}

#gallery {padding-top:5em!important;}
      
.contact-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px;
  background: #1c1c1c;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: white;
}

.contact-form textarea {
  height: 180px;
}

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.social-card {
  background: var(--card-color);
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  transition: 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--muted-color);
}

/* Nav scroll fill — global, all screen sizes */
.banner.scrolled {
  background: rgba(29,35,43, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }
} 



/* ══════════════════════════════════════════════════════
   DESIGN TOKENS  (replaces external css/style.css)
   ══════════════════════════════════════════════════════ */
:root {
  /* Spacing scale */
  --stack-sm:  0.5rem;
  --stack-md:  1rem;
  --stack-lg:  2rem;
  --gutter:    1rem;
  --margin-desktop: 4rem;
  --container-max: 1400px;

  /* Typography scale */
  --display-lg:        clamp(2.2rem, 5vw, 4rem);
  --display-lg-mobile: clamp(1.6rem, 6vw, 2.6rem);
  --headline-xl:       clamp(1.5rem, 3vw, 2.25rem);
  --headline-lg:       clamp(1.1rem, 2vw, 1.5rem);
  --headline-md:       clamp(0.85rem, 1.5vw, 1.05rem);
  --body-lg:           1rem;
  --body-md:           0.9375rem;
  --label-md:          0.8125rem;
  --label-sm:          0.75rem;

  /* Colors */
  --on-surface:           #e5e2e1;
  --on-surface-variant:   #a8a4a2;
  --primary:              #9E8E7E;
  --tertiary:             #8aad94;
  --surface-container:    #1a1a1a;
  --surface-container-low:#161616;
  --surface-container-lowest: #0a0a0a;
  --outline-variant:      rgba(255,255,255,0.12);
  --background:           #0F0F0F;
}

/* ══ Base reset ══ */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
  background-color: var(--background);
  color: var(--on-surface);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  margin: 0;
}

/* ══ Utility token classes ══ */
.font-display-lg    { font-family: 'Playfair Display', serif; font-size: var(--display-lg); line-height: 1.12; font-weight: 700; }
.font-headline-xl   { font-family: 'Playfair Display', serif; font-size: var(--headline-xl); line-height: 1.2; font-weight: 600; }
.font-headline-lg   { font-size: var(--headline-lg); font-weight: 600; line-height: 1.25; }
.font-headline-md   { font-size: var(--headline-md); font-weight: 600; line-height: 1.3; }
.font-body-lg       { font-size: var(--body-lg); line-height: 1.6; }
.font-body-md       { font-size: var(--body-md); line-height: 1.6; }
.font-label-md      { font-size: var(--label-md); font-weight: 500; letter-spacing: 0.08em; }
.font-label-sm      { font-size: var(--label-sm); line-height: 1.4; }

.text-display-lg         { font-size: var(--display-lg); }
.text-display-lg-mobile  { font-size: var(--display-lg-mobile); }
.text-headline-xl        { font-size: var(--headline-xl); }
.text-headline-lg        { font-size: var(--headline-lg); }
.text-headline-md        { font-size: var(--headline-md); }
.text-body-lg            { font-size: var(--body-lg); }
.text-body-md            { font-size: var(--body-md); }
.text-label-md           { font-size: var(--label-md); }
.text-label-sm           { font-size: var(--label-sm); }
.text-on-surface         { color: var(--on-surface); }
.text-on-surface-variant { color: var(--on-surface-variant); }
.text-primary            { color: var(--primary); }
.text-tertiary           { color: var(--tertiary); }

.p-stack-md  { padding: var(--stack-md); }
.p-stack-lg  { padding: var(--stack-lg); }
.py-stack-lg { padding-top: var(--stack-lg); padding-bottom: var(--stack-lg); }
.mb-stack-lg { margin-bottom: var(--stack-lg); }
.mb-stack-md { margin-bottom: var(--stack-md); }
.gap-gutter  { gap: var(--gutter); }
.px-margin-desktop { padding-left: var(--margin-desktop); padding-right: var(--margin-desktop); }
/*.max-w-container-max { max-width: var(--container-max); }*/
.bg-background           { background-color: var(--background); }
.bg-surface-container    { background-color: var(--surface-container); }
.bg-surface-container-low       { background-color: var(--surface-container-low); }
.bg-surface-container-lowest    { background-color: var(--surface-container-lowest); }
.border-outline-variant  { border-color: var(--outline-variant); }

/* ══ Component styles ══ */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.ghost-border   { border: 1px solid rgba(255,255,255,0.15); }
.glass-overlay  { background: linear-gradient(50deg, rgba(15,15,15,0) 0%, rgba(15,15,15,0.5) 100%); }
.glass-overlay-me { background: linear-gradient(-50deg, rgba(15,15,15,0) 0%, rgba(15,15,15,1) 100%); }
.moss-accent    { border-left: 2px solid #4A5D4E; }
/*.banner         { background-color: rgba(29,35,43,1); }*/
  footer {    background-color: rgba(29, 35, 43, 1); padding:1em 4em;}

/* ══ Selection ══ */
::selection { background: #4A5D4E; color: #fff; }

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .nav-bar { padding: 0 var(--margin-desktop); height: 70px; }
}
.nav-logo img { width: auto; display: block; }
.nav-insta img {  width: auto; display: block; }

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
  padding: 0.4rem;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) { .hamburger-btn { display: none; } }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 10, 0.98);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav-overlay.open { display: flex !important; opacity: 1; }

.nav-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--on-surface);
  cursor: pointer;
  padding: 0.4rem;
  z-index: 310;
}
.mobile-nav-overlay .nav-logo img { height: 40px; margin-bottom: 0.5rem; }
.mobile-nav-overlay a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-surface);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-overlay a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════
   HERO BANNER BLOCKS — fluid, viewport-relative
   ══════════════════════════════════════════════════════ */
/* Desktop: absolute-positioned, anchored to right/left */
.bannerCont {
  text-align: right;
  width: min(860px, 60vw);
  position: absolute;
  right: clamp(2rem, 6vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
}
.bannerMe {
  text-align: left;
  width: min(860px, 60vw);
  position: absolute;
  left: clamp(2rem, 8vw, 8%);
  top: 50%;
  transform: translateY(-50%);
}

.bannerCont h1,
.bannerMe h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--display-lg);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.bio-text {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: rgba(229,226,225,0.85);
}

/* ══════════════════════════════════════════════════════
   GALLERY & SECTIONS
   ══════════════════════════════════════════════════════ */
.gallery  { padding-top: clamp(3rem, 8vw, 8rem); }
.contact  { margin-top: clamp(2rem, 6vw, 6rem); }

/* ── Contact form ── */
.contact input,
.contact textarea {
  color: var(--on-surface);
  border-bottom-color: var(--outline-variant);
}
.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-bottom-color: var(--tertiary);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (768 – 1023px)
   ══════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Banner — shorten width so it doesn't bleed */
  .bannerCont,
  .bannerMe {
    width: min(680px, 75vw);
    top: 50%;
    transform: translateY(-50%);
  }



  .bannerCont { right: clamp(1.5rem, 4vw, 3rem); }
  .bannerMe   { left:  clamp(1.5rem, 4vw, 3rem); }

  /* Reduce hero headline on tablets */
  .bannerCont h1,
  .bannerMe h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  /* Gallery — 2-col on tablet instead of 12-col chaos */
  .grid.grid-cols-1.md\:grid-cols-12 {
    grid-template-columns: repeat(6, 1fr) !important;
  }

  /* Smaller nav padding on tablet */
  .px-margin-desktop { padding-left: 2rem; padding-right: 2rem; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 767px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Show hamburger, hide desktop links */
  .hamburger-btn { display: flex !important; }

  /* Remove desktop padding */
  .px-margin-desktop { padding-left: 1rem !important; padding-right: 1rem !important; }

  /* ── Hero sections ── */
  section.relative.h-screen {
    height: auto !important;
    min-height: 100svh;
  }
  /* Inner flex container — push content toward bottom */
  section.relative.h-screen > .relative.z-20 {
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding: 80px 1.25rem 2.5rem !important;
  }

  /* Banner blocks — flow naturally (remove absolute) */
  .bannerCont,
  .bannerMe {
    position: relative !important;
    width: 100% !important;
    inset: auto !important;
    transform: none !important;
    text-align: left !important;
    padding: 0 !important;
  }

  /* Hero headline */
  .bannerCont h1,
  .bannerMe h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
  }

  /* Bio text */
  .bio-text {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    margin-top: 0.5rem;
  }

  /* "Me" section — allow scroll when bio is long */
  #me > .relative.z-20 {
    overflow-y: auto;
    padding-bottom: 2rem !important;
  }

  /* Gallery & contact spacing */
  .gallery  { padding-top: 2rem !important; }
  .contact  { margin-top: 2rem !important; }

  /* Typography scale-down */
  .font-headline-xl,
  .text-headline-xl { font-size: 1.4rem !important; }
  .font-headline-lg,
  .text-headline-lg { font-size: 1rem !important; }
  .font-headline-md,
  .text-headline-md { font-size: 0.85rem !important; line-height: 1.2 !important; }
  .font-label-sm,
  .text-label-sm    { font-size: 0.65rem !important; line-height: 1.35 !important; }

  /* Gallery grid — 2 columns */
  .grid.grid-cols-1.md\:grid-cols-12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }
  /* Wide (6-span) cards span both columns */
  [class*="md:col-span-6"] { grid-column: span 2 !important; }
  /* 4-span cards: 1 column each */
  [class*="md:col-span-4"] { grid-column: span 1 !important; }
  /* 3-span cards: 1 column each */
  [class*="md:col-span-3"] { grid-column: span 1 !important; }

  /* Featured Collections grid — 2 cols */
  main > .grid.grid-cols-1 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  /* Contact form */
  .contact [class*="bg-surface-container-low"] { padding: 1.25rem !important; }
  .contact button[type="submit"] { width: 100% !important; text-align: center !important; }

  /* Footer stacks vertically */


  footer .flex { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 1rem !important; }

  /* Prevent horizontal scroll */
  body, main, section { max-width: 100vw; }
}

/* Ensure all gallery/hero images cover their containers */
img { display: block; }
.relative img { object-fit: cover; }

/* ══ Hero background images ══ */
.hero-home > .absolute.inset-0.z-0 {
  background-image: url('../images/homePage_Img_5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-story > .absolute.inset-0.z-0 {
  background-image: url('../images/me.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* p-stack-md needs real padding values */
.p-stack-md { padding: 1rem; }

/* space-y-2 fallback */
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Submit button */
button[type="submit"] {
  background: #7D6B5D;
  color: #fff;
  padding: 1rem 3rem;
  font-size: var(--label-md);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: padding 0.3s;
}
button[type="submit"]:hover { padding-left: 3.5rem; padding-right: 3.5rem; }

/* ══ md: breakpoint overrides for custom token classes (Tailwind CDN can't auto-generate these) ══ */
@media (min-width: 768px) {
  .md\:px-margin-desktop { padding-left: var(--margin-desktop) !important; padding-right: var(--margin-desktop) !important; }
  .md\:text-display-lg   { font-size: var(--display-lg) !important; }
  .md\:text-aboutme-lg   { font-size: 1rem !important; }
  .md\:grid-cols-12      { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
}

/* Margin utilities */
.mb-stack-md { margin-bottom: 1rem; }
.mb-stack-lg { margin-bottom: 2rem; }
.py-stack-lg { padding-top: 2rem; padding-bottom: 2rem; }

@media (max-width: 450px) {

  .py-28 {
    padding-top: 26rem!important;
 
}

.py-24 {  padding-bottom: 0rem!important;}

.py-14 {padding:2em 1em !important;}

.hero-story > .absolute.inset-0.z-0 {
    background-image: url(../images/me.jpg);
    background-size: 700px;
    background-position: top; 
    background-position-x: -282px;
    background-repeat: no-repeat;
}

  .nav-logo img {height:60px; width: auto; display: block; }
  .grid.grid-cols-1.md\:grid-cols-12,
  main > .grid.grid-cols-1 {
    grid-template-columns: 1fr !important;
  }
  [class*="md:col-span-6"],
  [class*="md:col-span-4"],
  [class*="md:col-span-3"] { grid-column: span 1 !important; }
}

/* ══ Large screens (≥ 1400px) ══ */
/*@media (min-width: 1400px) {
  .bannerCont { right: calc((100vw - var(--container-max)) / 2 + 4rem); }
  .bannerMe   { left:  calc((100vw - var(--container-max)) / 2 + 4rem); }
}
*/
