@charset "UTF-8";

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom, #faf7f2, #e8dccb);
    color: #333;
    font-family: "Yu Gothic", sans-serif;
}

main {
    flex: 1;
}

.page-header{
  display: flex;
  justify-content: space-between;
}

.logo h3{
  font-size: 2rem;
  color: #d97706;
  font-family: "Times New Roman", serif;
  letter-spacing: 3px;
}

.main-nav{
  display: flex;
  font-size: 1.25rem;
  list-style: none;
  gap: 35px;
}

.main-nav li{
  margin-left: 36px;
}

nav a{
  font-weight: 600;
  color: #555;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

nav a::after{
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f97316;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after{
  width: 100%;
}

h1{
  text-align: center;
  font-size: 4rem;
  color: #d97706;
  margin-top: 80px;
  letter-spacing: 5px;
  font-family: "Times New Roman", serif;
}

h2{
  text-align: center;
  margin-top: 80px;
  font-size: 2rem;
}

p{
  text-align: center;
  color: #666;
  margin-top: 10px;
  margin-bottom: 40px;
}

.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.container img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.4s;
}

.container img:hover{
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

footer{
  text-align: center;
  padding: 50px 20px;
  background: #d8c3a5;
  color: #fff;
  margin-top: 80px;
}

footer a{
  color: #555;
}