/*
Theme Name: Insaat Tema
Theme URI: https://ibrahimsarac.com.tr
Author: İbrahim Saraç
Description: Modern inşaat firması teması
Version: 1.0
*/
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    background: #111;
    color: #fff;
}

/* FLEX */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* LOGO */
.logo a {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.menu li a:hover {
    color: #f0a500; /* inşaat sarısı */
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

}