@charset "UTF-8";

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

body {
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 20px;
}

.main-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  min-height: 100vh;
  justify-content: center;
}

.image-wrapper {
  width: 60%;
  display: flex;
  justify-content: center;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  text-align: center;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

h1 {
  color: #dc143c;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.buttons-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.shop-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
  background-color: #dc143c;
  min-width: 200px;
  text-align: center;
}

.shop-button-europe {
  background-color: #dc143c;
}

.shop-button-europe:hover {
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

.shop-button-argentina {
  background-color: #dc143c;
}

.shop-button-argentina:hover {
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

.shop-button:active {
  transform: translateY(-1px);
}

.footer-section {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  max-width: 600px;
}

.footer-text {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
  color: white;
  text-decoration: none;
}

.instagram-button:active {
  transform: translateY(0);
}

.instagram-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .image-wrapper {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .buttons-container {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }

  .shop-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
  }

  .main-container {
    gap: 40px;
    padding: 20px 0;
  }

  .footer-section {
    margin-top: 40px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .shop-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .instagram-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .instagram-button svg {
    width: 20px;
    height: 20px;
  }
}
