body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  height: auto;
  perspective: 800px;
  
}

header {
  display: flex;
  padding: 30px 10px;
  background-color: rgba(83, 38, 8, 0.533); 
  border-bottom: 2px solid rgb(81, 47, 7); 
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  position: relative;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d96614;
  transform: scaleX(0);
  transition: 0.5s;
}

header:hover::after {
  transform: scaleX(1);
}

.logo img {
  height: 50px;
  transition: 0.5s ;
}

.logo img:hover {
  transform: scale(1.5) translateX(50px); 
}

.logo img::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(248, 11, 11, 0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

.logo img:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes gentleShake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.icons {
  display: flex;
  margin-left: auto;
  list-style: none;
  padding: 30px;
  justify-content: space-between;
  word-spacing: 30px;
}

.nav a {
  color: #fbebcf; 
  font-size: 20px; 
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.nav a:hover {
  color: #f95706; 
  font-weight: 700; 
  text-shadow: 0 4px 3px rgba(217, 199, 183, 0.742); 
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px; 
  background-color: rgb(237, 38, 38); 
  transition:  0.8s; 
}

.nav a:hover::after {
  width: 100%;
  transform: scaleX(1);
}

.page-1 {
  background: url(images/drew-coffman-1872.jpg) no-repeat center center/cover;
  height: 190vh; 
  position: relative;
  overflow: hidden;
  animation: moveBackground 20s infinite; 
}

main {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

main .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main .content {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content:stretch;
  align-items: center;
  color: #fff;
}

.content > * {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}

.content:hover > * {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-size: 70px;
  color: #843f03;
  margin: 0;
}

h1:hover {
  text-shadow: 0px 5px 20px rgb(255, 240, 240);
}

main p {
  padding-inline: 500px;
  color: #f5f0e7;
  margin: 10px 0;
  font-size: 20px;
}

.more-button {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 90px;
}

.more-button button {
  width: 200px;
  height: 50px;
  padding: 10px;
  background: rgba(210, 180, 140, 0.3);
  color: #662c05;
  font-size: large;
  font-weight: 800;
  border-radius: 8px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0px 3px 5px inset rgb(255, 255, 255);
}

.more-button button:hover {
  background: #d2691e;
  color: #fff;
  box-shadow: 0 3px 8px rgba(240, 217, 201, 0.818);
  transform: translateY(-2px);
}

@keyframes moveBackground {
  0% { background-position: 0 0; }
  50% { background-position: 0% 20%; }
  100% { background-position: 0% 0; }
}

.page-2, .page-3 {
  display: flex;
  justify-content: center;
  max-width: 1700px;
  height: 570px;
  margin: 20px auto;
  gap: 30px;
  background-image: linear-gradient(to right, rgba(245, 222, 179, 0.805), rgba(174, 159, 139, 0.3));
  padding: 20px;
  border-radius: 15px;
  transition: 0.5s ;
  position: relative;
}

.page-2:hover, .page-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(232, 177, 137, 0.3);
}

.left-image img, .right-image img {
  margin-top: 50px;
  width: 600px;
  height: 500px;
  padding: 1px;
  border-radius: 15px;
  border: 4px solid #e36a14;
  border-left-color:rgba(232, 63, 16, 0.925) ;
  border-right-color:rgba(232, 63, 16, 0.925) ;
  border-bottom-left-radius: 20%;
  border-top-right-radius: 20%;
  transition: 0.5s;
  object-fit: cover;
}

.left-image img:hover, .right-image img:hover {
  transform: scale(1.06);
  box-shadow: 0 5px 45px rgb(16, 9, 5);
}

.about-content {
  max-width: 500px;
  margin-top: 50px;
  padding: 20px;
  background-color: rgba(245, 222, 179, 0.2);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.about-content:hover {
  background-color: rgba(245, 222, 179, 0.4);
}

.about-content h2 {
  font-size: 2rem;
  color: #6f350b;
  text-align: center;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.about-content h2:hover {
  color: #d2691e;
}

.about-content p {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content li {
  display: flex;
  align-items: center;
  margin-top: 15px;
  transition: 0.3s;
}

.about-content li:hover {
  transform: translateX(15px);
  font-size: large;
}

.icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #d2691e;
  border-radius: 50%;
  margin-right: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-circle:hover {
  background-color: #6c3b0a;
  transform: scale(1.1);
}

.icon-circle i {
  font-size: 20px;
  color: #fff;
}

.page-3 {
  flex-direction: row-reverse;
}

.page-3 .about-content {
  padding-left: 20px;
}

.right-image {
  position: relative;
}


.page-5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1700px;
  background-image: linear-gradient(to top, rgba(21, 18, 13, 0.7), #b5824bb1 , rgba(21, 18, 13, 0.7));
  height: auto;
  margin: 40px auto;
  padding: 60px 20px;
  border-radius: 15px;
}
.our-offer {
  text-align: center;
  padding-top: 90px;
  margin-bottom: 40px;
  transition: all 0.3s ;
}
.our-offer h2 {
  font-size: 30px;
  color: #120b06;
  margin-bottom: 15px;
  position: relative;
}

.our-offer h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #d2691e;
  color: #d2b48c;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.our-offer:hover {
  transform: scale(1.1);
  text-shadow: 0px 5px 10px wheat;
}


.options-section {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  justify-content: center;
}

.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  background-color: #2f1b0c;
  width: 400px;
  height: 600px;
  transition: all 0.3s ;
}

.option-card:hover {
  box-shadow: 0 5px 25px rgba(234, 117, 34, 0.5);
  transform: translateY(30px);
}

.option-card img {
  width: 270px;
  height: 250px;
  border: #f5deb3 solid 2px;
  margin-top: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.option-card h2 {
  font-size: 30px;
  font-weight: bold;
  color: #e4d4c5;
  margin: 100px 0 10px;
  transition: color 0.3s ease;
}

.option-card h2:hover {
  color: #d2691e;
}

.option-card p {
  font-size: 0.9rem;
  line-height: 2;
  margin: 0;
  color: #debf95;
}

.price {
  margin-top: 20px;
}

.original-price {
  color: #b4643f;
  text-decoration: line-through;
  font-size: 15px;
}

.discounted-price {
  color: #ff4500;
  font-weight: bold;
  font-size: 20px;
}


.gallery {
    padding: 40px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.gallery h2 {
  font-size: 30px;
  color: #120b06;
  margin-bottom: 15px;
  position: relative;
}

.gallery h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #d2691e;
  color: #d2b48c;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.gallery h2:hover {
  transform: scale(1.1);
  text-shadow: 0px 5px 10px wheat;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background-color: #4e2603;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 1s;
    transform-style: preserve-3d
}
.gallery-item:hover{
  transform: rotate3d(1,1,1,360deg);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    border: #d2b48c 3px solid;
    transition: all 1s;
}
.gallery-item img:hover{
  box-shadow: 0px 5px 8px orangered;
  transform: scale(1.03);
}

.gallery-item h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}
.gallery-item h3:hover{
  transform: scale(1.5) ;
  color: #e4d4c5;
  text-shadow:0px 9px 10px #cf8939;
}

.gallery-item p {
    font-size: 1.1rem;
    color: #ff4500;
    font-weight: bold;
}


.page-7 {
  display: flex;
  flex-direction:row-reverse;
  justify-content:space-evenly;
  align-items: center;
  text-align: center;
  max-width: 1900px;
  background-image: linear-gradient(to bottom, rgba(157, 146, 125, 0.7), #572f03 , rgba(191, 177, 153, 0.7));
  height: 900px;
  margin: 80px 0px;
  padding: 20px 0px;
  border-radius: 15px;
}
.map {
    min-height: 300px;
border: #1b1612 5px solid;

}
.map:hover{
  box-shadow: 0px 5px 40px rgb(138, 55, 8);
}

.contact {
    padding: 20px;
    border: double black 4px;
    
}

.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    transition: all 1s;
}
.contact h2:hover{
  color: white;
transform: scale(1.1);
text-shadow: #980a0f 0px 5px 10px;
}



.contact ul {
    list-style: none;
    padding: 0;
}

.contact ul li {
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.contact ul li:hover{
  margin-right: 10px;
    color: #faf2f2;
    font-size: 1.2rem; 
    transition: color 0.3s ; 
}
.contact ul li i {
    margin-right: 10px;
    color: #4a4a4a;
    font-size: 1.2rem; 
    transition: color 0.3s ease; 
}

.contact ul li:hover i {
    color: #f4a460; 

}




footer {
  background-color: #2f1b0c;
  color: #fff;
  padding: 20px 0;
  margin-top: 200px;

}


.page-8 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1200px;
    margin:auto;
    height: 700px;
}

.column {
    min-width: 300px;
    padding: 15px;
    text-align: left;
}

.column h3 {
    font-size: 1.4rem;
    color: #e89d5c;
    margin-bottom: 20px;
    border-bottom: 2px solid #d2691e;
    padding-bottom: 6px;
    transition: all 0.5s ;
}

.column h3:hover {
    color: #fdc9a5;
    transform: scale(1.07);
}

.column p, .column ul li {
    font-size: 1rem;
    color: #d2b48c;
    line-height: 1.8;
    margin-bottom: 15px;
    transition: all 0.5s;
}
.column p:hover, .column ul li:hover {
  color: #f5deb3;
  transform: translateX(10px);
}

.column ul {
  list-style: none;
  padding: 0;
}

.column a {
  color: #f3e2cb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.column a:hover {
  color: #ff4500;
}

.contact-icon {
  margin-right: 8px;
  color: #d2b48c;
  transition: color 0.3s ease;
}

.column ul li:hover .contact-icon {
  color: #ff4500;
} 
 