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

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* ============ HERO & HEADER (FLEET STİLİ) ============ */

.fleet-hero.gallery-hero {
    position: relative;
    height: 70vh;
    background: url("image.png") center center / cover no-repeat;
    /* istersen:
       background: url("image.png") center center / cover no-repeat; */
}

.fleet-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-header.fleet-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 12px;
}

.lang {
    color: #ffd500;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 14px;
}

.lang.active {
    text-decoration: underline;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
}

.fleet-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 70px;
    color: #fff;
}

.fleet-hero-content h1 {
    font-size: clamp(36px, 4.8vw, 60px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fleet-hero-content p {
    max-width: 520px;
    font-size: 15px;
}

/* ============ FULLSCREEN MENU ============ */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 200;
}

.menu-overlay.active {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffd500;
    background: none;
    font-size: 48px;
    border: none;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    text-align: center;
    font-size: 30px;
    line-height: 2.2;
    color: #fff;
}

/* ============ GALLERY SECTION ============ */

.gallery-section {
    padding: 70px 40px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-heading {
    max-width: 560px;
    margin-bottom: 26px;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d1a93b;
}

.gallery-heading h2 {
    font-size: 28px;
    margin: 10px 0 8px;
}

.gallery-heading p {
    font-size: 14px;
    line-height: 1.7;
}

/* Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 18px;
    margin-top: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.2), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Bazı kartları farklı boyutlandırma */

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}



/* ====== FOOTER ====== */

.footer {
    background: #0a0a0a;
    padding: 80px 40px 40px;
    color: #fff;
    margin-top: 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

/* Logo */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffd500;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 260px;
}

/* Titles */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffd500;
    letter-spacing: 0.1em;
}

/* Quick links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #ffd500;
    padding-left: 6px;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    font-size: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #ffd500;
    font-size: 16px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-inner {
        gap: 30px;
    }

    .footer-desc {
        max-width: 100%;
    }
}
.menu-list a {
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    transition: 0.25s ease;
    letter-spacing: 0.12em;
}

.menu-list a:hover {
    color: #ffd500;
}

/* Aktif (bulunulan sayfa) */
.menu-list a.active {
    color: #ffd500;
    font-weight: 600;
}

/* Daha güzel görünmesi için LI'ları düzenledim */
.menu-list li {
    margin: 8px 0;
    list-style: none;
}
