:root {
  --gold: #d4af37;
  --dark-gold: #b8860b;
  --text: #f5efe5;
  --muted: #c8bca7;
  --line: rgba(212,176,106,.22);
  --bg-dark: #05050a;
  --glow: rgba(212,176,106,0.35);
  --header-height: 70px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background: var(--bg-dark);
  color: var(--text);
  background: radial-gradient(circle at center, #140033 0%, #000 75%);
}

/* ──────────────────────────────────────────────
   HEADER & NAVIGATION
──────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#langSelect {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

#hamburger {
  display: none;
  font-size: 2.2rem;
  color: var(--gold);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--gold);
}

/* Mobil menü - soldan slide-in */
@media (max-width: 768px) {
  #hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(5,5,15,0.98);
    border-right: 1px solid var(--gold);
    padding: 90px 30px 40px;
    transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998;
    box-shadow: 6px 0 30px rgba(0,0,0,0.7);
  }

  .nav-menu.active {
    left: 0;
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ──────────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(5,5,20,.78), rgba(0,0,0,.94)),
    url("../images/Revelation.jpg") center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212,176,106,0.10) 0%, transparent 65%);
}

.hero-lights {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 80px var(--gold), 0 0 140px var(--dark-gold);
  opacity: 0.45;
  animation: shimmer 10s infinite alternate;
}

@keyframes shimmer {
  0%,100% { opacity: 0.4; transform: translate(-50%, -50%) scaleX(0.9); }
  50%     { opacity: 0.75; transform: translate(-50%, -50%) scaleX(1.15); }
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

h1 {
  font-size: clamp(4rem, 9vw, 7rem);
  margin: 0 0 1rem;
  text-shadow: 0 0 60px var(--gold);
}

h1 span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.6em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.4rem;
  max-width: 720px;
  margin: 1.5rem auto 2.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.hero-claim {
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-top: 2rem;
  text-shadow: 0 0 20px var(--glow);
}

.sanctum-gate {
  margin: 40px 0 30px;
}

.sanctum-gate a {
  display: inline-block;
  border: 1px solid rgba(213,179,106,.35);
  padding: 16px 32px;
  border-radius: 14px;
  text-align: center;
  transition: all .4s ease;
  background: rgba(255,255,255,.015);
  text-decoration: none;
}

.sanctum-gate a:hover,
.sanctum-gate a:focus {
  border-color: #d5b36a;
  box-shadow: 0 0 20px rgba(213,179,106,.25), 0 0 40px rgba(213,179,106,.12);
  transform: translateY(-3px);
}

.gate-symbol {
  display: block;
  font-size: 22px;
  color: #d5b36a;
  margin-bottom: 8px;
}

.gate-text {
  display: block;
  letter-spacing: .28em;
  font-size: 15px;
  text-transform: uppercase;
  color: #d5b36a;
}

.gate-sub {
  display: block;
  font-size: 11px;
  letter-spacing: .24em;
  color: #8f7b4a;
  margin-top: 6px;
}

/* ──────────────────────────────────────────────
   GRID & CHURCH CARDS
──────────────────────────────────────────────── */
.grid-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--gold);
  margin: 60px 0 10px;
}

.grid-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.church-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 0 5% 100px;
  padding: 0 20px;
}

