/* ========== GLOBAL STYLES ========== */
:root {
  /* Color palette - earthy, warm tones for a cattle breeding business */
  --primary: #8B4513;
  --primary-light: #A0522D;
  --primary-dark: #6B3303;
  --secondary: #228B22;
  --secondary-light: #32CD32;
  --secondary-dark: #006400;
  --accent: #DAA520;
  --dark: #333333;
  --light: #F5F5DC;
  --white: #FFFFFF;
  --gray: #CCCCCC;
  --gray-dark: #777777;
  
  /* Typography */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Georgia', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

p {
  margin-bottom: 1.2rem;
}

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

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

ul, ol {
  margin-bottom: 1.2rem;
  margin-left: 1.5rem;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-dark);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.primary:hover {
  background: var(--primary-light);
  color: var(--white);
}

.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.secondary:hover {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}

/* ========== HEADER STYLES ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  margin-right: 15px;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links li a {
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/2493510/pexels-photo-2493510.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260') no-repeat center center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ========== ABOUT SECTION ========== */
.about {
  background-color: var(--light);
}

.about-content {
  display: flex;
  gap: 40px;
}

.about-text {
  flex: 1;
}

/* ========== SERVICES SECTION ========== */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon-container {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Icon placeholders - replace with actual icons */
.icon-genetics,
.icon-consulting,
.icon-reproduction,
.icon-training,
.icon-location,
.icon-email,
.icon-phone,
.icon-facebook,
.icon-instagram,
.icon-linkedin,
.icon-youtube {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--white);
}

/* ========== SUSTAINABILITY SECTION ========== */
.sustainable {
  background-color: var(--light);
}

.sustainable-content {
  display: flex;
  gap: 40px;
}

.sustainable-text {
  flex: 1;
}

.sustainable-text h3 {
  margin-top: 1.5rem;
}

/* ========== GAMING SECTION ========== */
.gaming {
  background-color: var(--white);
}

.gaming-links {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--light);
  border-radius: 8px;
}

.gaming-links p {
  margin-bottom: 15px;
}

.disclaimer {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* ========== CONTACT SECTION ========== */
.contact {
  background-color: var(--light);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.contact-info {
  flex: 1;
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  margin-right: 20px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* ========== FOOTER ========== */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
}

.footer-logo h3 {
  color: var(--white);
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-around;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--gray);
}

.footer-column a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .about-content,
  .sustainable-content,
  .contact-content {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
}

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

  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero h2 {
    font-size: 2.4rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
}
