@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

/* 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); 
    background-color: #fff; 
}

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 */
.nav-links a {
    text-decoration: none;
    color: var(--white) !important; 
    font-weight: 900; 
    text-transform: uppercase;
    font-size: 1.4rem; 
    letter-spacing: 2px; 
    text-shadow: 3px 3px 6px rgba(0,0,0,1); 
}

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

.logo-container { display: flex; justify-content: center; align-items: center; }

/* LOGO BÜYÜTME (Zorunlu Kod Eklendi) */
.logo-container img {
    height: 150px !important; /* !important ile kesin büyümesini sağladık */
    width: auto;
    transition: transform 0.3s ease;
    max-height: 200px; /* Aşırı büyümeyi engellemek için güvenlik sınırı */
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* --- HERO (TAM EKRAN GÖRSEL) --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #fff; 
    background-size: cover;
    background-position: center 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 140px;
    padding-bottom: 150px; 
}

.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);
}
.coming-soon-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 2px solid #428d2e;
    margin-top: 20px;
    /* Ekstra güvenlik boşluğu */
}

.coming-soon-title {
    color: #428d2e;
    font-family: 'Brush Script MT', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: none !important;
}

.coming-soon-text {
    color: #555;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: none !important;
}

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background-color: #428d2e;
    color: white !important;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(66, 141, 46, 0.4);
    text-decoration: none;
}

.btn-contact:hover {
    background-color: #357a24;
    transform: translateY(-3px);
}
/* --- 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; }

/* Menü Kategori Başlıkları */
.menu-title { 
    color: var(--primary-green);
    font-family: 'Georgia', serif;
    font-size: 1.6rem; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

.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;
}

/* --- PDF MENÜ BUTONU --- */
.pdf-btn-container {
    display: flex;
    /* Flexbox ile ortalama */
    justify-content: center;
    /* Yatayda ortala */
    align-items: center;
    margin: 40px auto;
    width: 100%;
}

.pdf-btn {
    background-color: #428d2e;
    color: white !important;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #428d2e;
    box-shadow: 0 5px 15px rgba(66, 141, 46, 0.3);
}

.pdf-btn:hover {
    background-color: white;
    color: #428d2e !important;
    transform: translateY(-3px);
}

/* --- 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::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: 'Petit Formal Script', cursive;
        /* Yeni Font */
        color: var(--primary-green);
        font-size: 2rem;
        margin: 0;
        text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
        /* Biraz daha belirgin olması için */
}

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

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

.social-icon:hover svg {
    transform: scale(1.1); filter: brightness(0.8);
}