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

/* Sayfa Genel Yapısı */
body {
    margin: 0;
    padding: 30px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #222222;
}

/* Yan Yana Düzen (Sol Menü - Sağ Galeri/İçerik) */
.site-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
}

/* Sol Sidebar (Logo ve Menü Alanı) */
.sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Sağ tarafa yaslar */
    text-align: right;
}

/* Logo Stili */
.sidebar-logo-area {
    width: 100%;
    margin-bottom: 30px;
    text-align: right;
}

.sidebar-logo {
    width: 180px !important; /* Logonun boyutunu sabitler */
    max-width: 100% !important;
    height: auto !important;
    display: inline-block;
}

/* Menü Yapısı */
.main-menu {
    width: 100%;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.main-menu li {
    width: 100%;
    text-align: right;
}

.main-menu a {
    text-decoration: none;
    color: #333333;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    display: block;
    transition: opacity 0.2s ease;
}

.main-menu a:hover {
    opacity: 0.5;
}

/* Sağ İçerik Alanı (Metin Sayfaları) */
.content {
    flex-grow: 1;
    max-width: 800px;
}

/* Temizleme Sınıfı (Float Çakışmasını Önler) */
.content::after {
    content: "";
    display: table;
    clear: both;
}

.content h1 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 30px;
    margin-bottom: -10px;
}

.content h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content p, .content li {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
}

.content ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

.content a {
    color:#000;
    padding:5px 3px;
}
.content a:hover {
    color:#fff;
    background-color: #999;
    text-decoration: none;
}

/* Sola Yaslı Resim Yapısı (Sarma / Float Effect) */
.align-left {
    float: left;
    max-width: 45%;      /* Ekranın %45'ini kaplar */
    height: auto;
    margin-right: 30px;  /* Sağındaki yazı ile arasındaki boşluk */
    margin-bottom: 20px; /* Altındaki yazı ile arasındaki boşluk */
    border-radius: 4px;
}

/* Responsive (Mobil Cihazlar İçin) */
@media (max-width: 768px) {
    .site-container {
        flex-direction: column;
        gap: 30px;
    }

    .sidebar {
        width: 100%;
        position: static;
        align-items: center;
        text-align: center;
    }

    .sidebar-logo-area, .main-menu li {
        text-align: center;
    }

    .main-menu ul {
        align-items: center;
    }

    .align-left {
        float: none;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}


/* ==========================================
   MASONRY GALERİ DÜZENİ
   ========================================== */
.gallery-grid {
    /* Masaüstünde 3 Sütunlu Yapı */
    column-count: 3;
    column-gap: 20px;
    width: 100%;
}

.gallery-item {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin-bottom: 20px;
    border-radius: 4px;
    
    /* Fotoğrafların sütun ortasında bölünmesini engeller */
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    
    /* İsteğe bağlı geçiş efekti */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover {
    opacity: 0.9;
}

/* Tablet ve Ekran Boyutu Uyumu */
@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 2; /* Tablette 2 sütun */
    }
}

/* Mobil Uyum */
@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1; /* Mobilde tek sütun */
    }
}

/* FIYAT TABLOSU */
.pricing-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
  font-family: inherit;
  color: #333;
}

.pricing-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-section {
  margin-bottom: 35px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  border-bottom: 2px solid #222;
  padding-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 0;
  margin-bottom: 15px;
  font-style: italic;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.pricing-table th, 
.pricing-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  font-size: 15px;
}

.pricing-table td {
  font-size: 15px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.pricing-note {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
  text-align: center;
  font-style: italic;
}

/* Mobil Cihaz Düzeltmeleri */
@media (max-width: 600px) {
  .pricing-table th, 
  .pricing-table td {
    padding: 10px 8px;
    font-size: 14px;
  }
}
