﻿/* serhatto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    background-color: #f7f7f7;
    font-family: 'Juana', serif;
    display: flex;
    flex-direction: column;
  }
  
  /* Ana içerik yukarıda */
  main {
    flex: 1;
    text-align: center;
    padding: 2rem 10px;
  }
  
  /* Banner */
  .banner-wrapper {
    width: calc(100% - 20px);
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
  }
  
  .banner-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 300px;
  }
  
  /* Başlık */
  h1 {
    font-family: 'NHaasGrotesk', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-top: 2rem;
  }
  
  /* Footer */
  .site-footer {
    width: 100%;
    background-color: #e5e5e5;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #d4d4d4;
    font-family: 'NHaasGrotesk', sans-serif;
  }
  
  .footer-brand {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #444;
  }
  
  .footer-links a,
  .footer-social a {
    color: #444;
    text-decoration: none;
    margin: 0 5px;
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    text-decoration: underline;
  }
  