﻿
body {
    background-color: #e7e9ec;
    font-family: 'UskudarSans', sans-serif;
}

.rezervasyon-container {
    padding-top: 10px;
    padding-bottom: 100px;
    min-height: calc(100vh - 120px);
    padding-top: 40px;
}

/*LOGO container */
.logo-container {
    margin-top: 0;
    margin-bottom: 25px;
}

/* LOGO boyutu */
.logo {
    width: 350px;
    max-width: 65%;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}

/*BUTON */
.reserve-btn {
    background-color: #104770;
    color: white;
    border: 2px solid #104770;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-radius: 25px;
    padding: 12px 28px;

    font-family: 'UskudarSans', sans-serif;
    font-weight: 600; 
    font-size: 15px; 
    letter-spacing: 0.5px; 

    transition: all 0.3s ease;
    margin-bottom: 40px;
}
    .reserve-btn:hover {
        background-color: #b4b4b4;
        box-shadow: 0 12px 50px #104770;
        transform: scale(1.05) translateY(-2px);
    }

/*KARTLAR */
.card {
    border: 3px solid #104770;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s ease-in-out;
    aspect-ratio: 4 / 3;
}

    .card:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 50px #104770;
    }

    .card img {
        width: 100%;
        height: 100%; 
        object-fit: cover; 
        display: block;
    }
.card-title {
    font-weight: 700;
    margin-top: 10px;
    font-size: 1rem;
}
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-left img {
    height: 70px;
}

.footer-right {
    text-align: left;
    margin-bottom:35px;
}

.social-icons i {
    margin-right: 8px;
    font-size: 32px;
    color: #104770;
}

.social-text {
    font-size: 32px;
    color: #104770;
    margin-top: 5px;
}

.custom-footer {
    color: #104770 !important;
    font-family: 'UskudarSans', sans-serif;
}

/*Responsive ayar */
@media (max-width: 767px) {
    .card {
        width: 80%;
        margin: 0 auto;
    }

    .logo {
        width: 220px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .footer-social {
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        gap: 20px; 
    }

    .footer-left img {
        height: 55px; 
    }

    .social-icons i {
        font-size: 20px;
    }

    .social-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .card {
        aspect-ratio: 3 / 4; /* biraz daha dik görünüm */
    }
}
