* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standart (Chrome, Firefox, Opera) */
}

input, textarea {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
    pointer-events: none;
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {           /* Scrollbar'ın genel genişliği */
    width: 12px;
}

::-webkit-scrollbar-track {     /* Scrollbar'ın geçtiği yol */ 
    background: #f8f8f8; 
}

::-webkit-scrollbar-thumb {     /* Hareket eden çubuk (Thumb) */
    background: #C8A24D; 
    border-radius: 0px;         /* Kare köşeler */
    /* Opsiyonel: Çubuğun sağında ve solunda hafif boşluk istersen aşağıdaki satırı ekle */
    /* border: 2px solid #f8f8f8; */
}

::-webkit-scrollbar-thumb:hover {   /* Üzerine gelince renk değişimi */
    background: #b08d3e; 
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/* HEADER ve NAVİGASYON */
header {
    background: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #C8A24D; 
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/* SOL ÜST LOGO TASARIMI */
.logo-link {
    text-decoration: none;
    color: #222;
    display: block;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-weight: 700; 
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.sub-logo {
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-top: 2px;
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/* ANASAYFA GÖRSEL VE BUTON */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1518611012118-696072aa579a'); /* Kendi görsel yolunu ekle */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column; /* İçerikleri alt alta dizer */
    align-items: center;    /* Yatayda ortalar */
    justify-content: center; /* Dikeyde ortalar */
    text-align: center;      /* Metinleri kendi içinde ortalar */
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #C8A24D;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.85;
}

.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

@media (max-width: 768px) {
    /* Menü elemanlarını mobilde alt alta diz ve ortala */
    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        margin-top: 10px;
        padding-left: 0;
    }

    nav ul li a {
        margin: 0 10px;
        font-size: 0.8rem;
    }

    /* Hero başlığını mobilde küçült (iPhone'da taşmaması için) */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/** HAKKIMIZDA BÖLÜMÜ **/
.about-modern {
    padding: 100px 20px 40px; /* Üst 100px, Yanlar 20px, Alt 40px olarak güncellendi */
    background-color: #ffffff;
    text-align: center;
    position: relative;
}

.about-modern h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #222;
    line-height: 1.2;
    margin-bottom: 40px;
}

.about-container {
    max-width: 850px;
    margin: 0 auto;
}

.about-accent-line {
    width: 40px;
    height: 2px;
    background-color: #C8A24D;
    margin: 0 auto 20px;
}

.about-subtitle {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.gold-text {
    color: #C8A24D;
    font-weight: 700;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lead-text {
    font-size: 1.4rem;
    color: #444;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
}

.sub-text {
    font-size: 1rem;
    color: #777;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-badge {
    margin-top: 50px;
    font-size: 0.75rem;
    color: #C8A24D;
    border: 1px solid #C8A24D;
    display: inline-block;
    padding: 8px 15px;
    letter-spacing: 2px;
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/** HİZMETLERİMİZ BÖLÜMÜ **/
#hizmetlerimiz {
    padding-top: 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;       /* Kutular sığmayınca alt satıra geçer */
    justify-content: center; /* SON SATIRDAKİ 2 KUTUYU ORTALAR */
    gap: 30px;             /* Kartlar arasındaki boşluk */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-card {
    flex: 0 1 calc(33.333% - 40px); /* Bir satırda 3 adet kutu olmasını sağlar */
    min-width: 300px;               /* Mobilde çok küçülmemesi için sınır */
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #C8A24D;
}

.service-card h3 {
    font-size: 1.25rem;      /* Başlığı bir tık büyüttük */
    font-weight: 700;
    margin-bottom: 16px;    /* Açıklama ile arayı biraz daha açtık */
    color: #222;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.92rem;         /* 0.9rem'den 0.95rem'e çektik, daha rahat okunur */
    color: #555;             /* Rengi bir ton koyulaştırarak netliği artırdık */
    line-height: 1.6;         /* Satır aralığını açarak ferahlık sağladık */
    margin-bottom: 0;
    padding: 0 5px;
}

.icon-style {
    font-size: 2.6rem;
    color: #C8A24D;
    margin-bottom: 22px;
    display: block;
}

@media (max-width: 992px) {  /* TABLET VE MOBİL UYUMLULUK */
    .service-card {
        flex: 0 1 calc(50% - 30px); /* Tablette yan yana 2 kutu */
    }
}

@media (max-width: 768px) {
    .services-container {
        gap: 20px;
        padding: 0 15px;
    }

    .service-card {
        flex: 0 1 100%; /* Mobilde tekli alt alta */
        padding: 30px 20px;
    }
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/*** KADROMUZ BÖLÜMÜ ***/
#kadromuz {
    padding-top: 40px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Mobilde alt alta gelmesi için */
    margin-top: 40px;
}

.team-card {
    background: #fff;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px); /* Üzerine gelince hafif yükselme efekti */
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    /* Fotoğrafları siyah beyaz yapıp hoverda renklendirebiliriz, çok şık durur */
    filter: grayscale(100%);
    transition: 0.5s;
}

.team-card:hover .team-image img {
    filter: grayscale(0%);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #222;
}

.specialty {
    color: #C8A24D;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.bio {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/*** GOOGLE YORUMLARI ***/
.google-reviews-section {
    max-width: 1200px; /* İçeriği orta genişlikte tutar */
    margin: 40px auto; /* Üstten ve alttan boşluk bırakır, yatayda ortalar */
    padding: 0 20px;   /* Mobilde kenarlardan boşluk bırakır */
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/*** İLETİŞİM BÖLÜMÜ ***/
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-link {
    text-decoration: none;
    color: inherit; /* Yazı rengini bozmaz */
    transition: color 0.3s;
}

.contact-link:hover {
    color: #24d367;
}

.map-wrapper {
    flex: 1;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden; /* Köşelerin yuvarlak olması için */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.instagram-text {
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(45deg,
        #f9ce34 0%,
        #ee2a7b 50%,
        #6228d7 100%
    );
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
    
    /* Okunabilirliği desteklemek için çok hafif bir gölge */
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.1));
}

/* Mobil Uyumluluk (Ekran küçülünce alt alta gelsinler) */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .map-wrapper {
        height: 250px;
    }
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/*** TÜM HAKLARI SAKLIDIR ***/
.main-footer {
    background-color: #fff;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-content p {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.5px;
}

footer p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.designer-name {
    color: #C8A24D;
    font-weight: 700;
    margin-left: 2px;   /* "by" kelimesinden hafif bir boşluk */
    transition: 0.3s;
    cursor: pointer;
}

.designer-name:hover {
    color: #222;
    text-decoration: underline;
}

.designer-link {
    color: #C8A24D;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.designer-link:hover {
    color: #222;            /* Üzerine gelince koyu gri/siyah olur */
    transform: translateY(-1px); /* Çok hafif yukarı kayma efekti */
    text-decoration: underline;  /* Üzerine gelince altı çizilsin (isteğe bağlı) */
}

/* Mobilde yazı boyutunu hafif küçültelim */
@media (max-width: 480px) {
    .footer-content p {
        font-size: 0.75rem;
    }
}
/* -------------------------------------------------- */










/* -------------------------------------------------- */
/*** WHATSAPP BUTON TASARIMI ***/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #24d367;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #20ba5a;
}
/* -------------------------------------------------- */