/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: #0d0e10; color: #ffffff; line-height: 1.6; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar { display: flex; justify-content: space-between; align-items: center; background-color: #050505; padding: 15px 3%; border-bottom: 1px solid rgba(255,255,255,0.1); position: sticky; top: 0; z-index: 1000; width: 100%; }
.nav-brand img { height: 35px; }
.nav-menu { display: flex; align-items: center; gap: 30px; flex-grow: 1; justify-content: flex-end; }
.nav-search { display: flex; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 5px 10px; width: 250px; margin-right: 2vw; transition: border-color 0.2s; }
.nav-search:focus-within { border-color: #00f2ff; box-shadow: 0 0 0 2px rgba(0,242,255,0.1); }
.nav-search input { background: transparent; border: none; color: white; outline: none; width: 100%; padding-left: 10px; font-size: 0.85rem; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: #a0a0a0; text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; transition: color 0.2s; }
.nav-links a:hover { color: #ffffff; }
.dropdown { position: relative; display: inline-block; }
.dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; background: transparent; }
.dropbtn { background: none; border: none; color: #a0a0a0; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 0; transition: color 0.2s; }
@media (min-width: 1025px) { .dropbtn:hover, .dropdown:hover .dropbtn { color: #fff; } .dropdown:hover .dropdown-content { display: block; } }
.dropdown-content { display: none; position: absolute; background-color: #111318; min-width: 220px; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; top: calc(100% + 15px); left: 50%; transform: translateX(-50%); box-shadow: 0 10px 30px rgba(0,0,0,0.8); overflow: hidden; z-index: 1001; }
.dropdown-content a { color: #a0a0a0; padding: 12px 16px; text-decoration: none; display: block; font-weight: 500; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.03); white-space: nowrap; transition: all 0.2s; text-transform: none; letter-spacing: normal; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: rgba(255,255,255,0.05); color: #00f2ff; padding-left: 20px; }
.support-btn { background: transparent; border: 1px solid #00f2ff; color: #00f2ff; padding: 8px 16px; border-radius: 4px; cursor: pointer; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.support-btn:hover { background: #00f2ff; color: #000; box-shadow: 0 0 10px rgba(0,242,255,0.4); }
.hamburger { display: none; background: transparent; border: none; cursor: pointer; padding: 5px; }
.hamburger svg { fill: #fff; width: 28px; height: 28px; }

@media (max-width: 1024px) {
  .hamburger { display: block; }
  .dropdown::after { display: none; }
  .nav-menu { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; width: 100%; background: #050505; padding: 20px 5%; border-bottom: 1px solid rgba(255,255,255,0.1); gap: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.9); }
  .nav-menu.active { display: flex; }
  .nav-search { width: 100%; margin-right: 0; }
  .nav-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-links > a, .dropdown { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links > a { padding: 15px 0; }
  .dropbtn { width: 100%; padding: 15px 0; justify-content: space-between; }
  .dropdown-content { position: static; background: transparent; border: none; box-shadow: none; transform: none; min-width: 100%; padding-left: 15px; display: none; }
  .dropdown-content a { border-bottom: none; padding: 10px 0; white-space: normal; }
  .dropdown.active .dropdown-content { display: block; }
  .dropdown.active .dropbtn svg { transform: rotate(180deg); }
  .support-btn { width: 100%; text-align: center; margin-top: 20px; }
}

/* ── PHOTO CARDS (shared by gallery + detail related) ───────────── */
.photo-card { background: #111318; border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; text-decoration: none; color: #fff; transition: transform 0.3s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.3s, border-color 0.3s; display: flex; flex-direction: column; width: 100%; }
.photo-card:hover { transform: translateY(-6px); border-color: rgba(0,242,255,0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.photo-img-wrapper { width: 100%; aspect-ratio: 4/3; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.photo-img { width: 100%; height: 100%; object-fit: cover; background: #1a1c23; transition: transform 0.6s cubic-bezier(0.165,0.84,0.44,1); }
.photo-card:hover .photo-img { transform: scale(1.05); }
.photo-details { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.photo-details h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; line-height: 1.4; transition: color 0.2s; }
.photo-card:hover .photo-details h3 { color: #00f2ff; }
.photo-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.photo-date { color: #888; font-size: 0.85rem; font-weight: 500; }
.photo-badge { background: rgba(255,255,255,0.05); color: #e0e0e0; border: 1px solid rgba(255,255,255,0.15); padding: 4px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer { background: #050505; padding: 80px 3% 30px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 40px; max-width: 1800px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; margin-bottom: 30px; }
.footer-col h4 { color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: 25px; }
.footer-col a { display: block; color: #a0a0a0; text-decoration: none; margin-bottom: 15px; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: #00f2ff; }
.brand-col img { height: 40px; margin-bottom: 20px; }
.brand-col p { color: #a0a0a0; font-size: 0.95rem; line-height: 1.6; max-width: 300px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1800px; margin: 0 auto; color: #707070; font-size: 0.85rem; }
.footer-socials a { display: inline-block; margin-left: 15px; color: #707070; transition: color 0.2s; }
.footer-socials a:hover { color: #fff; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } }

/* ── SUPPORT MODAL ──────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 10000; }
.modal-card { background: #111318; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 40px; max-width: 400px; width: 90%; text-align: center; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.modal-card h3 { margin-bottom: 15px; font-weight: 600; font-size: 1.4rem; }
.modal-card p { color: #a0a0a0; font-size: 0.9rem; margin-bottom: 25px; line-height: 1.5; }
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #a0a0a0; font-size: 1.8rem; cursor: pointer; transition: color 0.2s; }
.close-modal:hover { color: #fff; }
.support-options { display: flex; flex-direction: column; gap: 15px; }
.support-link { padding: 15px; border-radius: 8px; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s, filter 0.2s; }
.support-link strong { font-size: 1.1rem; margin-bottom: 4px; }
.support-link span { font-size: 0.8rem; opacity: 0.9; }
.patreon { background: #ff424d; color: white; }
.paypal { background: #0079C1; color: white; }
.support-link:hover { transform: translateY(-3px); filter: brightness(1.1); }

/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb { font-size: 0.85rem; color: #707070; margin-bottom: 30px; font-weight: 500; }
.breadcrumb a { color: #a0a0a0; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #00f2ff; }
.breadcrumb .sep { margin: 0 8px; }
.breadcrumb .current { color: #fff; }

/* ── UTILITY ────────────────────────────────────────────────────── */
.variant-badge { display: inline-block; background: rgba(0,242,255,0.1); color: #00f2ff; border: 1px solid rgba(0,242,255,0.3); padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.tag-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: #c0c0c0; padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
