@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

/* ─── GENEL ──────────────────────────────────────────────────────────────────── */

.title {
    color: aqua;
    font-family: "Audiowide", sans-serif;
}

.title h1 {
    font-size: 30px;
}

/* ─── HARİTA ─────────────────────────────────────────────────────────────────── */

#map {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.15);
}

/* ─── SOSYAL MEDYA ───────────────────────────────────────────────────────────── */

.social-section {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.social-title {
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: aqua;
    font-size: 14px;
    margin-bottom: 2.5rem;
    font-family: "Audiowide", sans-serif;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s, transform 0.3s;
    font-family: "Audiowide", sans-serif;
}

.social-item i {
    font-size: 2rem;
}

.social-item:hover {
    color: aqua;
    transform: translateY(-4px);
}

/* ─── ULAŞIM ─────────────────────────────────────────────────────────────────── */

.map-section {
    background: #000;
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.map-title {
    letter-spacing: 4px;
    text-transform: uppercase;
    color: aqua;
    font-size: 14px;
    margin-bottom: 1.5rem;
    font-family: "Audiowide", sans-serif;
}

.map-address-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.map-address-input {
    flex: 1;
    background: #111;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 1rem;
    font-family: "Audiowide", sans-serif;
    font-size: 12px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */

@media (max-width: 500px) {
    #map { height: 300px; }
    .title h1 { font-size: 1.5rem; }
    .social-grid { gap: 1.5rem; }
    .map-address-bar { flex-direction: column; }
    .map-address-input { width: 100%; }
}

@media (min-width: 501px) and (max-width: 767px) {
    #map { height: 350px; }
    .title h1 { font-size: 2rem; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #map { height: 400px; }
    .title h1 { font-size: 2.2rem; }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    #map { height: 450px; }
    .title h1 { font-size: 2.5rem; }
}

@media (min-width: 1281px) and (max-width: 1440px) {
    #map { height: 500px; }
    .title h1 { font-size: 2.8rem; }
}

@media (min-width: 1441px) {
    #map { height: 550px; }
    .title h1 { font-size: 3rem; }
    .mb-3 a { font-size: 1rem; }
}
.map-address-bar .btn-custom {
    font-family: "Audiowide", sans-serif;
}