/* ============================================
   TEJEGA PHOTOGRAPHY — SHARED STYLES
   tejegaphotography.ca
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Pinyon+Script&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --charcoal: #2C2C2A;
  --charcoal-dark: #1A1917;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --cream: #F1EFE8;
  --white: #FAFAF8;
  --mid: #5F5E5A;
  --light: #B4B2A9;
  --border: rgba(201,168,76,0.25);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; font-weight: 300; color: var(--charcoal); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p { font-size: 0.875rem; line-height: 1.8; color: var(--mid); }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-dark { background: var(--charcoal); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.gold-line { width: 50px; height: 1px; background: var(--gold); margin: 1.5rem auto; opacity: 0.6; }
.gold-line-left { margin-left: 0; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; padding: 0.9rem 2.2rem; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline-light { border: 1px solid rgba(241,239,232,0.4); color: var(--cream); background: transparent; }
.btn-outline-light:hover { background: rgba(241,239,232,0.1); }

/* ── NAVIGATION ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.2rem 0; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(26,25,23,0.97); backdrop-filter: blur(10px); padding: 0.8rem 0; border-bottom: 0.5px solid var(--border); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo-ring { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.nav-logo-ring::before { content: ''; position: absolute; width: 31px; height: 31px; border-radius: 50%; border: 0.5px dashed rgba(201,168,76,0.4); }
.nav-logo-tj { font-family: 'Pinyon Script', cursive; font-size: 18px; color: var(--gold-light); position: relative; z-index: 2; line-height: 1; }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--white); letter-spacing: 0.2em; text-transform: uppercase; line-height: 1; }
.nav-brand-sub { font-family: 'Montserrat', sans-serif; font-size: 0.55rem; font-weight: 400; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; margin-top: 0.15rem; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,239,232,0.7); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-book { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.6rem 1.4rem; border: 1px solid var(--gold); color: var(--gold); transition: all 0.3s; }
.nav-book:hover { background: var(--gold); color: var(--charcoal); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; display: block; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--charcoal-dark); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--cream); letter-spacing: 0.1em; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.5rem; color: var(--light); cursor: pointer; background: none; border: none; }

/* ── FOOTER ── */
footer { background: var(--charcoal-dark); padding: 4rem 0 2rem; border-top: 0.5px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: 'Pinyon Script', cursive; font-size: 2.5rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; color: var(--light); margin-bottom: 1.2rem; }
.footer-contact p { font-size: 0.8rem; color: var(--light); margin-bottom: 0.4rem; }
.footer-contact a { color: var(--gold); transition: opacity 0.3s; }
.footer-contact a:hover { opacity: 0.7; }
.footer-heading { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.8rem; color: var(--light); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--light); font-size: 0.75rem; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 0.5px solid var(--border); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.7rem; color: var(--mid); }
.footer-bottom a { color: var(--gold); }

/* ── GOLD BORDER CARD ── */
.gold-border-box { border: 0.5px solid var(--border); padding: 2.5rem; position: relative; }
.gold-border-box::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px; border: 0.5px solid rgba(201,168,76,0.1); pointer-events: none; }

/* ── PAGE HERO ── */
.page-hero { background: var(--charcoal); padding: 10rem 0 5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.08); }
.page-hero::after { content: ''; position: absolute; bottom: -100px; right: -80px; width: 350px; height: 350px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.06); }
.page-hero h1 { color: var(--cream); position: relative; z-index: 2; }
.page-hero p { color: var(--light); position: relative; z-index: 2; max-width: 500px; margin: 1rem auto 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4rem 0; }
}
