:root {
    --bg: #000;
    --text: #fff;
    --accent: #fff;
    --footer-bg: #9A2525;
    --info-text: #7A7A7A;
    --hr-color: #444;
}

/* ---------- GLOBAL ---------- */
html, body { overflow-x:hidden; }
body { background: var(--bg); color: var(--text); font-family:"Courier New", Courier; margin:0; text-align:center; scroll-behavior:smooth; }
a { text-decoration:none; color:var(--accent); }

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top:0; left:0; width:100vw;
  font-weight:bold;
  background: var(--footer-bg);
  color: var(--text);
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding:15px 20px;
  z-index:10;
  backdrop-filter:blur(8px);
  box-sizing:border-box;
  overflow:hidden;
}

header .logo img { max-width:140px; height:auto; display:block; }

/* ---------- NAV ---------- */
nav ul {
  list-style:none;
  display:flex;
  gap:30px;
  margin:0;
  padding:0;
}

nav a { text-decoration:none; color:var(--text); font-size:1rem; transition: color 0.3s; }
nav a:hover { color:var(--accent); }

.menu-toggle {
  display:none;
  flex-direction: column;
  justify-content:center;
  width:30px; height:25px;
  gap:5px;
  cursor:pointer;
  z-index:20;
}

.menu-toggle span {
  display:block;
  width:100%;
  height:3px;
  background:var(--text);
  border-radius:2px;
  transition:0.3s;
}

.menu-toggle.active span:nth-child(1) { transform:rotate(45deg) translateY(8px); }
.menu-toggle.active span:nth-child(2) { opacity:0; }
.menu-toggle.active span:nth-child(3) { transform:rotate(-45deg) translateY(-8px); }

@media(max-width:1024px){
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg);
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        padding: 0;
        margin: 0;
        border-top: 1px solid #222;
        box-sizing: border-box;
    }

    nav ul li { width:100%; }
    nav ul li a { padding:18px 0; display:block; font-size:1.2rem; }
    nav ul.active { max-height:500px; }
    .menu-toggle { display:flex; }
}

.header-spacer { height:140px; }

main { display:flex; flex-direction:column; align-items:center; gap:40px; padding:10px; max-width:1100px; margin:0 auto; }

.media-container { display:grid; grid-template-columns:1fr 2fr; gap:20px; width:100%; }
.media-wrapper img, .media-wrapper video { width:100%; height:100%; object-fit:cover; border-radius:10px; box-shadow:0 5px 20px rgba(0,0,0,0.4); }

.post-title { font-weight:700; font-size:2rem; color:#fff; margin:20px 0 10px 0; text-align:center; }

.extra-info-grid { width:100%; text-align:left; margin:10px auto; padding:0 16px; }
.info-box p { margin:0; font-size:1rem; color:var(--info-text); }
.info-box p strong { color:#fff; min-width:120px; display:inline-block; font-weight:bold; }
.info-box hr { border:none; border-top:1px solid var(--hr-color); width:100%; margin:8px 0; }

.extra-text { background:#000; padding:12px 14px; border-radius:10px; text-align:left; line-height:1.7; font-size:1rem; color:#7A7A7A; overflow-wrap:break-word; }

.btn-back { background:#9A2525; color:#fff; padding:6px 14px; border-radius:6px; font-weight:bold; text-decoration:none; display:inline-block; margin-bottom:20px; }
.btn-back:hover { background:#c38c87; }

/* ---------- ADDITIONAL IMAGES GRID ---------- */
.additional-images {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
    margin-bottom:20px;
}
.additional-images img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    box-shadow:0 3px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    cursor:pointer;
}
.additional-images img:hover {
    transform: scale(1.05);
}
@media(max-width:768px){
    .additional-images {
        grid-template-columns:1fr;
    }
}

/* ---------- FOOTER ---------- */
footer { width:100%; background-color: var(--footer-bg); display:flex; flex-direction:column; align-items:center; justify-content:center; padding:60px 20px; text-align:center; gap:25px; }
.contact-form { display:flex; flex-direction:column; gap:15px; width:100%; max-width:500px; border:2px solid #4E0E0F; padding:25px; border-radius:10px; background:#fff; color:#000; align-items: stretch; box-sizing: border-box; }
.form-group { display:flex; flex-direction:column; gap:10px; width:100%; }
.contact-form input,
.contact-form textarea {
  width:100%; padding:10px 15px; border:1px solid #444; border-radius:6px; background:#C7C7C7; color:#000; font-family:inherit; font-size:1rem; outline:none; transition:border 0.3s ease; box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color:var(--accent); }
.contact-form button { background:#9A2525; color:#fff; border:none; padding:10px 25px; border-radius:6px; cursor:pointer; font-size:1rem; font-weight:bold; transition: background 0.3s, transform 0.2s; }
.contact-form button:hover { background:#c38c87; transform:scale(1.05); }
footer h2 { font-size:2rem; margin-bottom:10px; }
footer p { font-size:1rem; }
footer .footer-email a { color:#fff; text-decoration:underline; }
.social-icons a { color:#fff; margin:0 5px; font-size:1.5rem; }

/* ---------- CUSTOM LIGHTBOX ---------- */
#lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#lightbox-modal img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  box-shadow:0 5px 20px rgba(0,0,0,0.6);
}
#lightbox-modal .close {
  position:absolute;
  top:20px; right:30px;
  color:#fff;
  font-size:36px;
  font-weight:bold;
  cursor:pointer;
}
#lightbox-modal .prev, #lightbox-modal .next {
  cursor:pointer;
  position:absolute;
  top:50%;
  color:#fff;
  font-size:48px;
  padding:16px;
  margin-top:-30px;
  user-select:none;
}
#lightbox-modal .prev { left:10px; }
#lightbox-modal .next { right:10px; }