/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Poppins,Helvetica, Arial, Sans-Serif, serif;
    font-weight:400;
}

body {
    margin: 0;
}

.hero{
    background-image: url(bg4.jpg);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-container {
    width: 65%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mid-container {
    padding: 20px;
    max-width: 600px;
}

/* Header ve Akıllı Gizleme */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%); /* Aşağı kaydırınca yukarı gizlenir */
}

/* Top Bar */
.top-bar {
    background-image: url(banner1.jpg);
    color: #fff;
    font-size: 14px;
    padding: 7px 0;
}

.contact-info  {
    width: 85%;
}

.contact-info span {
    margin-right: 10px;
}

.contact-info span a {
    padding-left: 10px;
}

.social-links {
    width: 15%;
    text-align: right;
}

.social-links a {
    color: #fff;
    transition: 0.3s;
    font-size: 17px;
}

.social-links a:hover {
    color: #dacccc;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}

.logo {
    width: 17%;
    align-items: center;
}

.logo-img {
    height: 50px;    /* Logonun yüksekliğini buradan ayarla */
    width: auto;     /* Oranı korumak için genişliği otomatiğe bırak */
    display: block;  /* Altındaki boşlukları temizler */
    transition: 0.3s; /* Hover animasyonu için */
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.nav-container {
    display: flex;
    width: 66%;
    text-align: right;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: 0.3s;
    position: relative;

}

.nav-links a:hover {
    color: #00516E;
}

/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: 0.4s;
}

h1 {
    color: #27272A;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.dot {
    color: #6fcacb; /* Vurgu rengi */
}

p {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 30px;
}

.launch-date {
    background: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid #444;
}

.search {
    background: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid #444;
    width: 17%;
}

.footer {
    padding: 2rem 1.5rem;
    background-image: url(footerbg.png);
    height: auto;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 175px;
    border-style: none;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
}

.col{
    flex: 1;
    width: 100%;
    height: auto;
    justify-content: center;
    padding: 16px 24px;
}

.footer-brand p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}
        
.footer-brand .logo {
    width: 150px;
    padding-bottom: 10px;
}

.footer-heading {
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1,4;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer-links{
    height: auto;

    .fa-solid, .fab {
        font-size: 30px;
        color: #00516E;
    }
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
}
        
.footer-links li {
    margin-bottom: 0.75rem;
    align-items: center;
    display: flex;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    text-decoration: underline;
}

.modern-divider {
  border: none;
  height: 1px;
  background-color: #000000;
  margin: 10px 0;
  width: 100%;
  opacity: 0.15;
}


/* Responsive Tasarım */
@media (max-width: 768px) {
    .top-bar { display: none; } /* Mobilde top barı sadeleştir */
    
    .hamburger { display: block; }

    .search { display: none; }

    h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 85px;
        height: 100vh;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active { right: 0; }

    .nav-links li { margin: 20px 0; }

    .footer-container{ display: block; }

    .footer-brand{
        justify-content: center;
        text-align: center;
        align-items: center;
    }
}