@font-face {
  font-family: "PoppinsExtraLight";
  src: url("/public/font/Poppins-ExtraLight.ttf");
}

@font-face {
  font-family: "PoppinsBold";
  src: url("/public/font/Poppins-Bold.ttf");
}

@font-face {
  font-family: "PoppinsMedium";
  src: url("/public/font/Poppins-Medium.ttf");
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.sharewood__container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  min-height: 100vh;
  font-family: "PoppinsMedium", sans-serif;
}

/* Hero Section */
.hero__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  background: linear-gradient(135deg, #fff1e0 0%, #f8e4c8 50%, #f0d7b0 100%);
  position: relative;
  overflow: hidden;
}

.hero__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero__content {
  flex: 1;
  z-index: 2;
  position: relative;
}

.hero__content h1 {
  color: #7d5441;
  font-size: 3.5rem;
  font-family: "PoppinsBold", sans-serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(125, 84, 65, 0.1);
}

.hero__subtitle {
  color: #9b6b5a;
  font-size: 1.3rem;
  font-family: "PoppinsMedium", sans-serif;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero__features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(125, 84, 65, 0.1);
}

.hero__feature box-icon {
  width: 24px;
  height: 24px;
  color: #9b6b5a;
}

.hero__feature span {
  color: #7d5441;
  font-size: 0.9rem;
  font-family: "PoppinsMedium", sans-serif;
  font-weight: 600;
}

.hero__description {
  margin-bottom: 2rem;
}

.hero__description p {
  color: #4a4a4a;
  font-size: 1.1rem;
  font-family: "PoppinsExtraLight", sans-serif;
  line-height: 1.6;
  text-align: justify;
}

.hero__price {
  align-items: baseline;
  gap: 0.5rem;
}

.price {
  color: #7d5441;
  font-size: 2.5rem;
  font-family: "PoppinsBold", sans-serif;
  text-shadow: 0 2px 4px rgba(125, 84, 65, 0.1);
}

.price__note {
  color: #9b6b5a;
  font-size: 1rem;
  font-family: "PoppinsExtraLight", sans-serif;
  opacity: 0.8;
}

