/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #d5a26a;
    transition: all 0.3s ease;
}

a:hover {
    color: #b07d40;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d5a26a;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #b07d40;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d5a26a;
}

.section-title p {
    color: #777;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.logo span {
    color: #d5a26a;
}

.main-menu ul {
    display: flex;
    list-style: none;
}

.main-menu ul li {
    margin-left: 30px;
}

.main-menu ul li a {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d5a26a;
    transition: width 0.3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

/* Mobil Menü Stilleri */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Hero Slider */
.hero-slider {
    padding-top: 100px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

/* Salon Tanıtım */
.venues {
    padding: 80px 0;
}

.venue-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.venue-item {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.venue-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.venue-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.venue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-item:hover .venue-img img {
    transform: scale(1.1);
}

.venue-content {
    padding: 25px;
    text-align: center;
}

.venue-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.venue-content p {
    color: #777;
    margin-bottom: 20px;
}

/* Paketler */
.packages {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.package-item {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-header {
    background-color: #d5a26a;
    color: white;
    padding: 20px;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
}

.package-content {
    padding: 30px 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

/* Hizmetler */
.services {
    padding: 80px 0;
    background: url('/api/placeholder/1200/400') center/cover fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title h2 {
    color: white;
}

.services .section-title p {
    color: #ddd;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: white;
    width: calc(33.33% - 20px);
    min-width: 250px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #d5a26a;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-item p {
    color: #ddd;
}

/* İstatistikler */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 0 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d5a26a;
    margin-bottom: 15px;
}

.stat-title {
    font-size: 18px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* İletişim */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-details {
    list-style: none;
    margin-bottom: 30px;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 20px;
    color: #d5a26a;
    margin-right: 15px;
    min-width: 20px;
}

.contact-text {
    color: #777;
}

.contact-map {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #eee;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #d5a26a;
}

.footer-desc {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #d5a26a;
    transform: translateY(-3px);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #d5a26a;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d5a26a;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .venue-grid, .package-grid {
        flex-wrap: wrap;
    }
    
    .venue-item, .package-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .service-item {
        width: calc(50% - 15px);
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        margin-top: 0;
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-menu ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    .main-menu ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    /* Hamburger animasyonu */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .venue-item, .package-item, .service-item {
        flex: 0 0 100%;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

/* Genel Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1000;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}
.logo span {
  color: #d5a26a;
}

/* Menü */
.main-menu ul {
  display: flex;
  list-style: none;
}
.main-menu ul li {
  margin-left: 30px;
}
.main-menu ul li a {
  color: #333;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  transition: color .3s;
}
.main-menu ul li a:hover {
  color: #b07d40;
}x
.main-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d5a26a;
  transition: width .3s;
}
.main-menu ul li a:hover::after {
  width: 100%;
}

/* Banner */
.page-banner {
  background: 
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), 
    url('/api/placeholder/1200/400') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}
.page-banner h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
}
.breadcrumb li {
  list-style: none;
  font-size: 18px;
}
.breadcrumb li:not(:last-child)::after {
  content: '>';
  margin: 0 10px;
  color: #d5a26a;
}
.breadcrumb li a {
  color: #d5a26a;
  text-decoration: none;
  transition: color .3s;
}
.breadcrumb li a:hover {
  color: #b07d40;
}

/* Section Başlıkları */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d5a26a;
}
.section-title p {
  color: #777;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Venue Detail */
.venue-detail {
  padding: 80px 0;
}
.venue-item {
  margin-bottom: 100px;
}
.venue-item:last-child {
  margin-bottom: 0;
}
.venue-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}
.venue-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}
.venue-content {
  flex: 1;
}
.venue-content h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.venue-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #d5a26a;
}
.venue-content p {
  color: #777;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.feature-item {
  background-color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
}
.feature-icon {
  margin-right: 8px;
  color: #d5a26a;
}
.venue-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 200px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Karşılaştırma Tablosu */
.comparison {
  padding: 80px 0;
  background-color: #f5f5f5;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.comparison-table th {
  background-color: #d5a26a;
  color: white;
  font-weight: 600;
  font-size: 18px;
}
.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #333;
}
.feature-available {
  color: #2ecc71;
  font-size: 20px;
}
.feature-unavailable {
  color: #e74c3c;
  font-size: 20px;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: 
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), 
    url('/api/placeholder/1200/400') center/cover fixed;
  color: white;
  text-align: center;
  position: relative;
}
.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ddd;
}


