@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #0a0a0a;
  --color-bg-light: #161616;
  --color-gold: #D4AF37;
  --color-gold-hover: #b5952f;
  --color-text: #e0e0e0;
  --color-text-muted: #a0a0a0;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Header */
header {
  background-color: rgba(10, 10, 10, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-gold);
}

.btn-gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
}

.btn-gold-solid {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border: 1px solid var(--color-gold);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn-gold-solid:hover {
  background-color: transparent;
  color: var(--color-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition);
}

/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Resimlerin net gözükmesi için koyuluk */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.slide-content h1 {
  font-size: 3.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-content p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--color-gold);
}

/* Sections */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background-color: var(--color-bg-light);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* About Section */
.about-content h2 {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}
.about-content p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.vision-box {
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-gold);
  padding: 1.5rem;
  margin: 2rem 0;
}
.vision-box h4 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background-color: var(--color-bg-light);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem;
}

.contact-item i {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-item div h4 {
  color: #fff;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-item div p {
  color: var(--color-text-muted);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Page Header */
.page-header {
  margin-top: 100px;
  padding: 6rem 2rem 4rem 2rem;
  text-align: center;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.page-header h1 {
  font-size: 3rem;
  color: var(--color-gold);
}
.page-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Footer */
footer {
  background-color: #050505;
  padding: 3rem 2rem 1rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-col p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #666;
  font-size: 0.8rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 2rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background-color: rgba(10, 10, 10, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  border-color: var(--color-gold);
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 80%;
  max-height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.close-modal:hover {
  color: var(--color-gold);
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  user-select: none;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover {
  background-color: var(--color-gold);
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prev { left: 10px; }
  .next { right: 10px; }
  .nav-links {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }
  .nav-links.active {
    left: 0;
  }
  .hamburger {
    display: flex;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .slide-content h1 {
    font-size: 2.5rem;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.faq-item {
  background-color: var(--color-bg-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  transition: var(--transition);
}

.faq-question span {
  padding-right: 1.5rem;
}

.faq-question i {
  color: var(--color-gold);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--color-text-muted);
  padding-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