.hero__cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: "PoppinsBold", sans-serif;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__button.primary {
  background: linear-gradient(135deg, #2bb573, #1a8f5a);
  color: white;
  box-shadow: 0 4px 15px rgba(43, 181, 115, 0.3);
}

.hero__button.primary:hover {
  background: linear-gradient(135deg, #1a8f5a, #09713e);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 181, 115, 0.4);
}

.hero__button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #7d5441;
  border: 2px solid #7d5441;
}

.hero__button.secondary:hover {
  background: #7d5441;
  color: white;
  transform: translateY(-2px);
}

.hero__image {
  flex: 1;
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero__image img:hover {
  transform: scale(1.02);
}

/* Galerie Section */
.gallery__section {
  padding: 4rem 6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.gallery__section h2 {
  color: #7d5441;
  font-size: 2.5rem;
  font-family: "PoppinsBold", sans-serif;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__main {
  position: relative;
  width: 100%;
  height: 60vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery__main img:hover {
  transform: scale(1.02);
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2;
}

.gallery__nav button {
  background: rgba(125, 84, 65, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.gallery__nav button:hover {
  background: rgba(125, 84, 65, 1);
  transform: scale(1.1);
}

.gallery__thumbnails {
  display: flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
}

.gallery__thumbnails img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.gallery__thumbnails img:hover,
.gallery__thumbnails img.active {
  opacity: 1;
  transform: scale(1.05);
}

/* Features Section */
.features__section {
  padding: 4rem 6rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.features__section h2 {
  color: #7d5441;
  font-size: 2.5rem;
  font-family: "PoppinsBold", sans-serif;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(125, 84, 65, 0.1);
}

.feature__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature__card box-icon {
  width: 60px;
  height: 60px;
  color: #9b6b5a;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(155, 107, 90, 0.2));
}

.feature__card h3 {
  color: #7d5441;
  font-size: 1.5rem;
  font-family: "PoppinsBold", sans-serif;
  margin-bottom: 0.5rem;
}

.feature__card p {
  color: #4a4a4a;
  font-size: 1rem;
  font-family: "PoppinsExtraLight", sans-serif;
}

/* Description Section */
.description__section {
  padding: 4rem 6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.description__section h2 {
  color: #7d5441;
  font-size: 2.5rem;
  font-family: "PoppinsBold", sans-serif;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.description__content {
  max-width: 800px;
  margin: 0 auto;
}

.description__content p {
  color: #4a4a4a;
  font-size: 1.1rem;
  font-family: "PoppinsExtraLight", sans-serif;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Specs Section */
.specs__section {
  padding: 4rem 6rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.specs__section h2 {
  color: #7d5441;
  font-size: 2.5rem;
  font-family: "PoppinsBold", sans-serif;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.specs__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.specs__category {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(125, 84, 65, 0.1);
}

.specs__category h3 {
  color: #7d5441;
  font-size: 1.3rem;
  font-family: "PoppinsBold", sans-serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specs__category ul {
  list-style: none;
}

.specs__category li {
  color: #4a4a4a;
  font-size: 1rem;
  font-family: "PoppinsExtraLight", sans-serif;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.specs__category li::before {
  content: "•";
  color: #9b6b5a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Plans Section */
.plans__section {
  padding: 4rem 6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.plans__section h2 {
  color: #7d5441;
  font-size: 2.5rem;
  font-family: "PoppinsBold", sans-serif;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.plans__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan__item {
  text-align: center;
}

.plan__item img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.plan__item img:hover {
  transform: scale(1.02);
}

.plan__item p {
  color: #7d5441;
  font-size: 1.1rem;
  font-family: "PoppinsMedium", sans-serif;
  margin-top: 1rem;
}

/* CTA Section */
.cta__section {
  padding: 4rem 6rem;
  background: linear-gradient(135deg, #7d5441 0%, #9b6b5a 100%);
  text-align: center;
}

.cta__content h2 {
  color: white;
  font-size: 2.5rem;
  font-family: "PoppinsBold", sans-serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-family: "PoppinsMedium", sans-serif;
  margin-bottom: 2rem;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta__button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-family: "PoppinsBold", sans-serif;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta__button.primary {
  background: linear-gradient(135deg, #2bb573, #1a8f5a);
  color: white;
  box-shadow: 0 4px 15px rgba(43, 181, 115, 0.3);
}

.cta__button.primary:hover {
  background: linear-gradient(135deg, #1a8f5a, #09713e);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 181, 115, 0.4);
}

.cta__button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta__button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Zoom Container */
.zoom-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

.zoom-container.active {
  display: flex;
}

.zoom-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.3s;
}

.close-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
  .hero__section {
    padding: 3rem 4rem;
  }
  
  .hero__content h1 {
    font-size: 3rem;
  }
  
  .gallery__section,
  .features__section,
  .description__section,
  .specs__section,
  .plans__section,
  .cta__section {
    padding: 3rem 4rem;
  }
}

@media only screen and (max-width: 768px) {
  .hero__section {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    gap: 2rem;
  }
  
  .hero__content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .hero__features {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero__feature {
    padding: 0.6rem 1rem;
  }
  
  .hero__feature span {
    font-size: 0.8rem;
  }
  
  .hero__description p {
    font-size: 1rem;
  }
  
  .hero__cta {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero__button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .gallery__section,
  .features__section,
  .description__section,
  .specs__section,
  .plans__section,
  .cta__section {
    padding: 2rem;
  }
  
  .gallery__section h2,
  .features__section h2,
  .description__section h2,
  .specs__section h2,
  .plans__section h2,
  .cta__content h2 {
    font-size: 2rem;
  }
  
  .gallery__main {
    height: 40vh;
  }
  
  .features__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .specs__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .plans__container {
    grid-template-columns: 1fr;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta__button {
    width: 100%;
    max-width: 300px;
  }
}

@media only screen and (max-width: 480px) {
  .hero__section {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .hero__content h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .hero__features {
    gap: 0.8rem;
  }
  
  .hero__feature {
    padding: 0.5rem 0.8rem;
  }
  
  .hero__feature box-icon {
    width: 20px;
    height: 20px;
  }
  
  .hero__feature span {
    font-size: 0.75rem;
  }
  
  .hero__description p {
    font-size: 0.95rem;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .hero__button {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  
  .price {
    font-size: 1.8rem;
  }
  
  .gallery__section,
  .features__section,
  .description__section,
  .specs__section,
  .plans__section,
  .cta__section {
    padding: 1.5rem;
  }
  
  .gallery__section h2,
  .features__section h2,
  .description__section h2,
  .specs__section h2,
  .plans__section h2,
  .cta__content h2 {
    font-size: 1.6rem;
  }
  
  .gallery__main {
    height: 30vh;
  }
  
  .gallery__thumbnails img {
    width: 80px;
    height: 60px;
  }
  
  .feature__card {
    padding: 1.5rem;
  }
  
  .feature__card box-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature__card h3 {
    font-size: 1.3rem;
  }
  
  .description__content p {
    font-size: 1rem;
  }
  
  .specs__category {
    padding: 1.5rem;
  }
  
  .specs__category h3 {
    font-size: 1.2rem;
  }
  
  .specs__category li {
    font-size: 0.95rem;
  }
} 
