*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background: #111;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background: #c49a5a;
  color: #111;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.hero {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
        url("../../images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay{
    max-width:800px;
    padding:20px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:10px;
}

.hero p{
    font-size:1.3rem;
    margin-bottom:30px;
}

.buttons a,
.button{
    display:inline-block;
    margin:10px;
    padding:12px 24px;
    text-decoration:none;

    background:#b28a4d;
    color:white;

    border-radius:5px;
}

section{
    max-width:1000px;
    margin:auto;
    padding:80px 20px;
}

.about{
    display:flex;
    gap:40px;
    align-items:center;
}

.about img{
    width:250px;
    border-radius:10px;
}

h2{
    margin-bottom:20px;
    color:#d8b47d;
}

footer{
    text-align:center;
    padding:40px;
    background:#0f0d0b;
}

.contact a {
    color: #d8b47d;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    opacity: 0.8;
}

@media(max-width:768px){

    .hero h1{
        font-size:2.5rem;
    }

    .about{
        flex-direction:column;
        text-align:center;
    }
}
