@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    body {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        font-family: "Archivo Black", sans-serif;
        overflow: hidden;
    }

    .video-bg {
        position: fixed;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    /* Arkaplan overlay */
    .bg-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

    /* Navbar Styles */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.3s ease;
    }

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

    .nav-logo {
        height: 40px;
    }

    .nav-logo img {
        height: 100%;
        width: auto;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .nav-menu li a {
        color: rgb(230, 207, 4);
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
        padding-left: 15px;
    }

    .nav-menu li a:hover {
        color: white;
        transform: translateY(-2px);
    }

    .nav-menu li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: rgb(230, 207, 4);
        transition: width 0.3s ease;
    }

    .nav-menu li a:hover::after {
        width: 100%;
    }

    /* Mobile menu toggle */
    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background-color: rgb(230, 207, 4);
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Main content */
    .main-content {
        flex: 1;
        position: relative;
        overflow: hidden;
    }

    /* Section styles */
    .section {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease-in-out;
        visibility: hidden;
    }

    .section.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    /* Anasayfa section */
    #anasayfa .container {
        margin: 0 auto;
        text-align: center;
        padding-top: 80px;
    }

    /* Hakkımızda Section Styles */
    .hakkimizda-section {
        padding: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    }

    .hakkimizda-container {
        width: 100%;
        height: 100%;
    }

    .hakkimizda-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 100%;
        width: 100%;
    }

    .hakkimizda-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
    }

    .hakkimizda-text h2 {
        font-size: 48px;
        color: rgb(230, 207, 4);
        margin-bottom: 30px;
        font-weight: bolder;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hakkimizda-text p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        font-family: 'Arial', sans-serif;
        font-weight: normal;
        text-align: justify;
        color: #f0f0f0;
    }

    .hakkimizda-video {
        position: relative;
        overflow: hidden;
    }

    .hakkimizda-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* İletişim Section Styles */
    .iletisim-section {
        padding: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    }

    .iletisim-container {
        width: 100%;
        height: 100%;
    }

    .iletisim-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 100%;
        width: 100%;
    }

    .iletisim-video {
        position: relative;
        overflow: hidden;
    }

    .iletisim-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .iletisim-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
    }

    .iletisim-text h2 {
        font-size: 48px;
        color: rgb(230, 207, 4);
        margin-bottom: 30px;
        font-weight: bolder;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .iletisim-text p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
        font-family: 'Arial', sans-serif;
        font-weight: normal;
        text-align: justify;
        color: #f0f0f0;
    }

    .iletisim-info {
        margin: 30px 0;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-item a {
        display: flex;
        align-items: center;
        color: rgb(230, 207, 4);
        text-decoration: none;
        font-size: 18px;
        transition: all 0.3s ease;
        padding: 10px 0;
    }

    .contact-item a:hover {
        color: white;
        transform: translateX(10px);
    }

    .contact-item i {
        margin-right: 15px;
        font-size: 20px;
        width: 25px;
    }

    .teklif-text {
        margin-top: 30px;
        padding: 20px;
        background: rgba(230, 207, 4, 0.1);
        border-left: 4px solid rgb(230, 207, 4);
        border-radius: 5px;
    }

    .teklif-text p {
        margin: 0;
        color: rgb(230, 207, 4);
        font-size: 16px;
        text-align: center;
        font-weight: bold;
    }

    .container {
        margin: 0 auto;
        text-align: center;
    }

    .logo {
        width: 250px;
        margin: 0 auto 30px;
    }

    .logo img {
        width: 100%;
    }

    .description h2 {
        font-size: 75px;
        font-weight: bolder;
        font-style: italic;
        color: rgb(230, 207, 4);
        margin: 0 auto 30px;
        letter-spacing: 20px;
        line-height: 100px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .btn {
        margin: 50px auto 0;
    }

    .btn a {
        background-color: rgb(230, 207, 4);
        color: #000;
        padding: 15px 75px;
        text-decoration: none;
        border-radius: 7px;
        font-weight: bold;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn a:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(230, 207, 4, 0.3);
    }

    .contact {
        margin-top: 40px;
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 15px;
        border-radius: 7px;
        backdrop-filter: blur(5px);
    }

    .contact a {
        text-decoration: none;
        color: rgb(230, 207, 4);
        transition: all 0.3s ease;
    }

    .contact a:hover {
        color: white;
        transform: scale(1.05);
    }

    .contact a i {
        margin-right: 10px;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            flex-direction: column;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: left 0.3s ease;
            gap: 20px;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-toggle {
            display: flex;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hakkımızda Mobile Styles */
        .hakkimizda-content {
            grid-template-columns: 1fr;
            height: 100%;
        }

        .hakkimizda-video {
            display: none;
        }

        .hakkimizda-text {
            padding: 40px 20px;
            background: transparent;
            text-align: center;
            overflow-y: auto;
        }

        .hakkimizda-text h2 {
            font-size: 36px;
            margin-bottom: 25px;
        }

        .hakkimizda-text p {
            font-size: 15px;
            text-align: left;
            margin-bottom: 20px;
        }

        /* İletişim Mobile Styles */
        .iletisim-content {
            grid-template-columns: 1fr;
            height: 100%;
        }

        .iletisim-video {
            display: none;
        }

        .iletisim-text {
            padding: 40px 20px;
            background: transparent;
            text-align: center;
            overflow-y: auto;
        }

        .iletisim-text h2 {
            font-size: 36px;
            margin-bottom: 25px;
        }

        .iletisim-text p {
            font-size: 15px;
            text-align: center;
            margin-bottom: 20px;
        }

        .contact-item a {
            justify-content: center;
            font-size: 16px;
        }

        .teklif-text p {
            font-size: 14px;
        }

        .logo {
            width: 200px;
        }

        .description h2 {
            font-size: 55px;
        }
    }

    @media (max-width: 520px) {
        .logo {
            width: 150px;
        }

        .description h2 {
            line-height: 60px;
            font-size: 45px;
        }

        .contact {
            width: 95%;
            margin: 40px auto 0;
        }

        .contact a {
            font-size: 12px;
        }

        .btn a {
            padding: 12px 50px;
            font-size: 14px;
        }
    }