/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Stili */
header {
    background-color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo h1 {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}

.contact-button {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.whatsapp-button {
    background-color: #25D366;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* Ana İçerik */
main {
    margin-top: 80px;
    background-color: #0a0a0a;
}

/* Hero Bölümü */
.hero {
    background-color: #0a0a0a;
    padding: 2rem 0;
}

.hero .slide img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    background-color: #0a0a0a;
}

/* Hakkımızda Bölümü */
.hakkimizda {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
    text-align: center;
}

.hakkimizda h2 {
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
}

.hakkimizda p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Galeri Bölümü */
.galeri {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

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

.galeri-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.galeri-item img:hover {
    transform: scale(1.05);
}

/* İletişim Bölümü */
.iletisim {
    background-color: #0a0a0a;
    padding: 4rem 2rem;
}

.iletisim h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.iletisim-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.iletisim-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.email-link {
    font-size: 1.8rem;
    color: #9fff24;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.email-link i {
    color: #9fff24;
    font-size: 1.6rem;
}

.link-arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.iletisim-link:hover .link-arrow {
    transform: translate(5px, -5px);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-info p {
    color: #ffffff;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: white;
    padding: 2rem 0;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.social-button i {
    font-size: 2.5rem;
}

/* Sosyal medya butonları için özel renkler */
.social-button:hover {
    transform: translateY(-5px);
}

/* Facebook */
.social-button:nth-child(1) i {
    color: #1877f2;
}

/* Instagram */
.social-button:nth-child(2) i {
    background: -webkit-linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .social-media {
        gap: 1.5rem;
    }
    
    .social-button {
        width: 50px;
        height: 50px;
    }
    
    .social-button i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .social-media {
        gap: 1.2rem;
    }
    
    .social-button {
        width: 45px;
        height: 45px;
    }
    
    .social-button i {
        font-size: 1.8rem;
    }
}

/* Hero Slider Stili */
.hero .slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.hero .slide img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    background-color: #0a0a0a;
}

/* Galeri Slider Stili */
.galeri-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
}

.galeri-slider .slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero .slider-container {
        height: 400px;
    }
    
    .hero .slide img {
        height: 400px;
    }
    
    .galeri-slider {
        height: 350px;
    }
    
    .galeri-slider .slide img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero .slider-container {
        height: 300px;
    }
    
    .hero .slide img {
        height: 300px;
    }
    
    .galeri-slider {
        height: 250px;
    }
    
    .galeri-slider .slide img {
        height: 250px;
    }
}

/* Slider Stili */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

/* Galeri Slider Özel Stili */
.galeri-slider .slide img {
    height: 400px;
    border-radius: 8px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        height: 300px;
    }

    .galeri-grid {
        grid-template-columns: 1fr;
    }

    .slide img {
        height: 300px;
    }
    
    .galeri-slider .slide img {
        height: 250px;
    }
    
    .slider-button {
        padding: 0.5rem;
        font-size: 1rem;
    }

    nav {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .contact-button, .whatsapp-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .whatsapp-button i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .logo {
        flex-shrink: 1;
        max-width: 60%;
    }
    
    .logo a {
        gap: 0.3rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .nav-buttons {
        display: flex;
        gap: 0.3rem;
        flex-shrink: 0;
    }
    
    .contact-button, .whatsapp-button {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    .whatsapp-button i {
        font-size: 0.8rem;
    }

    .nav-link {
        font-size: 0.65rem;
    }
}

.iletisim-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.iletisim-text {
    color: #ffffff;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 500;
    max-width: 600px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .iletisim-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .iletisim-text {
        font-size: 1.1rem;
    }
    
    .iletisim-info {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* İletişim başlığı düzenlemeleri */
.iletisim h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .iletisim h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .iletisim h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .email-link {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .email-link i {
        font-size: 0.9rem;
    }
    
    .link-arrow {
        font-size: 0.9rem;
    }
    
    .iletisim-link {
        font-size: 1rem;
    }
}

/* iPhone SE ve benzer küçük ekranlar için özel düzenlemeler */
@media (max-width: 375px) {
    .iletisim h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .iletisim-text {
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0 1rem;
        white-space: normal;
        letter-spacing: normal;
        transform: none;
        width: 100%;
        margin: 0;
        font-weight: 400;
    }

    .email-link {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }

    .email-link i {
        font-size: 0.8rem;
    }
}

/* Mevcut mobil düzenlemeler güncelleme */
@media (max-width: 480px) {
    nav {
        padding: 0.4rem 0.3rem;
        gap: 0.25rem;
    }

    .logo {
        max-width: 52%;
    }
    
    .logo img {
        height: 28px;
    }
    
    .logo h1 {
        font-size: 0.65rem;
        letter-spacing: -0.1px;
    }
    
    .contact-button, .whatsapp-button {
        padding: 0.25rem 0.35rem;
        font-size: 0.65rem;
    }
}

/* Hizmetler Sayfası */
.hizmetler {
    padding: 6rem 2rem;
    background-color: #0a0a0a;
    min-height: calc(100vh - 80px);
}

.hizmetler-header {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
}

.hizmetler-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hizmetler-header p {
    font-size: 1.2rem;
    color: #999;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hizmet-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hizmet-card:hover {
    transform: translateY(-10px);
}

.hizmet-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.hizmet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hizmet-card:hover .hizmet-image img {
    transform: scale(1.1);
}

.hizmet-card h2 {
    color: #ffffff;
    font-size: 1.5rem;
    padding: 1.5rem;
    margin: 0;
}

.hizmet-card p {
    color: #999;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hizmetler {
        padding: 4rem 1rem;
    }

    .hizmetler-header h1 {
        font-size: 2.5rem;
    }

    .hizmetler-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hizmetler-header h1 {
        font-size: 2rem;
    }

    .hizmetler-header p {
        font-size: 1rem;
    }

    .hizmet-card h2 {
        font-size: 1.3rem;
        padding: 1rem;
    }

    .hizmet-card p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .hizmet-image {
        height: 200px;
    }
} 

/* Referanslar Bölümü */
.referanslar {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
}

.referanslar-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.referanslar-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.referanslar-header p {
    font-size: 1.2rem;
    color: #999;
}

/* Referans Slider Özel Stili */
.referans-slider {
    height: 500px;
}

.referans-slider .slide {
    position: relative;
}

.referans-slider .slide img {
    height: 500px;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.slide-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.slide-info p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

/* Referanslar Responsive Tasarım */
@media (max-width: 768px) {
    .referanslar {
        padding: 3rem 1rem;
    }

    .referanslar-header h2 {
        font-size: 2.5rem;
    }

    .referanslar-header p {
        font-size: 1.1rem;
    }

    .referans-slider {
        height: 400px;
    }

    .referans-slider .slide img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .referanslar-header h2 {
        font-size: 2rem;
    }

    .referanslar-header p {
        font-size: 1rem;
    }

    .referans-slider {
        height: 300px;
    }

    .referans-slider .slide img {
        height: 300px;
    }

    .slide-info h3 {
        font-size: 1.2rem;
    }

    .slide-info p {
        font-size: 0.9rem;
    }
} 

 