body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f5f5;
    color:#222;
}

/* ---------------- HEADER ---------------- */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #ddd;
}

/* LOGO */
.logo img{
    height:50px;       /* Logoyu küçülttüm */
    width:auto;
    display:block;
}

/* MASAÜSTÜ MENÜ */
header nav{
    display:flex;
    gap:25px;
}

header nav a{
    text-decoration:none;
    color:#444;
    font-size:15px;
    font-weight:500;
    transition:.2s;
}

header nav a:hover{
    color:#0077ff;
}

/* HAMBURGER ICON */
.hamburger{
    width:30px;
    height:22px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.hamburger span{
    height:4px;
    background:black;
    border-radius:5px;
    transition:all .3s;
}

/* ---------------- HERO ---------------- */

.hero{
    background:url('https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    color:white;
    text-shadow:0 2px 7px rgba(0,0,0,0.8);
}

.hero h1{
    font-size:46px;
    margin:0;
    font-weight:700;
}

.hero p{
    font-size:18px;
    margin-top:10px;
}

/* ---------------- FILTER BOX ---------------- */

.filter-box{
    margin:25px auto;
    max-width:900px;
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    display:flex;
    gap:20px;
}

.filter-box input, 
.filter-box select{
    padding:12px;
    width:100%;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

.btn{
    padding:12px 20px;
    border:none;
    background:#333;
    color:white;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
}
.btn:hover{background:#111;}

/* ---------------- GRID & CARDS ---------------- */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:20px;
    max-width:1200px;
    margin:20px auto 60px;
    padding:0 20px;
}

.card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:transform .25s ease,box-shadow .25s ease;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.card-body{
    padding:15px;
}

.card-body h3{
    font-size:17px;
    font-weight:600;
    margin-bottom:6px;
    color:#222;
}

.card-body p{
    font-size:14px;
    color:#888;
    margin:0 0 8px 0;
}

.card-body .price{
    font-size:18px;
    font-weight:700;
    color:#28a745;
}

.card.pointer:hover{
    transform:scale(1.03);
}

/* ---------------- MODAL ---------------- */

.modal-bg{
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.modal{
    background:white;
    border-radius:12px;
    max-width:600px;
    width:100%;
    overflow:hidden;
    animation:pop .25s ease;
}

@keyframes pop{
    from{transform:scale(.85);opacity:0;}
    to{transform:scale(1);opacity:1;}
}

.modal img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.modal-content{
    padding:20px;
}

.close-btn{
    background:#111;
    color:#fff;
    padding:10px 16px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    margin-top:15px;
}

/* FOOTER */
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:15px;
    margin-top:40px;
}

/* ---------------- MOBIL MENÜ ---------------- */

@media(max-width:768px){
    nav{
        position:fixed;
        top:70px;
        right:-250px;
        width:200px;
        background:white;
        box-shadow:-3px 0 10px rgba(0,0,0,.2);
        display:flex;
        flex-direction:column;
        gap:20px;
        padding:20px;
        transition:right .3s ease;
    }

    nav.open{
        right:0;
    }

    .hamburger{
        display:flex;
    }

    header nav a{
        font-size:18px;
    }
}



/* Hakkımızda Hero */
.about-hero {
    background: url('assets/about-hero.jpg') center/cover;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.45);
}

.about-hero .hero-text {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}

/* İçerik Bölümü */
.about-section {
    padding: 50px 20px;
    background: #fff;
}

.about-container {
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
}

.about-container h2,
.about-container h3 {
    margin-top: 20px;
    color: #333;
}

.about-container p {
    margin-top: 10px;
    color: #555;
}

/* ------------------ İLETİŞİM SAYFASI RESPONSIVE ------------------ */

/* Hero responsive */
.contact-hero {
    background: url('assets/about-hero.jpg') center/cover;
    height: 280px;
    padding: 20px;
}

.contact-hero h1 {
    font-size: 34px;
}

.contact-hero p {
    font-size: 16px;
    padding: 0 10px;
}

/* İçerik bölümü */
.contact-section {
    padding: 40px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Tablet ve Mobil İçin */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        padding: 0 10px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}

.contact-info h2,
.contact-form h2 {
    font-size: 22px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
}

/* Form alanı */
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* Harita */
.map-section iframe {
    width: 100%;
    height: 350px;
}

@media (max-width: 768px) {
    .map-section iframe {
        height: 280px;
    }
}

/* Mobil için hero düzeni */
@media (max-width: 768px) {
    .contact-hero {
        height: 220px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 14px;
    }
}

/* En küçük cihazlar */
@media (max-width: 480px) {
    .contact-info h2,
    .contact-form h2 {
        font-size: 20px;
    }

    .contact-container {
        gap: 20px;
    }
}


.map-section {
    padding: 0;
    margin-top: 20px;
}

.map-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobilde daha kısa harita */
@media (max-width: 768px) {
    .map-wrapper {
        height: 280px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 220px;
    }
}


.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.card {
    position: relative;
}

.social-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* Renkler */
.social-btn.whatsapp {
    background: #25D366;
}
.social-btn.instagram {
    background: #E1306C;
}
.social-btn.facebook {
    background: #1877F2;
}

/* Mobil için biraz küçültelim */
@media (max-width: 480px) {
    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}


.social-btn.sahibinden img {
  width: 24px;
  height: 24px;
}
.social-btn.sahibinden {
  background: #FFD500; /* sahibinden sarı ton */
  color: #000;
}

