/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f4f1ea; /* Görseldeki o krem/bej tonu */
}

/* Arka Plan Görseli Alanı */
.hero-section {
    height: 100vh;
    width: 100%;
    /* Buraya senin paylaştığın görseli arka plan olarak koyabilirsin */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('arka.jpeg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo ve Başlık */
header {
    position: absolute;
    top: 40px;
}

.logo {
    width: 80px; /* Logo boyutunu buradan ayarla */
    margin-bottom: 10px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    color: white;
    letter-spacing: 5px;
    font-size: 1.5rem;
}

/* Motto */
.motto {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 3rem;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Buton Grubu */
.button-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2x2 düzeni için */
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15); /* Cam efekti */
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background: white;
    color: #5d534a; /* Ahşap/füme tonu */
    transform: translateY(-3px);
}

/* Form Butonu Farklı Olsun İstersen */
.btn-special {
    background: rgba(163, 177, 138, 0.3); /* Hafif yeşilimsi ton */
}

/* Mobilde butonlar alt alta gelsin */
@media (max-width: 600px) {
    .button-grid {
        grid-template-columns: 1fr;
    }
    .motto {
        font-size: 2rem;
        padding: 0 20px;
    }
}