:root {
    --navy: #1B2A4A;
    --gold: #C5A572;
    --grey: #707070;
    --light-grey: #F5F5F5;
}

html {
    font-size: 14px;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.bg-navy {
    background-color: var(--navy) !important;
}
.nav-link{
    color:white;
}
.nav-link:hover{
    color:var(--gold)
}

.side-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px 0 0 8px; /* Sol kenarı yuvarla */
    padding: 10px 20px;
    z-index: 1050; /* Üstte kalsın */
}



.hero {
    background: linear-gradient(rgba(27, 42, 74, 0.9), rgba(27, 42, 74, 0.9)), url(https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3);
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.section {
    padding: 5rem 0;
}

.section-title {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.service-card {
    padding: 2rem;
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s;
    background-color: white;
}

    .service-card svg {
        color: var(--gold);
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

.contact-info {
    background-color: var(--light-grey);
    padding: 2rem;
    border-radius: 5px;
}

    .contact-info svg {
        color: var(--gold);
        margin-right: 0.5rem;
        width: 20px;
    }












footer {
    background-color: #16284a;
    color: #c1a167;
    padding: 40px 0 20px 0;
}

    footer h4 {
        color: #c1a167;
        margin-bottom: 15px;
    }

    footer a {
        color: #c1a167;
        margin-right: 15px;
        font-size: 1.5rem;
        transition: opacity 0.3s;
    }

        footer a:hover {
            opacity: 0.7;
        }


.btn-primary {
    background-color: var(--gold)!important;
    border-color:var(--gold)!important;
}