/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    position:sticky;
    top:0px;
    /*background-color: #004d40;
    background-color: #E73E01;*/
    background-color: #fa9b79;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px 10px 10px;
    z-index: 110;
}
.menu{
  display: flex;
  margin-right: 10px;
}
.menu img{
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}
.logo{
  display: flex;
  margin-left: 10px;
}
.logo img {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
}/*
.logo h1 {
    display: inline-block;
    font-size: 24px;
    line-height: 50px;
    vertical-align: baseline;
}*/
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    display:flex;
    margin-right: 40px;
}
nav ul li a {
    color: black;
    font-size: 12px;
    text-decoration: none;
    /*font-weight: bold;*/
    vertical-align: baseline;
    text-align: center;
}
nav ul li img {
    display:block;
    width: 30px;
    text-decoration: none;
    /*font-weight: bold;*/
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border: 1px solid black;
}
.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 18px;
}

/* About Section */
.about {
    margin-top:60px;
    padding: 50px;
    background-color: #f8f8f8;
    text-align: center;
}
.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about p {
    font-size: 18px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 50px;
    background-color: #e0e0e0;
    text-align: center;
}
.gallery h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.gallery-item {
    width: 300px;
}
.gallery-item img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}
.gallery-item h3 {
    margin-top: 10px;
    font-size: 20px;
}

/* Contact Section */
.contact {
    padding: 150px;
    background-color: #f1f1f1;
    text-align: center;
}
.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.item-menu:hover{
  background-color: #fa9b79;
  cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
form input,
form textarea {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}
form button {
    padding: 10px 20px;
    /*background-color: #004d40;*/
    /*background-color: #E73E01;*/
    background-color: #fa9b79;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    /*background-color: #004d40;*/
    /*background-color: #E73E01;*/
    background-color: #fa9b79;
    color: white;
    text-align: center;
    padding: 20px;
}
.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
