/* General Styles */
body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #fff;
    color: #333;
    scroll-behavior: smooth;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.btn.contact-btn {
    display: inline-block;
    width: 280px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn.contact-btn:first-child {
    background-color: #25D366;
    /* WhatsApp yeşili */
    color: white;
}

.btn.contact-btn:first-child:hover {
    background-color: #1ebe5a;
}

.btn.phone-btn {
    background-color: #f5f5dc;
    /* krem rengi */
    color: black;
    border: 1px solid #ccc;
}

.btn.phone-btn:hover {
    background-color: #e0e0c0;
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 100dvh;
    /* Daha modern ve doğru çözüm */
    padding-top: env(safe-area-inset-top, 20px);
    /* iPhone çentiği için güvenli boşluk */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.hero a {
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.hero-subtext {
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 60px auto;
    /* Alt boşluk  */
    line-height: 1.6;
    color: #f5f5f5;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.spacer {
    height: 60px;
    /* Buton yüksekliği kadar boşluk */
}

/* Section Title */
section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #222;
}

/* GALERİ STİLİ */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 40px 20px;
    background-color: #fff;
}

.gallery img {
    width: calc(33.33% - 22px);
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery img {
        width: calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 100%;
    }
}


/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

#lightbox:empty {
    display: none;
}

/* Map Section */
.map {
    padding: 2rem;
    text-align: center;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}