/* reset.css
   Modern, opinionated reset — başlangıç için temiz bir temel sağlar.
   Açıklamalar (TR) ile birlikte.
*/

/* 1) Box-sizing: daha tahmin edilebilir kutu modeli */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* mobilde yazı büyümesini kontrol et */
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* 2) Temel görünüm sıfırlamaları */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

/* 3) HTML5 elemanlarını blok düzene sok */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* 4) Body: temel font ve arka plan ayarları (opsiyonel) */
body {
  line-height: 1;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff; /* projeye göre değiştirin */
  color: #111;             /* projeye göre değiştirin */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* 5) Listeleri normalleştir */
ol, ul {
  list-style: none;
}

/* 6) Blockquote/quote */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

/* 7) Tablo varsayılanları */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8) Görseller ve medya */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 9) Form elemanları: font miras alacak şekilde */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  line-height: inherit;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
}

/* 10) Buton & input görünümü (tarayıcı tipi efektleri kaldırma) */
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: transparent;
}

/* 11) Link: varsayılan renk ve alt çizgi temizleme (isteğe bağlı) */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/* 12) Accessibility: odak görünürlüğü */
:focus {
  outline: 2px solid Highlight; /* tarayıcı varsayılana yakın, projeye göre özelleştir */
  outline-offset: 2px;
}

/* 13) Placeholder stili (tarayıcılar arası uyum) */
::placeholder {
  opacity: 1; /* farklı tarayıcılar için */
  color: #9aa0a6;
}

/* 14) Invisible content helpers */
.hidden {
  display: none !important;
}

/* 15) Utility - görüntülenen içerik için makul varsayılan container davranışı */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* 16) Küçük, opinionated düzen düzeltmeleri */
/* Satır yüksekliği metinlere biraz nefes verir */
p {
  margin-bottom: 1rem;
}

/* Form kontrol varsayılan yüksekliği */
input, textarea, select {
  min-height: 2.25rem;
}

/* 17) Print (baskı) için temizleme */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
}

/* === Notlar ===
 - Bu dosya başlangıç (base) reset'tir. Projede ihtiyaç duyduğunuz özel stilleri ayrı bir dosyada (ör. base.css veya global.css) ekleyin.
 - Outline/focus stillerini proje erişilebilirlik gereksinimlerinize göre uyarlayın.
 - Eğer tamamen "sıfır" bir reset isterseniz margin/padding/box-sizing gibi blokları tutup diğer opinionated kısımları çıkarabilirsiniz.
*/

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 3, 2025 */



@font-face {
    font-family: 'cormorantlight';
    src: url('font/cormorant.woff2') format('woff2'),
         url('font/cormorant.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.full-page
{
    width: 100%;
    height: 100vh;
    display: flex;
}

.side-cont{
    padding: 2rem;
    width: 50%;
}


.left-side
{
    border-left: 15px solid #8A0023;
    display: flex;
    align-items: center;
}

.right-side
{
  background: url(images/bg.png) center center no-repeat;
  background-size: cover;
}

.logo{
    max-width: 200px;
    margin-bottom: 1rem;
}

.side-inside
{
    width: 100%;
}


.side-inside h1
{
    font-family: 'cormorantlight';
    font-size: 24px;
    width: 100%;
    text-align: center;
    color: #8A0023;
}

.side-inside-top
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;

}

.side-inside-bottom
{
    text-align: center;
}

.side-inside-bottom span{
    display: block;
    margin-bottom: 1rem;
    position: relative;
    font-size: 20px;
}

.contact
{
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {

    .full-page
    {
        flex-wrap: wrap;
        background: url(images/bg.png) no-repeat center center / cover;
    }

    .side-cont
    {
        width: 100%;
    }

    .left-side{
        height: 100vh;
        background-color:rgba(255, 255, 255, 0.8);
    }

    .right-side{
        display: none;
    }



}