    :root {
        --primary-color: #2b7a78;
        --secondary-color: #3aafa9;
        --accent-color: #def2f1;
        --whatsapp-color: #25D366;
        --instagram-color: #E1306C;
        --text-color: #333;
        --bg-color: #f9f9f9;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        line-height: 1.6;
        color: var(--text-color);
        background: var(--bg-color);
    }

    header {
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        background-color: #fff;
    }
    .navbar .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--primary-color);
        font-weight: bold;
    }
    .navbar .logo img {
        height: 40px;
        margin-right: 0.5rem;
    }
    .navbar .logo span {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--primary-color);
        white-space: nowrap;
    }

    /* Nav links - masaüstü */
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    .nav-links a {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: bold;
        position: relative;
        transition: color 0.3s;
        white-space: nowrap; /* Satır kırılmasını önle */
    }
    .nav-links a:hover {
        color: var(--secondary-color);
    }

    .menu-toggle {
        display: none;
        align-items: center;
        cursor: pointer;
        background: none;
        border: none;
        font: inherit;
        color: var(--primary-color);
        padding: 0.25rem 0.5rem;
    }
    .menu-toggle i {
        font-size: 1.25rem;
        margin-right: 0.5rem;
    }

    main {
        margin-top: 70px; /* header yüksekliğine göre */
    }

    /* Mobilde: nav-links gizle, menu-toggle göster */
    @media (max-width: 768px) {
        .navbar {
            padding: 0.5rem 1rem;
        }
        .nav-links {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 2rem 1rem;
            z-index: 1001;
            overflow-y: auto;
        }
        .nav-links.active {
            display: flex;
        }
        .menu-toggle {
            display: flex;
        }
    }
    /* Masaüstüne/Daha geniş görünüm: nav-links her zaman görünür, menu-toggle gizli */
    @media (min-width: 769px) {
        .nav-links {
            display: flex !important;
            position: static;
            height: auto;
            background: none;
            flex-direction: row;
            padding: 0;
            flex-wrap: wrap;             /* Ara genişlikte sarma */
            justify-content: center;     /* Ortala */
            gap: 1rem;                   /* Daha küçük gap */
        }
        .menu-toggle {
            display: none !important;
        }
    }
    /* Orta boy ekranlardaki font-boyutunu biraz küçültme (opsiyonel ama denge sağlar) */
    @media (min-width: 769px) and (max-width: 900px) {
        .nav-links a {
            font-size: 0.9rem;
            padding: 0 0.5rem;
        }
        .navbar .logo span {
            font-size: 1.1rem;
        }
    }
        .hero {
            height: calc(100vh - 70px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                        url('hero-bg.jpg') center/cover no-repeat;
            padding-top: 70px;
        }
        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .cta-button {
            background: var(--secondary-color);
            color: white;
            padding: 1.2rem 3rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            background: #2d9c99;
        }

        .services {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.8rem;
            color: var(--primary-color);
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 1rem auto 0;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-card i {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 3.5rem;
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }


/* Blog bölümünü widget'ın üstüne bindir */
.blog {
    position: relative;
    background: #f8fafa;
    
}

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 3rem auto 0;
            padding: 0 2rem;
        }
        .blog-post {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }
        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .blog-thumbnail {
            height: 200px;
            overflow: hidden;
        }
        .blog-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .blog-content {
            padding: 1.8rem;
        }
        .blog-content h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }
        .blog-content p {
            color: #555;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .read-more {
            display: inline-block;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .read-more:hover {
            color: var(--primary-color);
        }
        .blog-footer {
            text-align: center;
            margin-top: 4rem;
            width: 100%;
            padding: 0 2rem;
        }
        .blog-button {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(43, 122, 120, 0.2);
        }
        .blog-button:hover {
            background: #236967;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(43, 122, 120, 0.3);
        }

.blog-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-post-link .read-more {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-block;
}
.blog-post-link .read-more:hover {
  color: var(--primary-color);
}
.blog-post:hover {
  cursor: pointer;
}


        .windsurf {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }
        .windsurf-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 3rem;
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .windsurf-video {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .windsurf-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .windsurf-text {
            text-align: left;
        }
        .windsurf-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        .windsurf-text p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .youtube-btn {
            display: inline-flex;
            align-items: center;
            background: #FF0000;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .youtube-btn i {
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }
        .youtube-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            background: #e60000;
        }

        .instagram-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #fdf4f7 0%, #f0f9fa 100%);
            text-align: center;
        }
        .instagram-embed {
            max-width: 800px;
            margin: 0 auto 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .instagram-embed iframe {
            width: 100%;
            height: 600px;
            border: none;
            border-radius: 10px;
        }
        .instagram-link {
            display: inline-flex;
            align-items: center;
            background: var(--instagram-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .instagram-link i {
            margin-right: 0.8rem;
        }
        .instagram-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            background: #c13584;
        }

        .contact {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }
        .contact-info {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        .contact-info p {
            margin: 1.2rem 0;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 1rem;
            color: var(--secondary-color);
            width: 25px;
            text-align: center;
        }
        .working-hours {
            margin-top: 2.5rem;
        }
        .map-container {
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .button-group {
            display: flex;
            gap: 1.5rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .direction-btn {
            display: inline-flex;
            align-items: center;
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .direction-btn i {
            margin-right: 0.8rem;
        }
        .direction-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            background: #236967;
        }
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            background: var(--whatsapp-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .whatsapp-btn i {
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            background: #128C7E;
        }

        footer {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 3rem 0;
            margin-top: 5rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }
        .footer-content .logo {
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
        }
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--accent-color);
        }
        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            padding: 0 5%;
            max-width: 1000px;
            margin: 2rem auto;
        }
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            background: white;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
        }
        .image-container {
            position: relative;
            padding-top: 100%;
            overflow: hidden;
        }
        .image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(42, 122, 120, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .overlay i {
            color: white;
            font-size: 2rem;
        }
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            box-sizing: border-box;
        }
        .lightbox-content {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            animation: lightboxFade 0.3s ease-out;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
        .lightbox-content.loaded {
            transform: scale(1);
        }
        .close-btn {
            position: fixed;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 3rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
            z-index: 2001;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .close-btn:hover {
            color: var(--secondary-color);
            transform: rotate(90deg);
            background: rgba(0, 0, 0, 0.8);
        }
        @keyframes lightboxFade {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .loader {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--secondary-color);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            display: none;
            z-index: 2002;
        }
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @media (max-width: 1024px) {
            .windsurf-content {
                grid-template-columns: 1fr;
            }
            .windsurf-text {
                text-align: center;
            }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .contact-container { grid-template-columns: 1fr; }
            .map-container { height: 300px; }
            .button-group { flex-direction: column; }
            .instagram-embed iframe { height: 400px; }
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                padding: 0 3%;
            }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .section-title { font-size: 2.2rem; }
            .gallery-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
            }
            .instagram-embed iframe { min-height: 300px; }
            .logo img { height: 35px; }
            .logo span { font-size: 1.5rem; }
        }


.blog-container {
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem 4rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}
.blog-container h1 {
  color: #2b7a78;
  font-size: 2rem;
  margin: 2rem 0 1rem;
  text-align: center;
}
.blog-container h2 {
  color: #3aafa9;
  font-size: 1.4rem;
  margin-top: 2rem;
}
.blog-container p {
  margin: 1.2rem 0;
}
.blog-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.related-posts {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}
.related-posts h2 {
  font-size: 1.5rem;
  color: #2b7a78;
  text-align: center;
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.related-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.related-thumb {
  height: 160px;
  overflow: hidden;
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-content {
  padding: 1rem;
}
.related-content h3 {
  color: #2b7a78;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.related-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
.button-wrapper {
  text-align: center;
  margin-top: 3rem;
}
.back-button {
  display: inline-block;
  background: #2b7a78;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s;
}
.back-button:hover {
  background: #236967;
}

/* Tüm metin içi linkler */
a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

/* Hover efekti */
a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}


.blog-container h3 {
  font-size: 1.1rem;
  color: #29615e;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-container ul {
  margin: 1rem 0 1rem 1.5rem;
}

.blog-container ul li {
  margin: 0.5rem 0;
}

.blog-container p {
  margin-bottom: 1.2rem;
}
