:root{
    --primary-color:#8b0000;
    --secondary-color:#f4f4f4;
    --text-color:#333;
    --accent-color:#d4af37;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color:#fff;
}
header{
    background:var(--primary-color);
    color:#fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.container{
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items:  center;
}
nav h1{
    font-size: 1.8rem;
}
nav ul{
    display: flex;
    list-style: none;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: 0.3s;
    font-weight: bold;
}
nav ul li a:hover{
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 5px;
}
.hero{
    background-color: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url("../img/0545337.jpeg");
    background: url(../img/Elazig_5993.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;text-align: center;
}
.hero h2{
    font-size: 3rem;
    margin-bottom: 1rem;
}
.btn{
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
    transform: 0.3s;
}
.btn:hover{
    background: #fff;
}
.section {
    padding: 3rem 0;
}
.section-title{
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #333;
    color: white;
    text-align: center;
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.card{
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align:  center;
}
.card img{
    width: 100px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}
form{
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}
form input , form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}