/*
Theme Name: Bronze Clone
Theme URI: https://adrian.adrirodrigod4.es/
Author: Website Clone
Author URI: https://adrian.adrirodrigod4.es/
Description: Tema personalizado inspirado en bronze.vision con secciones de presentación, características, métricas, llamada a la acción, formulario de contacto y pie de página. No reutiliza código propietario del sitio de referencia, sólo reproduce su estructura y estilo de manera legal.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bronzeclone
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: #0A0A0A;
}

h1,h2,h3 {
  margin: 0;
}

p {
  margin: 0 0 1rem;
  color: #485563;
}

a {
  color: inherit;
}

/* Utility classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 20px;
  background-color: #fff;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  max-width: 700px;
}

.hero h1 .highlight {
  color: #D49A3C;
}

.hero p {
  font-size: 1.25rem;
  color: #485563;
  margin-top: 20px;
  max-width: 500px;
}

.hero .btn {
  margin-top: 30px;
  background-color: #12211C;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #0b1712;
}

/* Beige intro section */
.section-beige {
  background-color: #F9F5EF;
  padding: 80px 20px;
}

.section-beige h2 {
  font-size: 2.5rem;
  color: #0A0A0A;
  max-width: 800px;
}

.section-beige p {
  font-size: 1.1rem;
  max-width: 600px;
}

/* Features Section */
.section-features {
  background-color: #fff;
  padding: 80px 20px;
}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.feature-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.feature-icon {
  font-size: 3rem;
  color: #D49A3C;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
  color: #0A0A0A;
}

.feature-item p {
  font-size: 1rem;
  color: #485563;
}

/* Metrics Section */
.section-metrics {
  background-color: #F9F5EF;
  padding: 80px 20px;
  text-align: center;
}

.metrics-container {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}

.metric-item {
  flex: 1;
}

.metric-item h3 {
  font-size: 2.5rem;
  color: #D49A3C;
  margin-bottom: 10px;
}

.metric-item p {
  font-size: 1rem;
  color: #485563;
}

/* Tagline Section */
.section-tagline {
  background-color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.section-tagline h2 {
  font-size: 2.5rem;
  color: #0A0A0A;
  margin-bottom: 20px;
}

.section-tagline p {
  font-size: 1.2rem;
  color: #485563;
}

/* Contact Form Section */
.section-contact {
  background-color: #F9EBD1;
  padding: 80px 20px;
  text-align: center;
}

.section-contact h2 {
  font-size: 2.5rem;
  color: #0A0A0A;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #12211C;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0b1712;
}

/* Footer Section */
.footer-top-bar {
  background-color: #D49A3C;
  height: 4px;
  width: 100%;
}

.footer {
  background-color: #12211C;
  color: #F5F5F5;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}

.footer-col h4 {
  color: #D49A3C;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-col a {
  color: #F5F5F5;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Simple fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

section {
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.1s;
}