body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: lightcoral;
    line-height: 1.6;
}
html{
    scroll-behavior: smooth;
}

.header {
    background-color: chocolate;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    color: antiquewhite;
    font-family: playfair display, serif;
    font-size: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav{
    text-align: center;
    padding: 12px 0;
    margin-left: auto;
}

nav ul {
    list-style: none;
    padding: 0;
     margin-left: 20px;

}

nav ul li{
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: antiquewhite;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;
    color: #333
}

.intro{
   text-align: center;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: antiquewhite;
    font-size: larger;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  text-align: center;
  color: #333;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0 10px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.photo-item {
  width: 300px;
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.photo-item img {
  width: 100%;
  border-radius: 8px;
}

.photo-item p {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 20px;
}
.contact {
    background-color: antiquewhite;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
     margin: 100px;

}
p{
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    font-family: playfair display, serif;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.contact input:focus,
.contact textarea:focus {
    border-color: chocolate;
}

.contact button {
    padding: 12px;
    background-color: chocolate;
    color: antiquewhite;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.contact button:hover {
    background-color: rgb(150, 69, 12)
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: brown;
    color: antiquewhite;
    margin-top: 20px;
}   
#footer {
    font-family: playfair display, serif;
    font-size: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: antiquewhite;
}