.church {
  border: 1px solid var(--line);
  padding: 30px 20px;
  cursor: pointer;
  text-align: center;
  transition: all .4s ease;
  background: rgba(10,10,25,0.5);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.church:hover{
border-color:var(--gold);
box-shadow:
0 0 50px rgba(212,176,106,0.3),
0 0 80px rgba(212,176,106,0.12);
transform:translateY(-10px) scale(1.03);
}
.church-name {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.church-motto {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  opacity: 0.85;
}

/* ──────────────────────────────────────────────
   MODALS (genel) + SCROLLBAR GİZLENDİ
──────────────────────────────────────────────── */
.modal, .buy-modal, #legalModal, #contactModal, #zoomModal, #categoriesModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  z-index: 1000;
}

.modal.active, .buy-modal.active, #legalModal.active, #contactModal.active, #zoomModal.active, #categoriesModal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box, .legal-box, .contact-box {
  background: rgba(8,8,18,0.96);
  border: 1px solid var(--line);
  padding: 40px;
  width: min(1100px, 92%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 100px rgba(212,176,106,0.22);
  border-radius: 6px;

  /* SCROLLBAR TAMAMEN GİZLENDİ */
  -ms-overflow-style: none;          /* Edge/IE */
  scrollbar-width: none;             /* Firefox */
}

.modal-box::-webkit-scrollbar,
.legal-box::-webkit-scrollbar,
.contact-box::-webkit-scrollbar {
  display: none;                     /* Chrome, Safari, Opera */
}

/* ──────────────────────────────────────────────
   SLIDER (ürün modalı)
──────────────────────────────────────────────── */
.slider {
  position: relative;
  overflow: hidden;
  margin: 25px 0;
}

.slider-track{
display:flex;
transition:transform .5s ease;
will-change:transform;
}

.slide{
min-width:300px;
margin-right:25px;
flex-shrink:0;
scroll-snap-align:center;
}
.revelation-verse{
margin-top:28px;
font-size:13px;
letter-spacing:.18em;
color:#c8bca7;
opacity:.8;
font-style:italic;
}
.card {
  border: 1px solid var(--line);
  background: #111114;
}

.card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,176,106,0.2);
}

.img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.body {
  padding: 20px;
  text-align: center;
}

.price {
  color: var(--gold);
  font-size: 1.4rem;
  margin: 10px 0;
}

.btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  display: inline-block;
  cursor: pointer;
  margin: 8px 4px;
  font-size: 0.95rem;
  transition: .3s;
  background: transparent;
  border-radius: 4px;
}

.btn:hover {
  background: rgba(212,176,106,0.12);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left  { left: 12px; }
.arrow.right { right: 12px; }

.counter {
  text-align: right;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.95rem;
}

/* ──────────────────────────────────────────────
   DETAY MODALI
──────────────────────────────────────────────── */
.detail-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.detail-image-container {
  flex: 1 1 400px;
}

#mainImage {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.25s;
}

#mainImage:hover {
  transform: scale(1.015);
}

.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s;
}

.thumb.active,
.thumb:hover {
  border-color: var(--gold);
  transform: scale(1.08);
}

.detail-info {
  flex: 1 1 400px;
}

.detail-actions {
  margin-top: 32px;
  text-align: center;
}

/* ──────────────────────────────────────────────
   AKORDEON
──────────────────────────────────────────────── */
.acc-item {
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.acc-header {
  cursor: pointer;
  padding: 14px 12px;
  color: var(--gold);
  font-weight: bold;
  transition: .3s;
}

.acc-header:hover {
  background: rgba(212,176,106,0.08);
}

.acc-body {
  display: none;
  padding: 16px 12px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.acc-item.active .acc-body {
  display: block;
}

/* ──────────────────────────────────────────────
   ZOOM MODAL
──────────────────────────────────────────────── */
#zoomModal .zoom-content {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
}

#zoomImg {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border: 1px solid var(--gold);
  box-shadow: 0 0 70px rgba(212,176,106,0.4);
}

/* ──────────────────────────────────────────────
   FORMS
──────────────────────────────────────────────── */
.form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.form input,
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 13px 16px;
  font-size: 1rem;
  border-radius: 5px;
  transition: border .3s;
}

.form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form button,
.contact-form button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 13px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: .3s;
  border-radius: 5px;
}

.form button:hover,
.contact-form button:hover {
  background: rgba(212,176,106,0.14);
}

#response,
#contactResponse {
  text-align: center;
  margin-top: 12px;
  color: var(--gold);
}

