/* Site-specific styles */

/* Hero Section with Scottish Highland Background */
.hero-section {
  background-color: #2c5530;
  position: relative;
  color: white;
  padding: 80px 0;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/scottish-mountains-hero.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(8px) brightness(0.05) contrast(0.3);
  opacity: 0.2;
  z-index: -2;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
}

.hero-section h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-section .btn {
  font-size: 1.1em;
  padding: 12px 30px;
  margin: 10px;
}

/* Content sections */
.content-section {
  padding: 60px 0;
  background: white;
}

.features-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.home-highlights {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  padding-left: 0;
  columns: 2;
  column-gap: 40px;
}

.home-highlights li {
  margin-bottom: 12px;
  break-inside: avoid;
}

.home-highlights i {
  margin-right: 10px;
  width: 22px;
  display: inline-block;
  text-align: center;
  color: #2c5530;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: 400px;
    background-attachment: scroll;
  }
  
  .hero-section h1 {
    font-size: 2.2em;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .home-highlights {
    font-size: 15px;
    columns: 1;
  }
}
