/* --- FONT FACE --- */
@font-face {
    font-family: 'Gotham';
    src: url('font/GothamNarrow-Ultra.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* --- GENEL --- */
body {
    background-color: #171717;
    font-family: 'Gotham', sans-serif;
    color: white;
    margin: 0;
}

.container,
.site-content {
    background-color: transparent !important;
    /* Arka plan transparan */
}

.site-content {
    position: relative;
    z-index: 1;
}

/* --- NAVBAR --- */
.navbar {
    background-color: #171717;
    box-shadow: 0 4px 8px rgba(255, 255, 200, 0.3);
}

.menu-item {
    color: white;
    position: relative;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    cursor: pointer;
}

.menu-item i {
    margin-right: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.menu-item:hover i,
.menu-link:hover i {
    opacity: 1;
    transform: translateY(0);
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

/* --- APPLE DOTS --- */
.apple-dots span {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    margin-right: 6px;
    display: inline-block;
}

/* --- GALLERY POPUP BUTONLARI --- */
.gallery-popup {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(51, 51, 51, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease, width 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 50px; /* Başlangıçta sadece ikon genişliği */
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.popup-button img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    flex-shrink: 0;
}

.gallery-popup:hover .popup-button {
    width: 180px;
    background: rgb(0, 0, 0);
    transform: translateX(4px);
    z-index: 10;
    transition: background 0.6s ease, transform 0.6s ease, width 0.6s ease;
}

.gallery-popup:hover .popup-button .popup-text {
    opacity: 1;
    max-width: 130px;
    transition: opacity 0.6s ease, max-width 0.6s ease;
}

.popup-button:hover {
    background-color: #111;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    transform: translateX(6px) scale(1.05);
    transition: background 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

/* --- TEKLİF BUTONU --- */
.offer-popup-button {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.7rem 1rem;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    transition: background 0.3s ease;
}

.offer-popup-button img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.offer-popup-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* --- POPUP ARKA PLAN --- */
.offer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* --- POPUP FORM KUTUSU --- */
.offer-popup-form {
    background: #ffffff;
    color: rgb(43, 43, 43);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 750px;
    position: relative;
    animation: offerFadeIn 0.3s ease-in-out;
}

.offer-popup-form h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.offer-popup-form input,
.offer-popup-form textarea,
.offer-popup-form select {
    width: 100%;
    padding: 0.7rem;
    margin: 0.4rem 0;
    border: none;
    border-radius: 8px;
    background: #d2d2d2;
    color: rgb(70, 70, 70);
}

.offer-popup-form button {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: #90e19c;
    color: rgb(255, 255, 255);
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.offer-popup-form button:hover {
    background: #22a232;
}

/* --- KAPATMA BUTONU --- */
.offer-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgb(0, 0, 0);
}

/* --- ANİMASYON --- */
@keyframes offerFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- FOOTER --- */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    background-color: #171717;
    z-index: 1000;
}

/* --- LOGO VE GLITCH --- */
.main-logo,
.glitch-logo {
    max-width: 70%;
    max-height: 250px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition:
        opacity 0.8s ease,
        filter 0.8s ease,
        transform 0.8s ease;
    pointer-events: none;
    z-index: 5;
}

.main-logo {
    opacity: 1;
    filter: blur(0);
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%) scale(1);
}

.main-logo.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translate(-50%, -50%) scale(0.95);
}

.glitch-logo {
    opacity: 0;
    transition: opacity 1.5s ease;
    left: 65%;
}

.glitch-logo.show {
    opacity: 1;
}

/* --- SOL BUTONLAR --- */
.left-buttons {
    width: 60%;
    height: calc(100vh - 150px);
    padding: 40px 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 2.5rem;
}

.side-btn {
    background: #171717;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 4.5rem;
    font-weight: 800;
    padding: 0.4rem 0.4rem;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition:
        color 0.3s ease,
        box-shadow 0.5s ease,
        transform 0.3s ease;
    box-shadow: 0 10px 15px rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    left: 5%;
}

.side-btn:hover {
    color: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 25px 10px rgba(255, 255, 255, 0.35),
        0 14px 25px rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
    z-index: 10;
}

.side-btn::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 20%;
    width: 60%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 18px 8px rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.side-btn:hover::after {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 28px 14px rgba(255, 255, 255, 0.5);
}

.side-btn.active {
    color: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 25px 10px rgba(255, 255, 255, 0.6),
        0 14px 25px rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    z-index: 20;
}

/* --- SIDE MODAL --- */
.side-modal {
    position: fixed;
    top: 15vh;
    right: 5%;
    width: 40vw;
    max-width: 1400px;
    height: 73%;
    background-color: #171717;
    color: white;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(255, 255, 255, 0.7);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1000;
}

.side-modal.show {
    opacity: 1;
    pointer-events: auto;
}

/* --- KAPATMA BUTONU MODAL --- */
.close-modal-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background-color: #222;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
}

.close-modal-btn img.close-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.close-modal-btn i {
    margin-right: 8px;
}

/* --- MODAL İÇERİK --- */
.modal-text-wrapper {
    background: #171717;
    box-shadow:
        0 0 8px 3px rgba(255, 255, 255, 0.18),
        inset 0 0 10px 2px rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 1rem 0;
    overflow: hidden;
    padding: 20px 25px;
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.modal-text-wrapper h3 {
    margin-bottom: 12px;
}

.modal-text-wrapper:hover {
    box-shadow:
        0 0 12px 4px rgba(255, 255, 255, 0.32),
        inset 0 0 15px 4px rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

/* --- MODAL BUTONLARI --- */
.item-btn {
    background: rgba(51, 51, 51, 0.85);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.item-btn:hover {
    background-color: #000;
}

/* --- RESPONSIVE --- */
@media (max-width: 868px) {
    .container {
        flex-direction: column;
        padding: 0;
        margin: 0;
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left-buttons {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        box-sizing: border-box;
        align-items: center;
    }

    .side-btn {
        width: 100%;
        max-width: 500px;
        padding: 15px 10px;
        font-size: 1.8rem;
        margin: 0;
        box-shadow: none;
        border-radius: 8px;
        text-align: center;
        background-color: #222;
        color: white;
        cursor: pointer;
        box-sizing: border-box;
    }

    .right-logo {
        display: none !important;
    }

    .side-modal {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        padding: 20px !important;
        background-color: #171717cc !important;
        z-index: 2000 !important;
        overflow-y: auto !important;
        border-radius: 0 !important;
    }
}

@media (max-width: 768px) {
    .gallery-popup,
    .offer-popup-button,
    .mobile-fixed-buttons {
        display: none !important;
    }

    .apple-dots {
        display: none !important;
    }
}
@media (max-width: 768px) {
  .mt-4.flex.justify-center.items-center.space-x-4.text-sm {
    display: none;
  }
}
#mobile-video {
  display: none; /* Önce gizli */
  position: fixed;
  top: 10vh; /* Yukarıdan %20 aşağı */
  left: 55%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 200px;
  z-index: 9999;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  object-fit: cover;
}

@media (max-width: 768px) {
  #mobile-video {
    display: block;
  }
}
