﻿body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #5f554e;
}
* {
  box-sizing: border-box;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 80%;  
  margin: 15px auto 0 auto;
  padding: 20px 40px;
  background-color: #eee7dc;
   box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #5f554e;
  font-size: 18px;
}

nav a:hover {
  color: #b8915f;
}

.hero {
 background-color: #f7f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
 max-width: 1200px;
 min-height: 100%;
  width: 80%;
  margin: 0 auto;
  padding: 60px 40px 10px 40px;
  gap: 80px;
}
.heroalt {
 background-color: #f7f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
 max-width: 1200px;
 min-height: 100%;
  width: 80%;
  margin: 0 auto;
  padding: 60px 40px 10px 40px;
  gap: 80px;
  flex-direction: column;
}
.hero-text {
  max-width: 500px;
  
  
}

.hero-text h2 {
  font-size: 38px;
  font-weight: 450;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 38px;
  font-weight: 450;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-subline {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 18px;
  margin-bottom: 22px;
  color: #5f554e;
}
.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  background-color: #b8915f;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.button:hover {
  background-color: #9d7748;
}

.hero-image img {
  width: 450px;
  border-radius: 24px;
  mask-image: radial-gradient(circle, black 72%, transparent 100%);
  margin-bottom: 35px;
}

.hero-imagealt img {
  width: 350px;
  border-radius: 24px;
  mask-image: radial-gradient(circle, black 72%, transparent 100%);
  margin-bottom:  38px;
}

.logo-area {
  display: flex;
  align-items: center;
}


.logo-mobile {
  display: none;
  width: 200px;
  height: auto;
}

.logo-desktop {
  display: block;
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}
footer {
 max-width: 1200px;
  width: 80%;
  margin: 0px auto 0 auto;
  background-color: #eee7dc;
  padding: 30px 20px;
  text-align: center;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  color: #5d5147;
  font-size: 15px;
}

footer a {
  color: #5d5147;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  opacity: 0.7;
}
/* Tablet */
@media (max-width: 980px) {
  header {
    padding: 20px 24px;
  }

   

  .logo-area img {
    width: 300px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
   
  }



 .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
      gap: 40px;
  }
   .heroalt {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
      gap: 40px;
  }

  .hero-text {
    margin: 0 auto;
    max-width: 550px;
  }

  .hero-text h2 {
    font-size: 34px;
    max-width: 550 px;
    margin-left: auto;
    margin-right: auto;
    line-height; 1.15;
    margin-bottom: 30px;
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
  }

  nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

}
/* Handy */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
  @media (max-width: 700px) {

  .menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 34px;
    color: #5f554e;
    cursor: pointer;
    margin-right: auto;
  margin-left: 0;
   box-shadow: none;
   outline: none;
  }

  nav {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background-color: #f7f4ee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #5f554e;
    font-size: 24px;
  }

  .menu-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 42px;
    color: #5f554e;
    cursor: pointer;
  }
    .button {
    margin-bottom: 30px;
    margin-top: 20px;
    }



  .hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
  }
  .heroalt {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
  }


  .hero-text h2 {
    font-size: 32px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
  .hero-imagealt img {
  width: 250px;
  
}
  .logo-area img {
    width: 60vw;
    max-width: 300px;
    height: auto;
  }
  footer {
  max-width: 100%;
  width: 100%;
  }
}