/* assets/css/style.css */
:root {
  --primary: #c99335; /* Gold */
  --primary-light: #e5b35c;
  --bg-main: #fcfcfc; /* Main background */
  --bg-secondary: #ffffff; /* Section background */
  --bg-alt: #f4f6f8; /* Alt background */
  --text-main: #1a1a1a; /* Main text */
  --text-gray: #5e6670;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3%;
}

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

ul {
  list-style: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-title h2 span {
  color: var(--primary);
}

.section-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.3rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  height: 50px;
  width: 150px; /* Logo için yer ayırıyoruz */
}

.logo img {
  height: 110px;
  width: 110px;
  object-fit: contain;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 4px solid var(--primary);
  border-radius: 50%;
  padding: 15px;
  transition: var(--transition);
  z-index: 1002;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.navbar.scrolled .logo img {
  height: 85px;
  width: 85px;
  padding: 12px;
  top: 5px;
}

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

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--glass-border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.nav-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 147, 53, 0.3);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-main);
}

/* Hero Slider Section */
.hero-slider {
  height: 100vh; /* Tam ekran yapıldı */
  position: relative;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.4) 70%, transparent);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Slider Controls */
.slider-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
  color: var(--text-main);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-controls button:hover {
  background: var(--primary);
  color: #fff;
}

.prev-slide { left: 30px; }
.next-slide { right: 30px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 4px; /* Keskin tasarım */
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 30px;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(201, 147, 53, 0.2);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(201, 147, 53, 0.3);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  margin-left: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(201, 147, 53, 0.05);
  box-shadow: 0 8px 20px rgba(201, 147, 53, 0.1);
}

/* Services */
.services {
  padding: 6rem 0;
  background-color: var(--bg-main);
  position: relative;
}

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

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 147, 53, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 147, 53, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.service-card ul {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.service-card ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}

.service-card ul li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 0.7rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--bg-alt);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.contact-item-content p {
  color: var(--text-gray);
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border-radius: 4px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bg-main);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 147, 53, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background: #ffffff;
  padding-top: 5rem;
  border-top: 1px solid var(--glass-border);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 70px;
  margin-bottom: 1.5rem;
}

.brand-col p {
  color: var(--text-gray);
  line-height: 1.6;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul li {
  margin-bottom: 1rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col.links-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-col.contact-col ul li i {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  background: #f4f6f8;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.social-links a:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 50px;
    left: -100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
    height: calc(100vh - 50px);
    padding-top: 2rem;
    transition: 0.4s;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn-outline {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Subpage Styles */
.page-header {
    padding: 7rem 0 3rem;
    background: var(--bg-alt);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 147, 53, 0.05), transparent 40%);
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    color: var(--text-gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.breadcrumbs a {
    color: var(--primary);
}

.page-content {
    padding: 6rem 0;
}

.content-box {
    background: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid var(--glass-border);
}

.rich-text h3 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.rich-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.rich-text ul {
    margin-bottom: 1.5rem;
}

.rich-text ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.rich-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}
