/* ============================================================
   ROGUDA Fashion — About Page Styles
   Deploy to: assets/css/about.css
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: #0A0A0A; color: #F8F4EE; overflow-x: hidden; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --black: #0A0A0A;
  --charcoal: #141414;
  --dark: #1A1A1A;
  --off-white: #F8F4EE;
  --warm-gray: #8A8070;
  --border: rgba(201,168,76,0.16);
}

/* ── Loading Screen ── */
#pageLoader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { display: flex; flex-direction: column; align-items: center; gap: 20px; animation: loaderFadeIn .8s ease both; }
@keyframes loaderFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.loader-badge { width: 72px; height: 72px; border: 1.5px solid var(--gold); border-radius: 4px; overflow: hidden; box-shadow: 0 0 40px rgba(201,168,76,.15); }
.loader-badge img { width: 100%; height: 100%; object-fit: cover; }
.loader-wordmark { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; letter-spacing: 6px; text-transform: uppercase; color: var(--off-white); }
.loader-tagline { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-top: -10px; animation: loaderFadeIn .8s .2s ease both; }
.loader-bar-wrap { width: 180px; height: 1px; background: rgba(201,168,76,.15); margin-top: 48px; overflow: hidden; animation: loaderFadeIn .8s .3s ease both; }
.loader-bar { height: 100%; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light)); width: 0; animation: loadProgress 1.8s .4s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes loadProgress { to { width: 100%; } }
.loader-percent { font-size: 10px; letter-spacing: 3px; color: rgba(201,168,76,.5); margin-top: 12px; animation: loaderFadeIn .8s .4s ease both; }
.loader-corner { position: absolute; width: 28px; height: 28px; }
.loader-corner.tl { top: 40px; left: 40px; border-top: 1px solid rgba(201,168,76,.3); border-left: 1px solid rgba(201,168,76,.3); }
.loader-corner.tr { top: 40px; right: 40px; border-top: 1px solid rgba(201,168,76,.3); border-right: 1px solid rgba(201,168,76,.3); }
.loader-corner.bl { bottom: 40px; left: 40px; border-bottom: 1px solid rgba(201,168,76,.3); border-left: 1px solid rgba(201,168,76,.3); }
.loader-corner.br { bottom: 40px; right: 40px; border-bottom: 1px solid rgba(201,168,76,.3); border-right: 1px solid rgba(201,168,76,.3); }

/* ── Scroll To Top ── */
#scrollTop {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--black);
  border: none; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 900;
}
#scrollTop.show { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--gold-light); transform: translateY(-4px); }

/* ── Mobile Drawer ── */
#mobileDrawer { position: fixed; inset: 0; background: rgba(10,10,10,.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); z-index: 990; display: flex; flex-direction: column; padding: 84px 0 32px; transform: translateY(-100%); transition: transform .55s cubic-bezier(.76,0,.24,1); overflow-y: auto; }
#mobileDrawer a:not(.drawer-cta) { font-family: 'Playfair Display', serif; font-size: 28px; color: rgba(248,244,238,.5); text-decoration: none; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; text-align: center; transition: color .3s ease; }
#mobileDrawer a:not(.drawer-cta):hover, #mobileDrawer a:not(.drawer-cta).active { color: #F8F4EE; }
.drawer-cta { margin: 28px 32px 0 !important; background: var(--gold) !important; color: var(--black) !important; font-family: 'Outfit', sans-serif !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 3px !important; text-transform: uppercase !important; padding: 15px !important; text-align: center !important; display: flex !important; justify-content: center !important; border-bottom: none !important; transition: background .3s ease !important; }
.drawer-cta:hover { background: var(--gold-light) !important; }

/* ── Navigation ── */
.nav-cinematic {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 24px 60px;
  display: flex; align-items: center; transition: all .4s ease;
}
.nav-cinematic.scrolled {
  padding: 14px 60px;
  background: rgba(10,10,10,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container { width: 100%; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge { width: 46px; height: 46px; border: 1.5px solid var(--gold); border-radius: 4px; overflow: hidden; flex-shrink: 0; transition: background .3s ease; }
.logo-badge img { width: 100%; height: 100%; object-fit: cover; }
.logo:hover .logo-badge { background: rgba(201,168,76,.15); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--off-white); letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 4px; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 1px; color: rgba(248,244,238,.7); text-decoration: none; padding: 6px 12px; transition: color .3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 12px; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: calc(100% - 24px); }
.nav-btn-outline { border: 1px solid rgba(201,168,76,.4) !important; border-radius: 2px; color: var(--gold) !important; padding: 7px 16px !important; }
.nav-btn-outline::after { display: none !important; }
.nav-btn-outline:hover { background: rgba(201,168,76,.1) !important; }
.nav-btn-gold { background: var(--gold) !important; color: var(--black) !important; border-radius: 2px; font-weight: 600 !important; padding: 8px 20px !important; }
.nav-btn-gold::after { display: none !important; }
.nav-btn-gold:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--off-white); transition: all .3s ease; }

