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

:root {
  --terracotta: #a0522d;
  --sage: #8a9a5b;
  --limestone: #f0e9d2;
  --brass: #b8860b;
  --text-dark: #2a2a2a;
  --text-light: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.82;
  color: var(--text-dark);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 5.1rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  margin-top: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease;
  box-shadow: none;
}

header.scrolled {
  background-color: var(--terracotta);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled a,
header.scrolled .navbar-brand {
  color: var(--limestone) !important;
}

header.scrolled .nav-link {
  color: var(--limestone) !important;
}

header.scrolled .nav-link:hover {
  color: var(--brass) !important;
}

.navbar {
  padding: 1.5rem 0;
  background-color: transparent;
}

.navbar-brand {
  font-family: 'Bitter', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--brass);
}

.nav-link {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  color: var(--text-dark) !important;
  margin-left: 2rem;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--terracotta) !important;
}

.navbar-toggler {
  border-color: var(--terracotta);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23a0522d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.container-fluid {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 130px;
  padding-right: 130px;
}

@media (max-width: 1200px) {
  .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

section {
  padding: 170px 0;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.hero {
  background: url('images/hero-tribulus.jpg') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  color: white;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(160, 82, 45, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  color: var(--limestone);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.3rem;
  color: var(--limestone);
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.section-tertiary {
  background: linear-gradient(135deg, var(--terracotta) 0%, rgba(160, 82, 45, 0.85) 100%);
}

.section-tertiary h2,
.section-tertiary h3,
.section-tertiary p {
  color: var(--limestone);
}

.section-sage {
  background: linear-gradient(135deg, rgba(138, 154, 91, 0.1) 0%, rgba(138, 154, 91, 0.05) 100%);
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}

.content-wrapper.reverse {
  flex-direction: row-reverse;
}

.content-wrapper img {
  width: 60%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: fadeInScale 0.8s ease-out;
}

@media (max-width: 768px) {
  .content-wrapper img {
    width: 100%;
  }
}

.content-text {
  width: 40%;
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
  .content-text {
    width: 100%;
  }
}

.content-text h2,
.content-text h3 {
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.section-tertiary .content-text h2,
.section-tertiary .content-text h3 {
  color: var(--brass);
}

.content-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.82;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  border: 2px solid var(--brass);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.2), inset 0 0 20px rgba(240, 233, 210, 0.3);
  transform: scale(1.04);
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: relative;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(240, 233, 210, 0.15) 100%);
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.82;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.card-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.card-benefits li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.card-benefits li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: bold;
}

.btn-discover {
  background-color: transparent;
  border: 2px solid var(--brass);
  color: var(--brass);
  padding: 0.75rem 2rem;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 2px;
  align-self: flex-start;
}

.btn-discover:hover {
  background: linear-gradient(135deg, var(--limestone) 0%, rgba(240, 233, 210, 0.7) 100%);
  color: var(--terracotta);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  margin: 3rem 0;
  opacity: 0.5;
}

.list-section {
  background: var(--limestone);
  padding: 3rem;
  border-radius: 2px;
  margin: 2rem 0;
}

.list-section h3 {
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.list-section ul {
  list-style: none;
  padding: 0;
}

.list-section li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

.list-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: bold;
}

.disclaimer-block {
  background: #f9f9f9;
  border-left: 4px solid var(--sage);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.disclaimer-block h3 {
  color: var(--sage);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.disclaimer-block p {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

footer {
  background-color: var(--terracotta);
  color: var(--limestone);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

footer .container-fluid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  footer .container-fluid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

footer h4 {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--brass);
}

footer p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

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

footer a:hover {
  color: var(--brass);
}

.footer-divider {
  height: 1px;
  background: rgba(240, 233, 210, 0.3);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 233, 210, 0.3);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  margin: 0 1.5rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom a {
    margin: 0.5rem 0;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--terracotta);
  color: var(--limestone);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.3s ease;
}

.cookie-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0 130px;
}

@media (max-width: 1200px) {
  .cookie-content {
    padding: 0 80px;
  }
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
  }
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--brass);
  color: var(--terracotta);
}

.cookie-btn-accept:hover {
  background-color: var(--limestone);
}

.cookie-btn-reject {
  background-color: transparent;
  border: 2px solid var(--limestone);
  color: var(--limestone);
}

.cookie-btn-reject:hover {
  background-color: var(--limestone);
  color: var(--terracotta);
}

.cookie-btn-policy {
  background-color: transparent;
  border: 2px solid var(--limestone);
  color: var(--limestone);
}

.cookie-btn-policy:hover {
  background-color: var(--limestone);
  color: var(--terracotta);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-family: 'Bitter', serif;
  font-weight: 700;
  color: var(--terracotta);
}

.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-disclaimer {
  background-color: var(--limestone);
  padding: 1.5rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-submit {
  background-color: var(--terracotta);
  color: var(--limestone);
  border: 2px solid var(--terracotta);
  padding: 1rem 2.5rem;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: var(--brass);
  border-color: var(--brass);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.text-section {
  max-width: 900px;
}

.text-section p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title h1 {
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.page-title .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 300;
}

.thank-you-message {
  background: linear-gradient(135deg, var(--limestone) 0%, rgba(240, 233, 210, 0.8) 100%);
  padding: 3rem;
  border-radius: 2px;
  text-align: center;
  margin: 3rem 0;
  border-left: 4px solid var(--brass);
}

.thank-you-message h2 {
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.thank-you-message p {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-back {
  background-color: var(--terracotta);
  color: var(--limestone);
  border: none;
  padding: 0.75rem 2rem;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background-color: var(--brass);
  transform: translateY(-2px);
}

.hidden-column {
  display: none;
}
