/* Ümumi stil */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background-color:#000; /* fon qara */
    color:#ff8800; /* narıncı */
}

/* Header və logo */
header{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:15px;
    background:#000;
}
header img{
    max-width:200px;
    width:100%;
    height:auto;
    margin-bottom:10px;
}

/* Navigasiya */
nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:20px;
}
nav a{
    color:#ff8800;
    text-decoration:none;
    font-weight:bold;
    padding:8px 15px;
    border:1px solid #ff8800;
    border-radius:5px;
    transition:0.3s;
}
nav a:hover{
    background:#ff8800;
    color:#000;
}

/* Hero bölməsi */
.hero{
    text-align:center;
    padding:50px 20px;
}
.hero h2{
    font-size:2em;
    margin-bottom:10px;
}
.hero p{
    font-size:1.2em;
}

/* Gallery */
.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:20px;
}
.gallery img{
    width:100%;
    height:auto;
    border-radius:10px;
    border:2px solid #ff8800;
    transition:0.3s;
}
.gallery img:hover{
    transform:scale(1.05);
}

/* Mobil üçün responsive */
@media(max-width:768px){
    .gallery{grid-template-columns:1fr;}
    .hero h2{font-size:1.5em;}
    .hero p{font-size:1em;}
}

/* Formlar üçün (login, register, admin) */
form input, form textarea, form button{
    display:block;
    width:100%;
    margin:8px 0;
    padding:10px;
    border-radius:5px;
    border:1px solid #ff8800;
    background:#000;
    color:#ff8800;
    font-size:1em;
}
form button{
    cursor:pointer;
    border:none;
    background:#ff8800;
    color:#000;
    font-weight:bold;
    transition:0.3s;
}
form button:hover{
    background:#ff6600;
}