/* Mobil menü boşluk düzeltmeleri */
@media (max-width: 768px) {
    /* Ana menü düzenlemeleri */
    .main-menu {
        margin-top: 10px; /* Üst boşluğu azaltma */
        padding: 0; /* Gereksiz padding kaldırma */
    }
    
    /* Mobil menü butonunun konumlandırması */
    .mobile-menu-btn {
        top: 20px;
        right: 15px;
    }
    
    /* Menü öğelerinin dikey hizalanması */
    .main-menu ul {
        margin: 0;
        padding: 0;
    }
    
    .main-menu ul li {
        margin: 5px 0; /* Menü öğeleri arasındaki boşluğu azaltma */
        padding: 5px 0;
    }
    
    /* Header yüksekliği */
    .header-inner {
        padding: 10px 0; /* Üst ve alt boşluğu azaltma */
    }
    
    /* Logo boyutu düzenleme */
    .logo {
        font-size: 22px; /* Mobilde logo boyutunu küçültme */
    }
    
    /* Sayfanın geri kalan kısmı için üstten boşluk ayarı */
    .page-banner {
        margin-top: 60px; /* Header altındaki boşluğu düzenleme */
    }
    
    /* Mobil menü açıldığında oluşan margin düzeltmesi */
    .mobile-menu-open {
        margin-top: 0;
    }
    
    /* Mobil menü dropdown öğelerini düzeltme */
    .main-menu ul li ul.sub-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
        box-shadow: none;
        padding-left: 15px;
    }
    
    /* Mobil nav bar arkası gölge ve görünüm */
    .mobile-nav {
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        background-color: #fff;
    }
}

/* Daha küçük ekranlar için ek düzeltmeler */
@media (max-width: 480px) {
    .logo {
        font-size: 20px; /* Daha küçük ekranlarda logo boyutunu daha da küçültme */
    }
    
    .header-inner {
        padding: 8px 0; /* Daha az padding */
    }
    
    /* Menü butonunun daha iyi hizalanması */
    .mobile-menu-btn {
        top: 15px;
        right: 10px;
    }
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #d5a26a;
    transition: all 0.3s ease;
}

a:hover {
    color: #b07d40;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d5a26a;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #b07d40;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d5a26a;
}

.section-title p {
    color: #777;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.logo span {
    color: #d5a26a;
}

.main-menu ul {
    display: flex;
    list-style: none;
}

.main-menu ul li {
    margin-left: 30px;
}

