* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Playfair Display", serif;
            font-optical-sizing: auto;
            font-weight: 550;
            font-style: normal;
        }


        /* 2. NAVBAR STİLLERİ */
        nav {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.925) 0%, rgba(0, 0, 0, 0) 100%);
            background-color: transparent;
            height: 150px;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 50px;
            position: absolute; 
            top: 0;
            left: 0;
            z-index: 10;
            justify-content: flex-end; /* Linkleri sağa itmek için */
        }

        .logo-container {
          position: absolute;
          left: 50%;          
          transform: translateX(-50%);
          height: 100%;
          display: flex;
          align-items: center;
          z-index: 101;
        }

        .logo-container img {
         height: 135px;
         width: auto;
        }

        .logo {
            margin-top: 3vh;
            text-decoration: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* LİNKLER (Desktop) */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2); /* Okunabilirlik için gölge */
            color: #ffffff;
            text-decoration: none;
            font-size: 22px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: rgba(170, 0, 0);
        }

     
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 5px;
        }

  
        @media screen and (max-width: 1200px) {

            .logo-container img {
             height: 110px;
             width: auto;
            }
          
            .logo {
                position: static;
                transform: none;
                margin-right: auto; 
            }

            nav {
                z-index: 9999;
                justify-content: space-between; 
            }

    
            .nav-links {
                position: fixed;
                right: 0;
                top: 0; 
                height: 100vh;
                background-color: #0a0a0a;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.499) 100%);
                flex-direction: column;
                align-items: center;
                justify-content: center; 
                width: 50%;
                display: flex;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
                padding-top: 50px;
                z-index: 9999;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }

            .nav-links li {
                margin: 20px 0;
            }

            .hamburger {
                display: flex;
                position: fixed;
                z-index: 10000;  
                background-color: rgba(0, 0, 0, 0.15); 
                padding: 5px;
                border-radius: 5px;
            }
        }

        .nav-active {
            transform: translateX(0%) !important;
        }

        html, body {
      position: relative;
      height: 100%;
      font-size: 14px;
      margin-top: 0;
      padding: 0;
      margin: 0;
      width: 100%;
      overflow-x: hidden;
      background-color: #121212;
    }

.contact-section {
    margin-top: 150px;
    background-color: #121212; 
    color: #e0e0e0;
    padding: 50px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.contact-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;   
}


.map-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #7a7a7a;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 20px 10px;
    }
}

.how-to-reach {
    margin-top: 40px;
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6; 
}

.how-to-reach h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.how-to-reach p {
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 60px;
    text-align: center; 
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

.contact-item p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6; 
    margin: 0;
}

.contact-item a {
    text-decoration: none;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #c50000; 
    text-shadow: 0 0 8px rgba(93, 0, 0, 0.4); 
}


@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; 
        gap: 50px; 
    }

    .contact-title {
        font-size: 2rem;
    }
}


    .main-footer {
    width: 100%;
    min-height: 100vh;
    background-color: #0a0a0a; 
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    padding: 50px;
    position: relative;
    box-sizing: border-box;
    
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 60px; 
    width: 100%;
    max-width: 1000px; 
    margin-bottom: auto;
    margin-top: auto;   
}


.footer-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1); 
    transition: all 0.4s ease;
    border-radius: 5px;
}


.footer-item:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: #fff;
    transform: translateY(-10px);
}


.icon-box {
    font-size: 2.5rem;
    margin-right: 25px;
    color: #888;
    transition: color 0.3s ease;
}

.footer-item:hover .icon-box {
    color: #fff; 
}


.text-box h3 {
    font-size: 1.2rem;
    font-weight: 750;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.text-box p {
    font-size: 0.9rem;
    color: #a4a4a4;
    transition: color 0.3s;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.footer-item:hover .text-box p {
    color: #ccc;
}


.footer-bottom {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 50px;
}


.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #555, transparent); 
    margin-bottom: 30px;
}

.urgco {
    font-family: "amandine", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fafafa;
    font-size: 1.3rem;
}


@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .footer-item {
        padding: 20px; 
    }

    .icon-box {
        font-size: 1.8rem;
    }

    .main-footer {
        padding: 30px 20px;
    }
}


.footer-logo {
    display: inline-block;
    margin-bottom: 50px; 
    transition: transform 0.3s ease;
}

.footer-logo img {
    height: 120px; 
    width: auto;  
    display: block;
}


.footer-logo:hover {
    transform: scale(1.05);
}


@media screen and (max-width: 768px) {
    .footer-logo img {
        height: 80px; 
    }
    
    .footer-logo {
        margin-bottom: 30px; 
    }
}