/* style.css */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #222;
}
header {
    background: #ffb300;
    color: #fff;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}
nav .logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: inline-block;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #222;
}
.hero {
    background: url('images/1.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero h1 {
    font-size: 3rem;
    margin: 0;
}
.container {
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 40px 30px;
}
.section-title {
    font-size: 2rem;
    color: #ffb300;
    margin-bottom: 20px;
    border-left: 5px solid #ffb300;
    padding-left: 12px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.gallery img:hover {
    transform: scale(1.04);
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0 10px 0;
    font-size: 1rem;
    margin-top: 40px;
}
footer a {
    color: #ffb300;
    text-decoration: underline;
}
.contact-info {
    line-height: 2;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #444;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.form-group textarea {
    min-height: 80px;
}
button {
    background: #ffb300;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #e09e00;
}
.news-list {
    list-style: none;
    padding: 0;
}
.news-list li {
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
@media (max-width: 700px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    .container {
        padding: 20px 8px;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
