@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/high-spirited');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

body,
html {
    padding: 0;
    margin: 0;
    height: 100vh;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif !important;
    background-color: black !important;
}

.image-shadow-wrapper {
    position: relative;
    display: inline-block;
}

.image-shadow-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    /* img’deki rounded-4 etkisini korur */
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 60%);
    pointer-events: none;
}

.projelerimizBtn {
    width: 10rem !important;
    color: white !important;
    background-color: #0a0a0a !important;
    box-shadow: 0px 0px 5px 8px rgba(0, 0, 0, 0.6);
}

.projelerimizBtn:hover {
    background-color: white !important;
    color: black !important;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Card - Zoom Hover */

.zoom {
    transition: transform .2s;
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(1.1);
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.8) contrast(1.4) saturate(1.3);
}

.site-footer {
    background-color: transparent;
    color: #f5f5f5;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    margin: 10px 20px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 0.9rem;
    color: #aaa;
}

.footer-center h5,
.footer-right h5 {
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 8px;
}

.footer-center ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-center ul li a:hover {
    color: #ff3c78;
    text-shadow: 0 0 10px #ff3c78;
}

.footer-right p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-right p:first-of-type {
    color: #fff;
    /* Adres neon renk efekti */
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-right a:hover {
    color: #ff3c78;
    text-shadow: 0 0 10px #ff3c78, 0 0 20px #ff3c78;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        margin: 15px 0;
    }

    .footer-right p,
    .footer-right a {
        display: block;
        margin: 5px 0;
    }
}

.portfolio-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    text-decoration: none;
    color: white;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.portfolio-card .info {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    transition: all 0.5s ease;
}

.portfolio-card:hover .info {
    left: 0;
}

.portfolio-card .info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-card .info p {
    font-size: 1rem;
    opacity: 0.85;
}