/* style.css - Genel Tasarım (Yazılar #428d2e Yeşili, Header/Hero Hariç) */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-green: #428d2e; /* İstenilen Özel Yeşil */
    --white: #fff;
    --text-color: #428d2e;    /* Genel Yazı Rengi */
}

body { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    color: var(--text-color); /* Tüm site yazıları varsayılan olarak yeşil */
    background-color: #fff; 
}

/* Başlıklar ve Linkler de Yeşil */
h1, h2, h3, h4, h5, h6 { color: var(--primary-green); }
a { color: var(--primary-green); text-decoration: none; transition: 0.3s; }

/* --- HEADER (ŞEFFAF VE BİRLEŞİK) --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    background-color: transparent;
    z-index: 1000;
}

.nav-links { 
    display: flex; 
    gap: 35px; 
}

/* Header Linkleri - BEYAZ KALACAK (Yeşilden Hariç Tutuldu) */
.nav-links a {
    text-decoration: none;
    color: var(--white) !important; /* !important ile yeşili eziyoruz */
    font-weight: 1000; 
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
}

.nav-links a:hover { color: #ddd !important; text-decoration: underline; }

.logo-container { display: flex; justify-content: center; align-items: center; }
.logo-container img {
    height: 70px; 
    width: auto;
}
/* --- HERO (TAM EKRAN GÖRSEL) --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #555;
    background-size: cover;
    background-position: center 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white); /* Hero genel rengi BEYAZ */
    padding-bottom: 150px; 
}

/* Hero Başlıkları - BEYAZ KALACAK */
.hero h1 {
    font-family: 'Brush Script MT', cursive;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    margin-bottom: 10px;
    color: var(--white); 
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    color: var(--white);
}

/* --- ORTAK ALANLAR --- */
.container { max-width: 1100px; margin: 50px auto; padding: 0 20px; }

.page-title { text-align: center; color: var(--primary-green); margin-bottom: 30px; font-size: 2rem; }
.menu-title { color: var(--primary-green); }

.img-box {
    background-color: #ddd;
    border: 2px dashed #999;
    display: flex; align-items: center; justify-content: center;
    color: #555; font-weight: bold;
}

.page-header {
    width: 100%;
    height: 60vh;
    background-color: #666;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* --- FOOTER --- */
footer { 
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #f9f9f9;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    color: var(--primary-green); /* Footer yazıları da artık YEŞİL */
}

footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-custom {
    height: 130px !important;
    width: auto;
    filter: none;
    transform: translateY(-20px);
    transition: 0.3s;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-brand-text {
    font-family: 'Brush Script MT', cursive;
    color: var(--primary-green);
    font-size: 2rem;
    margin: 0;
    text-shadow: 1px 1px 0px rgba(255,255,255,1);
}

.social-icons-wrapper {
    display: flex;
    gap: 15px;
}

.social-icon svg {
    width: 35px;
    height: 35px;
    transition: 0.3s;
    fill: var(--primary-green); /* İkon Rengi */
}

.social-icon:hover svg {
    transform: scale(1.1);
    filter: brightness(0.8);
}
/* --- PDF MENÜ BUTONU --- */
 .pdf-btn-container {
     text-align: center;
     margin: 40px 0 20px 0;
 }

 .pdf-btn {
     display: inline-block;
     padding: 15px 40px;
     background-color: #428d2e;
     /* İçi dolu yeşil */
     color: #ffffff;
     /* Yazı beyaz */
     font-size: 1.1rem;
     font-weight: bold;
     text-decoration: none;
     border: 2px solid #428d2e;
     /* Yeşil kenarlık */
     border-radius: 50px;
     /* Yuvarlak köşeler */
     transition: all 0.3s ease;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .pdf-btn:hover {
     background-color: #ffffff;
     /* Üstüne gelince içi beyaz */
     color: #428d2e;
     /* Yazı yeşil */
     border-color: #428d2e;
     /* Kenarlık sabit kalıyor */
     cursor: pointer;
 }