/* ── Sections ── */
.section-cinematic { padding: 100px 0; }
.section-light { background: var(--dark); }
.section-goldish {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 160px 0 100px;
}
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); font-style: italic; }

.section-label {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 700;
  line-height: 1.2; color: var(--off-white); margin-bottom: 20px;
}
.lead {
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 300;
  line-height: 1.85; color: rgba(248,244,238,.72);
}

/* ── Section Header ── */
.section-header-cinematic { margin-bottom: 60px; }

/* ── Values Grid ── */
.values-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(201,168,76,.06);
}
.value-card {
  background: var(--dark); padding: 44px 32px;
  position: relative; transition: background .4s ease;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { background: #1e1e1e; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold-light); margin-bottom: 12px; }
.value-card p  { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--warm-gray); }

/* ── CTA Section ── */
.cta-cinematic {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0; text-align: center;
}
.cta-cinematic h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  color: var(--off-white); line-height: 1.2; margin-bottom: 16px;
}
.cta-cinematic p { font-size: 15px; font-weight: 300; color: var(--warm-gray); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--gold); color: var(--black);
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; padding: 16px 44px; display: inline-block; transition: all .3s ease;
}
.btn-cta-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,.28); }
.btn-cta-secondary {
  border: 1px solid rgba(248,244,238,.3); color: var(--off-white);
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; padding: 16px 44px; display: inline-block; transition: all .3s ease;
}
.btn-cta-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── Footer ── */
.footer-cinematic { background: var(--black); border-top: 1px solid rgba(201,168,76,.12); padding: 80px 0 0; }
.footer-container { width: 90%; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.6fr auto; gap: 60px; padding-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { font-size: 13px; color: var(--warm-gray); line-height: 1.6; }
.footer-contact a { color: var(--gold-light); text-decoration: none; transition: color .3s ease; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact strong { color: var(--off-white); margin-right: 6px; }
.footer-nav { list-style: none; margin-top: 6px; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a { font-size: 13px; color: var(--warm-gray); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color .3s ease; }
.footer-nav a::before { content: ''; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-nav a:hover::before { width: 14px; }
.newsletter-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); margin-bottom: 10px; }
.newsletter-text { font-size: 13px; color: var(--warm-gray); line-height: 1.6; margin-bottom: 18px; }
.newsletter-form .input-group { display: flex; border: 1px solid rgba(201,168,76,.24); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 12px 16px; font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--off-white); }
.newsletter-form input::placeholder { color: var(--warm-gray); }
.newsletter-form input:focus { outline: none; }
.btn-subscribe { background: var(--gold); border: none; padding: 0 18px; color: var(--black); font-size: 12px; font-weight: 600; cursor: pointer; transition: background .3s ease; display: flex; align-items: center; gap: 6px; }
.btn-subscribe:hover { background: var(--gold-light); }
.consent-note { font-size: 10px; color: rgba(138,128,112,.5); margin-top: 10px; line-height: 1.5; }
.footer-social { display: flex; gap: 10px; align-self: start; margin-top: 4px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,.24); display: flex; align-items: center; justify-content: center; color: var(--warm-gray); text-decoration: none; font-size: 14px; transition: all .3s ease; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; }
.footer-bottom .copyright { width: 90%; max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.footer-bottom p { font-size: 11px; color: rgba(138,128,112,.5); letter-spacing: .5px; }
.copyright-links a { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(138,128,112,.45); text-decoration: none; margin: 0 8px; transition: color .3s ease; }
.copyright-links a:hover { color: var(--gold); }
.footer-credentials { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,.4); }
.footer-credentials .divider { color: rgba(201,168,76,.2); }
.copyright-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 2px; margin-top: 8px !important; font-size: 0; }
@media (max-width: 768px) {
  #scrollTop { bottom: 20px; left: 16px; right: auto; }
}
@media (max-width: 540px) {
  .footer-credentials { flex-direction: column !important; gap: 6px !important; }
  .footer-credentials .divider { display: none !important; }
  footer { padding-bottom: 80px; }
}

/* ── Scroll Reveal ── */
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .nav-cinematic, .nav-cinematic.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .copyright { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .newsletter-form .input-group {
    flex-direction: column;
    border: none;
    gap: 10px;
  }
  .newsletter-form input {
    border: 1px solid rgba(201,168,76,.24);
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
  }
  .btn-subscribe {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 6px;
  }
}
