﻿@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans/WorkSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans/WorkSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans/WorkSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


body {
    background-color: #385945;
    font-family: 'Work Sans', sans-serif;
    color: #fff;
    text-align: center;
}

.cocukkoyu-container {
    padding-top: 10px;
    padding-bottom: 100px;
    min-height: calc(100vh - 120px);
}

/*LOGO container */
.logo-container {
    margin-top: 0;
    margin-bottom: 25px;
}

/* LOGO boyutu */
.logo {
    width: 320px;
    max-width: 65%;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}

/*BUTON */
.reserve-btn {
    background-color: #96B762;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-bottom: 40px;
}

    .reserve-btn:hover {
        background-color: #7FA55D;
    }

/*KARTLAR */
.card {
    border: 3px solid #FFCA31;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s ease-in-out;
    background-color: #fff;
    color: #333;
}

    .card:hover {
        transform: scale(1.03);
    }

    .card img {
        width: 100%;
        height: auto;
    }

.card-title {
    font-weight: 700;
    margin-top: 10px;
    font-size: 1rem;
}

/*Responsive ayar */
@media (max-width: 767px) {
    .card {
        width: 80%;
        margin: 0 auto;
    }

    .logo {
        width: 220px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}