.main-menu ul li a {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d5a26a;
    transition: width 0.3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

/* Mobil Menü Stilleri */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Hero Slider */
.hero-slider {
    padding-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

/* Salon Tanıtım */
.venues {
    padding: 80px 0;
}

.venue-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.venue-item {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.venue-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.venue-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.venue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-item:hover .venue-img img {
    transform: scale(1.1);
}

.venue-content {
    padding: 25px;
    text-align: center;
}

.venue-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.venue-content p {
    color: #777;
    margin-bottom: 20px;
}

/* Paketler */
.packages {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.package-item {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-header {
    background-color: #d5a26a;
    color: white;
    padding: 20px;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
}

.package-content {
    padding: 30px 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

/* Tab stilleri */
.tab-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.tabs {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tab {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: none;
    outline: none;
}

.tab.active {
    background-color: #d5a26a;
    color: white;
}

.tab-content {
    display: none;
    margin-top: 30px;
}

.tab-content.active {
    display: block;
}

/* Paket kartları */
.package-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.popular-tag {
    position: absolute;
    top: -5px;
    right: -35px;
    background-color: #222;
    color: white;
    padding: 25px 35px 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hizmetler */
.services {
    padding: 80px 0;
    background: url('/api/placeholder/1200/400') center/cover fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title h2 {
    color: white;
}

.services .section-title p {
    color: #ddd;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: white;
    width: calc(33.33% - 20px);
    min-width: 250px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #d5a26a;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-item p {
    color: #ddd;
}

/* İstatistikler */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d5a26a;
    margin-bottom: 15px;
}

.stat-title {
    font-size: 18px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* İletişim */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-details {
    list-style: none;
    margin-bottom: 30px;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 20px;
    color: #d5a26a;
    margin-right: 15px;
    min-width: 20px;
}

.contact-text {
    color: #777;
}

.contact-map {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #eee;
}

/* Sayfa Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1200/400') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
}

.breadcrumb li {
    list-style: none;
    font-size: 18px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #d5a26a;
}

.breadcrumb li a {
    color: #d5a26a;
    text-decoration: none;
    transition: color .3s;
}

.breadcrumb li a:hover {
    color: #b07d40;
}

/* Venue Detail */
.venue-detail {
    padding: 80px 0;
}

.venue-item {
    margin-bottom: 80px;
}

.venue-item:last-child {
    margin-bottom: 0;
}

.venue-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.venue-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.venue-content {
    flex: 1;
}

.venue-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.venue-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #d5a26a;
}

.venue-content p {
    color: #777;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.feature-icon {
    margin-right: 8px;
    color: #d5a26a;
}

.venue-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Karşılaştırma Tablosu */
.comparison {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #d5a26a;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.feature-available {
    color: #2ecc71;
    font-size: 20px;
}

.feature-unavailable {
    color: #e74c3c;
    font-size: 20px;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('/api/placeholder/1200/400') center/cover fixed;
    color: white;
    text-align: center;
    position: relative;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ddd;
}

/* İletişim Bilgileri */
.contact-info {
    padding: 80px 0;
    background-color: white;
}

.info-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: #d5a26a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.info-content {
    color: #777;
    font-size: 16px;
}

/* İletişim Formu */
.contact-form {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.form-container {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #d5a26a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(213, 162, 106, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #d5a26a;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #b07d40;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hizmet Kartları */
.service-card {
    flex: 1;
    min-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: #d5a26a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #d5a26a;
}

.footer-desc {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #d5a26a;
    transform: translateY(-3px);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #d5a26a;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d5a26a;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .venue-grid, .package-grid {
        flex-wrap: wrap;
    }
    
    .venue-item, .package-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .service-item {
        width: calc(50% - 15px);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .venue-wrapper {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .venue-gallery {
        width: 100%;
    }
    
    .package-card {
        min-width: 45%;
    }
    
    .tab {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .header-inner {
        position: relative;
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        margin-top: 0;
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-menu ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    .main-menu ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    /* Hamburger animasyonu */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .venue-item, .package-item, .service-item {
        flex: 0 0 100%;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 0 0 50%;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .breadcrumb li {
        font-size: 16px;
    }
    
    .venue-content h2 {
        font-size: 28px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .tabs {
        flex-wrap: wrap;
        border-radius: 10px;
    }
    
    .tab {
        flex: 1 1 calc(50% - 10px);
        border-radius: 0 !important;
    }
    
    .package-card {
        min-width: 100%;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .info-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .page-banner {
        height: 200px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .tab {
        flex: 1 1 100%;
        padding: 12px;
    }
    
    .package-capacity {
        font-size: 24px;
    }
    
    .package-price {
        font-size: 30px;
    }
    
    .popular-tag {
        font-size: 12px;
        padding: 20px 30px 5px;
        right: -32px;
    }
    
    .venue-content h2 {
        font-size: 24px;
    }
    
    .venue-content p {
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 12px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .info-title {
        font-size: 18px;
    }
    
    .info-content {
        font-size: 14px;
    }
}

/* Buton boyutlarını eşitleme CSS'i */
.reservation-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background-color: #d5a26a;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    height: 50px;
    line-height: 20px;
}

.reservation-btn:hover {
    background-color: #b07d40;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* Tam genişlik için düzeltmeler */
body {
    margin: 0;
    padding: 0;
}

/* Hizmetlerimiz ve İstatistikler bölümleri için */
.services, .stats {
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background-color: #f5f5f5;
}

/* İstatistikler bölümü farklı arka plan */
.stats {
    background-color: #e9e9e9;
}

/* Container içerikler için düzeltme */
.services .container, .stats .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Fazladan padding kaldırma */
.service-grid, .stats-grid {
    padding: 0;
}

/* Ana container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}