@import url(https://fonts.googleapis.com/css2?family=poppins:wght@300;400;600&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    padding-top: 80px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    font-size: 24px;
    color: #e63946;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #e63946;
}

#home {
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836") no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

#home h1 {
    font-size: 55px;
    font-weight: 700;
}

#home p {
    font-size: 18px;
    margin: 15px 0;
    max-width: 600px;
}

#home button {
    padding: 12px 30px;
    border: none;
    background: #e63946;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#home button:hover {
    background: #c1121f;
}

section {
    padding: 100px 80px;
}

#menu,
#galery,
#about,
#contacy {
    margin-top: 50px;
}

h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #222;
}

#menu div {
    background: white;
    padding: 25px;
    margin: 20px auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

#menu div:hover {
    transform: translateY(-5px);
}

#menu h3 {
    color: #e63946;
    margin-bottom: 10px;
}

#gallery {
    text-align: center;
}

#gallery img {
    margin: 15px;
    border-radius: 15px;
    width: 280px;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#gallery img:hover {
    transform: scale(1.05);
}

#about p {
    max-width: 700px;
    margin: auto;
    text-align: center;
    font-size: 18px;
    color: #444;
}

#contact form {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

textarea {
    resize: none;
    height: 120px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #e63946;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
}

button[type="submit"]:hover {
    background: #c1121f;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 40px;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav ul {
        gap: 15px;
    }

    #home h1 {
        font-size: 40px;
    }

    section {
        padding: 80px 20px;
    }
}

select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

body {
    background: url(https://images.unsplash.com/photo-1600891964599-f61ba0e24092) no-repeat center center/cover;
    background-attachment: fixed;
}

#home {
    padding-top: 120px;
}

section {
    scroll-margin-top: 100px;
}