@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: #e7cbf3;
  color: black;
}

::selection {
  background-color: #e7cbf3;
  color: black;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

:is(h1, h2, h3) {
  color: #a86c3f;
  font-family: Arial, sans-serif;
}

/*______________________quote______________________*/
blockquote {
  position: relative;
  font-style: italic;
  color: #444;
  padding: 20px;
  margin: 80px 0;
  background: #f9f9f9;
  border-left: 5px solid #a86c3f;
}

blockquote::before {
  content: "  “  ";
  font-size: 4rem;
  color: #a86c3f;
  position: absolute;
  left: -2px;
  top: -32px;
}

blockquote::after {
  content: "”";
  font-size: 4rem;
  color: #a86c3f;
  position: absolute;
  right: 20px;
  bottom: -71px;
}

/*______________________quote______________________*/
/*______________________about_____________________*/
#about p::first-line {
  font-weight: bold;
}

/*_____________________about______________________*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
header .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo-container img {
  width: 70px;
  height: auto;
}
header .logo-container h1 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul {
  display: flex;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
nav ul li a.active {
  color: #a86c3f;
  font-weight: bold;
}

.image-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 60%;
}
.image-grid--small {
  max-width: 100px;
}
.image-grid--medium {
  max-width: 230px;
}
.image-grid--large {
  max-width: 400px;
}
.image-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.text-image-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 90%;
  margin: 20px auto;
  gap: 20px;
}
.text-image-container .text-below {
  width: 40%;
  max-width: 400px;
  text-align: left;
}
.text-image-container .image-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 17px;
  width: 60%;
}
.text-image-container .image-grid img {
  width: calc(33.333% - 15px);
  max-width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.text-image-container .image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  gap: 20px;
}
.hero img {
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
}
.hero .text-container {
  max-width: 600px;
  margin: auto;
}
.hero .text-container p {
  font-size: 18px;
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 20px 0;
  background-color: #333;
  color: white;
  margin-top: 30px;
}

#main-blog {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.blog-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.article-blog {
  margin-top: 20px;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.article-blog h3 {
  font-size: 22px;
  color: #222;
}
.article-blog p {
  font-size: 16px;
  color: #666;
}
.article-blog p:first-of-type::first-letter {
  font-size: 2.5rem;
  color: #a86c3f;
  font-weight: bold;
  float: initial;
  margin-right: 2px;
}

.related-articles {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 5px;
}
.related-articles h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.related-articles ul {
  list-style: none;
  padding: 0;
}
.related-articles ul li a {
  text-decoration: none;
  color: #007BFF;
}

.comments-section {
  margin-top: 30px;
  padding: 20px;
  background: #f1f1f1;
  border-radius: 5px;
}
.comments-section textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.comments-section button {
  margin-top: 10px;
  background: #007BFF;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.comments-section button:hover {
  background: #0056b3;
}

.shop-now {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
}
.shop-now:hover {
  background-color: #c4c4c4;
  transition: background-color 0.3s ease;
}

.big-section {
  grid-column: 1/span 2;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: center;
  padding: 20px;
  position: relative;
}

.small-section {
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  position: relative;
}
.small-section:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#room {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 4%;
}
#room .search-box {
  grid-column: 1/-1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
}

#product {
  display: grid;
  grid-template-columns: 2fr 2fr;
  justify-content: flex-start;
  padding: 5%;
  gap: 20px;
}

.product-descripcion {
  display: flex;
  flex-direction: column;
  margin: auto;
  align-items: flex-start;
  padding: 20px;
  font-size: large;
}

.small-section-product img {
  width: 30%;
  height: auto;
  margin-right: 2%;
  margin-top: 1%;
  transition: transform 0.3s ease;
  border-radius: 8px;
}
.small-section-product img:hover {
  transform: scale(1.05);
}
.small-section-product img.img-hover-effect {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.small-section-product img.img-hover-effect:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .small-section-product img {
    width: 100%;
    margin-right: 0;
  }
}

.button-produc {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}
.button-produc button {
  padding: 10px 20px;
  background-color: #a86c3f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-produc button:hover {
  background-color: #835431;
}
.button-produc img {
  width: 30px;
  height: auto;
}
.button-produc h5 {
  margin: 0;
  color: #333;
}

#about {
  margin: 50px auto;
  padding: 40px;
  background: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
#about .article-blog {
  max-width: 900px;
  text-align: center;
  background: white;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#about .article-blog:hover {
  transform: translateY(-5px);
}
#about .article-blog h2 {
  font-size: 2rem;
  color: #a86c3f;
  margin-bottom: 15px;
  font-weight: bold;
}
#about .article-blog h3 {
  font-size: 1.5rem;
  color: #70482a;
  margin-bottom: 10px;
}
#about .article-blog p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4d4d4d;
}
#about .article-blog #aboutimg {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#about .article-blog #aboutimg:hover {
  transform: scale(1.05);
}
#about #products-services {
  background: #f1f1f1;
  padding: 30px;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#about #products-services:hover {
  transform: translateY(-5px);
}
#about #products-services h2 {
  text-align: center;
  color: #a86c3f;
  font-size: 1.8rem;
}
#about #products-services ul {
  list-style: none;
  padding: 0;
}
#about #products-services ul li {
  font-size: 1.1rem;
  padding: 8px 0;
  color: #333;
}
#about #products-services ul li strong {
  color: #a86c3f;
}
#about #join-us {
  text-align: center;
  padding: 30px;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
}
#about #join-us h2 {
  font-size: 2rem;
  color: #e7cbf3;
}
#about #join-us p {
  font-size: 1.2rem;
  color: #333;
}
#about #join-us .about-button {
  margin-top: 20px;
}

@media (max-width: 768px) {
  #about .article-blog, #about #products-services, #about #join-us {
    max-width: 100%;
    padding: 20px;
  }
}/*# sourceMappingURL=main.css.map */