/* Style.css - CSS file for the web page */

.fira-sans-condensed-light {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fira-sans-condensed-regular {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fira-sans-condensed-extrabold {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fira-sans-condensed-regular-italic {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

a, a:visited      { color: #654c01; text-decoration: none;}
a:hover, a:active { color: #846506; text-outline: 0;}



body {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh;

    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* Container */
.container {
    display: flex;                      /* Flexbox kullan */
    justify-content: center;            /* Yatayda ortala */
    align-items: center;                /* Dikeyde ortala */
    min-height: 100vh;                  /* Tüm ekranı kaplasın */
    width: 100vw;                       /* Tüm genişliği kaplasın */
}

/* Kutu */
.kutu {
    display: flex;                  /* Flexbox kullan */
    flex-direction: column;         /* Dikey hizala */
    justify-content: center;        /* İçeriği dikeyde ortala */
    align-items: center;            /* İçeriği yatayda ortala */

     width: 95vw;                   /* Ebeveynin genişliğini kullan */
    max-width: 680px;               /* Maksimum genişlik */
    min-height: 200px;              /* Minimum yükseklik */
    min-width: 320px;

    padding: 24px 18px;             /* Kutu içindeki boşluk */
    margin: 40px auto;              /* Kutu etrafında boşluk */; 

    border: 10px solid #FBBE01;   /* Kutu kenarlık kalınlığı ve rengi */
    border-radius: 12px;            /* Kutu köşeleri yuvarlama */
    box-sizing: border-box;         /* Padding ve kenarlık dahil genişlik ve yükseklik hesaplaması */
    box-shadow: 0 10px 20px rgba(0,0,0,0.4); /* Gölge efekti */
    background:rgba(255, 255, 255, 0.85);    /* Kutu arka plan rengi */
}



/* Responsive adjustments */
@media (max-width: 600px) {
  .kutu {
    width: 90vw ;           /* Mobilde genişliği artır */
    min-width: 0;           /* Minimum genişlik */
    padding: 10px 2vw ;     /* Padding'i genişliğe göre ayarla */
    margin: 16px auto ;     /* Mobilde daha az boşluk */
  }
 }  


.kutu img {
    max-width: 100%; /* Kutu genişliğini aşmasın */
    height: auto;    /* Oranını korusun */
    display: block;  /* Taşma ve hizalama sorunlarını önler */
    margin: 0 auto;  /* Ortala */
}


/* Başlık stili  : sitemiz yenileniyor */
h1 {  
    margin-top: 5px;

    text-align: center;
    line-height: 24px;

    font-family: "Fira Sans Condensed", sans-serif;
      font-weight: 400;
      font-style: italic;
    font-size: 18px;
    color: #846506;
}


.center {
    display: flex;           /* Flexbox kullan */
    justify-content: center; /* Yatayda ortala */
    align-items: center;     /* Dikeyde ortala */
}

.mb-20 {
    margin-bottom: 20px; /* Alt boşluk */
}


@media (max-width: 700px) {
  .adres-bilgi-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px 0 !important;
    width: 100% !important;
  }
}



.bg-fade-layer {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s;
    pointer-events: none;
}
.bg-fade-layer.active {
    opacity: 1;
}