/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #e2c351;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-title {
    font-size: 28px;
    letter-spacing: 1px;
}

.about-header {
    text-align: center;
    margin-top: 12%;
    margin-bottom: 40px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-paragraph {
    text-align: left;
    font-size: 30px;
    color: #e2c351b5;
    margin-bottom: 30px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.menu {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 999;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Hamburger open/close animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Scroll Box */
.scroll-box {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #555;
    cursor: pointer;
    font-size: 14px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.scroll-box:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Next Section */
.next-section {
    padding: 60px 20px;
    background: #111;
}

.next-section .container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.next-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 20px;
    background: #000;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 998;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    font-size: 24px;
    color: #fff;
    margin: 15px 0;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
}

.mobile-menu li:hover {
    color: #ccc;
}

.mobile-menu li .dot {
    color: #ffcc00;
    font-size: 18px;
    margin-left: 8px;
}

/* Aktif sayfa işareti */
.mobile-menu li.active {
    font-weight: bold;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
}

.language-btn {
    background: none;
    border: none;
    color: #e2c351;
    font-weight: bold;
    cursor: pointer;
}

.language-btn .arrow {
    font-size: 12px;
    margin-left: 4px;
}

.language-list {
    display: none;
    position: absolute;
    background-color: #111;
    border: 1px solid #444;
    min-width: 80px;
    z-index: 10;
    right: 0;
}

.language-list li {
    list-style: none;
}

.language-list li a {
    display: block;
    color: #e2c351;
    padding: 6px 12px;
    text-decoration: none;
}

.language-list li a:hover {
    background-color: #222;
}

/* Services Section */
.services-section {
    background-color: #000;
    padding: 4rem;
    /* soldan 0 padding */
}

.services-title {
    font-size: 50px;
    color: #e2c351;
    margin-bottom: 30px;
    margin-left: 0;
}

.services-description {
    font-size: 30px;
    color: #e2c351b5;
    max-width: 900px;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

.services-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.service-box {
    width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #222;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 1;
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Figure kısmı */
.service-targets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    padding: 1rem;
}

.service-targets figure {
    flex: 1 1 22%;
    cursor: pointer;
}

.service-targets img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-targets img:hover {
    transform: scale(1.05);
}

/* Alt hizmet bölümleri */
.service-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    gap: 2rem;
    max-width: 800px;
    max-height: none;
    margin: 0 auto 4rem auto;
}

.service-left,
.service-right {
    flex: 1 1 45%;
}

.service-block img {
    width: 100%;
    border-radius: 10px;
}

.service-block h2 {
    font-size: 28px;
    margin-bottom: 10px;
    word-break: break-word;
    hyphens: auto;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a:focus,
.mobile-menu a:active,
.mobile-menu a:visited {
    color: white;
    text-decoration: none;
}

.service-block p {
    font-size: 18px;
    color: #e2c351b5;
    line-height: 1.5;
}

/* Ters hizalama için */
.service-block.reverse {
    flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 18px;
    }

    .scroll-box {
        font-size: 13px;
        padding: 8px 16px;
    }

    .next-section h2 {
        font-size: 24px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }

    .services-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-description {
        max-width: 100%;
    }

    .services-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .service-box {
        width: 100%;
        height: auto;
    }

    .main-title {
        font-size: 28px;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
    }

    .service-left,
    .service-right {
        width: 100%;
    }

    .service-block h2 {
        font-size: 22px;
        word-break: break-word;
        hyphens: auto;
    }

    .service-block p {
        font-size: 16px;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {

    .navbar {
        padding: 10px 15px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }
}

/* Link Button */
.link-button {
    display: inline-flex;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    color: #e2c351;
    margin-top: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border-color: #e2c351;
    background-color: black;
    color: #e2c351;
    font-size: 1rem;
    margin-right: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #e2c351;
    box-shadow: 0 0 0 4px #e2c351;
    /* dış daire efekti */
    transition: all 0.3s ease;
}

/* Hover efekti */
.link-button:hover {
    color: #e2c351b5;
}

.link-button:hover .icon-circle {
    background-color: #e2c351b5;
    color: white;
    border: 1px solid #e2c351b5;
    box-shadow: 0 0 0 4px #e2c351b5;
    /* dış daire efekti */
}