/* Custom styles for Luganskaya Usadba website */

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

:root {
  --primary-color: #116149; /* dark green */
  --secondary-color: #8cb369; /* soft green */
  --light-color: #f7f8f4; /* very light beige */
  --dark-color: #212529; /* dark for text */
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  transition: box-shadow 0.3s ease;
}
.navbar-brand {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.25rem;
}
.navbar .nav-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--secondary-color);
}
.navbar-shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  background-image: url('../img/hero_bg.png');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
}

/* Page Header */
.page-header {
  background-image: url('../img/hero_bg.png');
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  position: relative;
  color: white;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Pattern overlay section */
.pattern-overlay {
  background-image: url('../img/pattern_bg.png');
  background-size: cover;
  background-position: center;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: #0e5039;
  border-color: #0e5039;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.btn-light {
  background-color: #fff;
  color: var(--primary-color);
}
.btn-light:hover {
  background-color: #f0f0f0;
}

/* Cards */
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

/* Timeline */
.timeline .timeline-item {
  background-color: #ffffff;
  border-left: 4px solid var(--primary-color);
}
.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(17, 97, 73, 0.1);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  font-size: 0.875rem;
}
footer a:hover {
  color: var(--secondary-color);
}