/* ──────────────────────────────────────────────
   KATEGORİLER MODALI
──────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 20px;
}

.category {
  border: 1px solid var(--line);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  background: rgba(10,10,25,0.5);
  backdrop-filter: blur(6px);
  transition: all .4s ease;
}

.category:hover {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(212,176,106,0.3);
  transform: translateY(-6px);
}

.category-name {
  font-size: 1.65rem;
  color: var(--gold);
}

/* ──────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 100px 5% 70px;
  color: var(--muted);
  font-size: 1.05rem;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}

.footer-links {
  margin: 24px 0 32px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 20px;
  transition: .3s;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 12px var(--glow);
}

.footer-claim {
  font-style: italic;
  font-size: 1.12rem;
  color: var(--gold);
  margin-top: 24px;
  letter-spacing: 0.06em;
}

/* ──────────────────────────────────────────────
   RESPONSIVE AYARLAR
──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .church-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 0 12px;
    gap: 24px;
  }

  .slide {
    min-width: 100%;
    margin-right: 0;
  }

  .slider-track {
    flex-wrap: nowrap;
  }

  .slider {
    overflow: visible;
  }

  .arrow {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .modal-box, .legal-box, .contact-box {
    padding: 24px;
  }

  .detail-content {
    flex-direction: column;
    gap: 30px;
  }

  #mainImage {
    height: auto;
    max-height: 420px;
  }
}
#scrollTopBtn{
position:fixed;
right:28px;
bottom:28px;
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:var(--gold);
border:1px solid var(--gold);
border-radius:50%;
background:rgba(0,0,0,.75);
cursor:pointer;
opacity:0;
pointer-events:none;
transition:all .35s ease;
z-index:900;
}

#scrollTopBtn:hover{
background:rgba(212,176,106,.12);
box-shadow:0 0 18px rgba(212,176,106,.45);
}

#scrollTopBtn.show{
opacity:1;
pointer-events:auto;
}
/* Seven Lights dropdown */

.dropdown{
position:relative;
}

.dropdown-title{
cursor:pointer;
color:var(--muted);
}

.dropdown-title:hover{
color:var(--gold);
}

.dropdown{
position:relative;
padding-bottom:10px;
}

.dropdown-menu{

position:absolute;
top:100%;
left:0;

background:rgba(10,10,20,0.96);
border:1px solid var(--line);

display:flex;
flex-direction:column;

min-width:240px;

opacity:0;
pointer-events:none;

transform:translateY(6px);

transition:.25s;

box-shadow:0 0 40px rgba(212,176,106,0.2);

}

.dropdown:hover .dropdown-menu{

opacity:1;
pointer-events:auto;

transform:translateY(0);

}
@media (max-width:768px){

.dropdown-menu{

position:static;

opacity:1;

pointer-events:auto;

transform:none;

border:none;

box-shadow:none;

}

}

/* INTRO */

#sanctumIntro{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:#000;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

z-index:999999;

animation:introFade 2.2s forwards;

}

/* circle */

.intro-circle{

position:relative;
width:180px;
height:180px;

}

/* lights */

.light{

position:absolute;

width:10px;
height:10px;

background:#d4af37;

border-radius:50%;

box-shadow:
0 0 25px rgba(212,176,106,.9),
0 0 50px rgba(212,176,106,.6);

opacity:0;

animation:lightAppear .6s forwards;

}

.l1{top:0;left:50%;transform:translateX(-50%);animation-delay:.1s;}
.l2{top:25%;right:0;animation-delay:.2s;}
.l3{bottom:25%;right:0;animation-delay:.3s;}
.l4{bottom:0;left:50%;transform:translateX(-50%);animation-delay:.4s;}
.l5{bottom:25%;left:0;animation-delay:.5s;}
.l6{top:25%;left:0;animation-delay:.6s;}
.l7{top:50%;left:50%;transform:translate(-50%,-50%);animation-delay:.7s;}

.intro-title{

margin-top:30px;

text-align:center;

font-size:26px;

letter-spacing:.35em;

color:#d4af37;

opacity:0;

animation:titleFade 1s forwards;

animation-delay:.8s;

}

.intro-sub{

margin-top:10px;

font-size:11px;

letter-spacing:.3em;

color:#c8bca7;

}

@keyframes lightAppear{

0%{
transform:scale(0);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

@keyframes titleFade{

0%{opacity:0;}

100%{opacity:1;}

}

@keyframes introFade{

0%{opacity:1;}

85%{opacity:1;}

100%{
opacity:0;
visibility:hidden;
}

}
.footer-note{

margin-top:20px;

font-size:11px;

letter-spacing:.15em;

color:#8a8a8a;

text-align:center;

opacity:.8;

}