/* Main Styles for The LUX B Collective */

/* Variables */
:root {
  --primary-color: #ff6b9d;
  --secondary-color: #000000;
  --background-color: #000000;
  --text-color: #ffffff;
  --light-text: #f5f5f5;
  --dark-text: #333333;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Playfair Display", serif;
  --font-script: "Playfair Display", cursive;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.btn-primary:hover {
  background-color: #ff4b85;
  color: var(--text-color);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: #ff4b85;
}

.btn-dark {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.btn-dark:hover {
  background-color: var(--text-color);
  color: var(--secondary-color);
}

.section-title {
  font-family: var(--font-script);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 400;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Header Styles */
header {
  height: 60px;
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-small {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  font-size: 0.9rem;
  text-transform: capitalize;
}

.social-icons a {
  margin-left: 15px;
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  margin-top: 60px;
  background-image: url("../images/home.png");
  background-size: cover;
  filter: grayscale(100%);
  background-position: center;
  position: relative;
  min-height: 120vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  margin-top: -30rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  /* Background gradiente de transparencia no bottom */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}

.hero-title {
  font-family: var(--font-script);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.logo-large {
  margin: auto;
  max-width: 500px;
}

.hero-text {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero .btn {
  margin-top: 2rem;
}

/* Core Pillars Section */
.core-pillars {
  padding: 5rem 0;
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.pillar-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-image img {
  transform: scale(1.05);
}

.pillar-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pillar-content {
  background-color: var(--primary-color);
  padding: 20px;
  min-height: 120px;
}

.pillar-content h3 {
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.pillar-content p {
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--text-color);
  color: var(--dark-text);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonial-card {
  background-color: var(--text-color);
  padding: 30px;
  border: 1px solid #eee;
  text-align: left;
}

.testimonial-text {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.testimonial-rating {
  color: gold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.8rem;
}

/* Join Us Section */
.join-us {
  padding: 5rem 0;
}

.join-options {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.join-option {
  text-align: center;
}

.join-option p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.join-option .btn {
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--background-color);
  padding-top: 3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-nav {
  display: flex;
  gap: 50px;
}

.footer-column h3 {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.newsletter {
  max-width: 400px;
}

.newsletter h3 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.newsletter p {
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  background-color: #1a1a1a;
  color: var(--text-color);
}

.newsletter-form button {
  align-self: flex-end;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: #777;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pillars-container,
  .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-nav {
    margin-bottom: 2rem;
  }

  .newsletter {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  .logo-small {
    margin-bottom: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .pillars-container,
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .join-options {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-text {
    font-size: 0.9rem;
  }
}
