*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}
#top-bar{
    width: 100%;
    min-width: 300px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: #4B2E2A; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
}
#top-bar p{
    font-size: 1.2rem;
    font-weight: 500;
}
#top-bar a{
    text-decoration: solid;
}
.House{
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #fdcea1;
    margin-left: 20px;
    transition-duration: 0.2s;
    transition-property: all;
    transition-delay: 0.3s;
    transition-timing-function:linear;
}
.House:hover{
    color:#8b4c05;
    transform: scale(1.01);
}
.bar{
    text-decoration: solid;
    padding: 3px;
    margin-right: 10px;
    color:#fdcea1;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function:linear;
    transition-delay: 0.2s;
}
.bar:hover{
    color: #8b4c05;
}
#right-bar{
    display: flex;
    margin-right: 20px;
}
.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(images/0x0.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: center;
    height: 50vh;
    margin-bottom: 30px;
}
.hero h1{
    display: flex;
    align-items: center;
    justify-content: center;
    color:#ffff;
    font-weight: 600;
    font-size: 2.5em;
}
.hero p{
    font-weight: 400;
    font-size: 1.3em;
    color: #fdcea1;
}
.hero a{
    text-decoration: solid;
    padding: 8px;
    background-color: rgb(33, 63, 33);
    color: #8b4c05;
    margin-top:10px;
    border-radius: 7px;
    transition: ease all 0.7s 0.1s;
}
.hero a:hover{
    padding-right: 35px;
    padding-left: 35px;
    background-color: rgb(175, 151, 11);
    text-decoration-color: rgb(27, 127, 27);
}
.hero a p{
    font-weight: 400;
    font-size: medium;
}
.card{
    width: 300px;
    height: 350px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 3px;
    transition-timing-function: ease;
    transition-duration: 0.7s;
    transition-delay: 0.2s;
    transition-property:all;
    padding: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.card img{
    width: 100%;
    height: 70%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 2px solid rgb(207, 203, 203);
}
.card:hover{
    transform: scale(1.05);
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.card .info{
    width:100%;
    height:30%;
    display: flex;
    flex-direction: column;
}
.card h3,strong{
    align-self: center;
}
#menu{
    display: grid;
    grid-template-columns:repeat(auto-fit,300px);
    grid-template-rows:repeat(auto-fit,350px);
    row-gap: 20px;
    column-gap: 30px;
    margin-top: 0px;
    margin-left: 30px;
}
.footer{
  background-color: #3b2a1a;
  color: #fff;
  padding-top: 60px;
}

.footer-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 8%;
}

.footer-box h3,
.footer-box h4{
  margin-bottom: 15px;
  color: #d49d5e;
}

.footer-box p{
  line-height: 1.6;
  color: #e0bc9c;
}

.footer-box ul{
  list-style: none;
}

.footer-box ul li{
  margin-bottom: 10px;
}

.footer-box ul li a{
  color: #5e462b;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover{
  color: #d49d5e;
}
footer{
    margin-top: 20px;
    height: fit-content;
}

.socials a{
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #d49d5e;
  color: #3b2a1a;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.socials a:hover{
  background: #fff;
}

.footer-bottom{
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: #2a1e14;
  font-size: 0.9rem;
}
.footer-bottom p{
    color: gray;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  #top-bar {
    padding: 0 1rem;
  }
  
  #right-bar {
    position: fixed;
    top: 55px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 55px);
    background: #4B2E2A;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }
  
  #right-bar.active {
    left: 0;
  }
  
  .hero {
    height: 70vh !important;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  
  #menu {
    grid-template-columns: 1fr !important;
    margin-left: 1rem;
    gap: 1rem;
  }
  
  .card {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }
  
  .card img {
    height: 60% !important;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh !important;
  }
  
  #menu {
    margin-left: 0.5rem;
  }
}
