/* === GENEL AYARLAR VE DEĞİŞKENLER === */
:root {
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    --text-primary: #343a40;
    --text-secondary: #6c757d;
    --accent-gold: #f5b524;
    --accent-dark-gold: #ab8f61;
    --whatsapp-green: #25D366;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    background-color: var(--bg-light);
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 80px 0;
}

/* === HEADER VE NAVİGASYON === */
.sticky-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--accent-gold);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 120px; /* Logonuzun menüdeki yüksekliğini buradan ayarlayabilirsiniz */
    width: auto;  /* Genişliğin otomatik ayarlanması resmin oranını korur */
    display: block; /* Dikey hizalama ve olası boşluk sorunlarını gidermek için */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--bg-light);
}
/* === GALERİ BÖLÜMÜ === */
#gallery {
   padding-top: 60px;
   padding-bottom: 60px;
   background-color: var(--bg-light); /* Galeri için hafif bir arka plan rengi */
}

.gallery-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive ızgara */
   gap: 1.5rem; /* Resimler arasındaki boşluk */
   margin-top: 2rem;
}

.gallery-grid img {
   width: 100%;
   height: auto; /* Yüksekliğin orantılı ayarlanması */
   border-radius: 8px; /* Köşeleri yuvarlatma */
   box-shadow: var(--shadow); /* Hafif gölge */
   transition: transform 0.3s ease-in-out; /* Hover efekti için geçiş */
   object-fit: cover; /* Resimleri boyutlandırırken kırpma uygular */
}

.gallery-grid img:hover {
   transform: scale(1.05); /* Yakınlaşma efekti */
}
/* === HERO BÖLÜMÜ === */
#hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0;
    background: url('bg2.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: var(--accent-dark-gold);
    transform: translateY(-3px);
}

/* === HİZMETLER BÖLÜMÜ === */
#services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* === İLETİŞİM BÖLÜMÜ === */
.contact-wrapper {
    display: flex;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--accent-gold);
    margin-right: 1rem;
    width: 20px;
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-gold);
}

.social-icons-contact {
    margin-top: 2rem;
}

.social-icons-contact a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons-contact a:hover {
    color: var(--accent-gold);
}


.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* === FOOTER === */
footer {
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-notice {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* === SABİT BUTONLAR === */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: transform 0.3s ease;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}

.back-to-top-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--text-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}
.back-to-top-button.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top-button:hover {
    background-color: var(--bg-dark);
    transform: translateY(-5px);
}

/* === ANİMASYONLAR === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === MOBİL UYUMLULUK (RESPONSIVE) === */
@media (max-width: 992px) {
    h2 { font-size: 2.2rem; }
    #hero h1 { font-size: 2.8rem; }
    .contact-wrapper { flex-direction: column; }
}

@media (max-width: 768px) {
    nav ul { display: none; } /* Basit bir mobil menü için gizlendi. Gelişmiş bir JS ile aç/kapa eklenebilir. */
    nav { justify-content: center; }
    h2 { font-size: 2rem; }
    #hero h1 { font-size: 2.2rem; }
    #hero { height: 60vh; }
    section { padding: 60px 0; }
    .contact-wrapper { padding: 2rem; }
}