﻿/* ==== NAVBAR ==== */
.custom-navbar {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f0f0f0 !important;
    letter-spacing: 0.4px;
    transition: color 0.3s ease;
}

    .navbar .nav-link:hover {
        color: #ff6600 !important;
    }

/* ==== NAVBAR BRAND ==== */
.navbar-brand {
    color: #0d6efd;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #0d6efd, 0 0 15px rgba(255, 102, 0, 0.5);
    animation: orangeGlow 2s infinite alternate;
}

@keyframes orangeGlow {

    0% {
        text-shadow: 0 0 5px #0d6efd, 0 0 10px rgba(255, 102, 0, 0.4);
    }

    50% {
        text-shadow: 0 0 5px #0d6efd, 0 0 25px rgba(255, 102, 0, 0.8);
    }

    100% {
        text-shadow: 0 0 5px #0d6efd, 0 0 10px rgba(255, 102, 0, 0.4);
    }
}

/* ==== BODY ==== */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

body {
    background-color: #121212;
    color: #cccccc;
    font-family: 'Segoe UI', sans-serif;
}

.container,
.row {
    margin: 0 !important;
    padding: 0 !important;
}

/* ==== RESPONSIVE NAVBAR ==== */
@media (max-width: 767px) {

    .navbar-brand {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .navbar .nav-link {
        font-size: 1rem;
    }
}

/* ==== VIDEO BANNER ==== */
.about-video-banner {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

    .about-video-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

/* ==== ABOUT ==== */
.about-section {
    background-color: #111;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .about-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

@media (max-width: 768px) {

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-video-banner {
        height: 400px;
    }
}

/* ==== CONTACT ==== */
.contact-card {
    background-color: #1e1e1e;
    color: #f0f0f0;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
    }

    .contact-card i {
        margin-right: 8px;
        color: #0d6efd;
    }

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-top: 10px;
}

@media (max-width: 767px) {

    .contact-card {
        padding: 20px;
    }

    .map-container {
        height: 300px;
    }
}

/* ==== LINKS ==== */
a {
    color: #90caf9;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
        color: #ffffff;
    }

/* ==== MASONRY ==== */
.masonry-section {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.masonry {
    column-count: 3;
    column-gap: 10px;
}

    .masonry img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        border-radius: 12px;
        display: inline-block;
        transition: transform 0.4s ease, box-shadow 0.3s ease, opacity 0.8s ease;
        opacity: 0;
        transform: scale(0.9);
        break-inside: avoid;
    }

        .masonry img:hover {
            transform: scale(1.20);
            z-index: 100;
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

.animate-bubble.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {

    .masonry {
        column-count: 2;
        column-gap: 8px;
    }

        .masonry img:hover {
            transform: scale(1) !important;
            box-shadow: none !important;
        }
}

@media (max-width: 480px) {

    .masonry {
        column-count: 1;
    }
}

/* ==== OVERLAY ==== */
.masonry-item {
    position: relative;
    display: inline-block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    color: white;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

    .overlay-text .sub-text {
        display: block;
        font-size: 0.9rem;
        font-weight: 400;
        text-transform: none;
        color: white;
        margin-top: 6px;
        white-space: normal;
    }

.masonry-item:hover .overlay-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {

    .overlay-text {
        opacity: 1 !important;
        transform: translate(-50%, -50%) scale(1) !important;
        background: transparent !important;
        box-shadow: none !important;
        white-space: normal;
    }
}

/* ==== LOADER ==== */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loader-text span {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    display: inline-block;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1.6s forwards;
}

    .loader-text span:nth-child(1) {
        animation-delay: 0s;
    }

    .loader-text span:nth-child(2) {
        animation-delay: 0.1s;
    }

    .loader-text span:nth-child(3) {
        animation-delay: 0.2s;
    }

    .loader-text span:nth-child(4) {
        animation-delay: 0.3s;
    }

    .loader-text span:nth-child(5) {
        animation-delay: 0.4s;
    }

    .loader-text span:nth-child(6) {
        animation-delay: 0.5s;
    }

    .loader-text span:nth-child(7) {
        animation-delay: 0.6s;
    }

@keyframes fadeIn {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-text:hover span {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

#loader.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: none;
}

/* ==== FOOTER ==== */
.desider-footer {
    width: 100%;
    padding: 50px 20px;
    background: rgba(100, 100, 100, 0.15);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    color: #fff;
}

.footer-inner {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.footer-title {
    font-size: 2.4rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0d6efd;
    text-shadow: 0 0 15px rgba(0, 150, 255, 0.8);
}

.footer-contact p {
    margin: 8px 0;
    font-size: 1.2rem;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    font-size: 1.3rem;
    color: #7ec8ff;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.95rem;
    opacity: 0.7;
}

@media (max-width: 768px) {

    .footer-title {
        font-size: 2rem;
    }

    .footer-contact p {
        font-size: 1.1rem;
    }
}

/* ==== COMMENTS ==== */

.comment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 60px auto;
    justify-items: center;
}

.comment-card {
    width: 300px;
    min-height: 340px;
    background-color: #111;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .comment-card:hover {
        transform: translateY(-5px);
    }

.comment-photo-wrapper {
    margin-bottom: 12px;
}

.comment-photo,
.comment-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: #222;
    border: 2px solid #444;
}

.stars {
    margin: 8px 0;
    font-size: 18px;
}

.comment-card h5 {
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.comment-card p {
    font-size: 14px;
    opacity: 0.9;
}

.comment-text {
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* ==== YORUM EKLE BUTONU ==== */

.comment-button-wrapper {
    text-align: center;
    margin: 40px 0;
}

.comment-open-btn {
    background-color: #0d6efd;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
    cursor: pointer;
}

    .comment-open-btn:hover {
        background-color: #0b5ed7;
    }

.star-rating {
    direction: rtl;
    display: inline-flex;
    gap: 5px;
}

    .star-rating input {
        display: none;
    }

    .star-rating label {
        font-size: 30px;
        color: #444;
        cursor: pointer;
        transition: 0.2s;
    }

    .star-rating input:checked ~ label {
        color: gold;
    }

    .star-rating label:hover,
    .star-rating label:hover ~ label {
        color: gold;
    }

#commentModal .star-rating label {
    color: #444;
}

#commentModal .star-rating input:checked ~ label {
    color: gold !important;
}

#commentModal .star-rating label:hover,
#commentModal .star-rating label:hover ~ label {
    color: gold !important;
}
/* ==== MODAL ==== */

#commentModal .modal-content {
    background-color: #111;
    color: white;
    border-radius: 15px;
    border: 1px solid #333;
}

#commentModal .modal-header,
#commentModal .modal-body {
    background-color: #111;
    color: white;
}

#commentModal h5 {
    color: white;
    font-weight: 600;
}

#commentModal label {
    color: #ddd;
    margin-bottom: 6px;
}

#commentModal .form-control {
    background-color: #1c1c1c;
    border: 1px solid #444;
    color: white;
}

    #commentModal .form-control:focus {
        background-color: #1c1c1c;
        color: white;
        border-color: #0d6efd;
        box-shadow: none;
    }

#commentModal textarea {
    resize: none;
}

#commentModal .btn-close {
    filter: invert(1);
}

#commentModal button[type="submit"] {
    background-color: #0d6efd;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
}

    #commentModal button[type="submit"]:hover {
        background-color: #0b5ed7;
    }

/* ==== MOBİL ==== */

@media (max-width: 768px) {

    .comment-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 40px auto;
        padding: 0 20px;
        justify-items: center;
    }

    .comment-card {
        width: 100%;
        max-width: 350px;
        min-height: auto;
    }
}
/* ==== WHATSAPP FLOAT ==== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #ffffff;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.08);
    }

    .whatsapp-float i {
        color: #25D366;
    }

@media (max-width: 480px) {

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}
.navbar-toggler-icon {
    filter: invert(1) !important;
}
