/**
 * Lagerhaus Wild AG - Custom Styles
 * Color Scheme:
 * - Primary: #07443d (Dark Green)
 * - Secondary: #2c3135 (Dark Gray)
 * - Accent: #b69f3f (Gold)
 * - Background: #ffffff (White)
 */

/* Navigation Dropdown Menu */
.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.navmenu .dropdown ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navmenu .dropdown ul li a {
  padding: 12px 20px;
  display: block;
  color: var(--nav-color);
  font-size: 14px;
  transition: all 0.3s ease;
  margin: 0;
}

.navmenu .dropdown ul li a:hover {
  background: rgba(7, 68, 61, 0.05);
  color: var(--primary-color);
  padding-left: 25px;
}

.navmenu .dropdown .toggle-dropdown {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.navmenu .dropdown:hover .toggle-dropdown {
  transform: rotate(180deg);
}

/* Mobile dropdown adjustments */
@media (max-width: 1199px) {
  .navmenu .dropdown ul {
    position: static;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
  }
  
  .navmenu .dropdown:hover > ul {
    display: block;
  }
}

/* Hero Section - Green Overlay instead of white */
.hero:before {
  background: color-mix(in srgb, #07443d 70%, transparent);
}

/* Hero text color - white for better contrast */
.hero h1,
.hero p {
  color: #ffffff;
}

/* Hero h1 span - accent color for "Lagerhaus Wild AG" */
.hero h1 span {
  color: #b69f3f;
}

/* Override button colors */
.hero .btn-get-started {
  background: #07443d;
  color: #ffffff;
}

.hero .btn-get-started:hover {
  background: #05332d;
}

/* Service items */
.service-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 25px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #b69f3f;
  box-shadow: 0 10px 30px rgba(7, 68, 61, 0.15);
  transform: translateY(-5px);
}

.service-item .icon {
  color: #b69f3f;
  background: rgba(7, 68, 61, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.service-item:hover .icon {
  background: #07443d;
  color: #ffffff;
}

.service-item h3 {
  color: #07443d;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-item p {
  color: #2c3135;
}

/* Featured services */
#featured-services .service-item {
  background: #ffffff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

#featured-services .service-item .icon {
  background: rgba(7, 68, 61, 0.1);
  color: #07443d;
}

#featured-services .service-item:hover .icon {
  background: #07443d;
  color: #b69f3f;
}

/* Section titles */
.section-title h2 {
  color: #07443d;
}

.section-title p {
  color: #2c3135;
}

.section-title .description-title {
  color: #b69f3f;
}

/* Stats section */
.stats .stats-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.stats .stats-item i {
  color: #07443d;
  font-size: 40px;
  margin-bottom: 15px;
}

.stats .stats-item p {
  color: #2c3135;
  font-weight: 500;
}

.stats .stats-item .purecounter {
  color: #07443d;
  font-weight: 700;
  font-size: 32px;
}

/* Skills section */
.skills .progress-bar {
  background: linear-gradient(90deg, #07443d 0%, #07443d 100%);
}

.skills .skill {
  color: #07443d;
  font-weight: 600;
}

.skills .skill .val {
  color: #07443d;
}

/* Team section */
.team-member {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(7, 68, 61, 0.2);
}

.team-member .member-info h4 {
  color: #07443d;
  font-weight: 600;
}

.team-member .member-info span {
  color: #07443d;
  font-weight: 500;
}

.team-member .member-info p {
  color: #2c3135;
}

.team-member .social a {
  color: #07443d;
}

.team-member .social a:hover {
  color: #b69f3f;
}

/* Testimonials - Improved visibility */
.testimonials:before {
  background: color-mix(in srgb, #07443d 85%, transparent);
}

/* Testimonials section title - white text */
.testimonials .section-title h2,
.testimonials .section-title p,
.testimonials .section-title .description-title {
  color: #ffffff;
}

.testimonials .testimonial-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin: 10px;
}

.testimonials .testimonial-item h3 {
  color: #07443d;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}

.testimonials .testimonial-item h4 {
  color: #b69f3f;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #b69f3f;
}

.testimonials .testimonial-item p {
  color: #2c3135;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #07443d;
  font-size: 32px;
  opacity: 0.3;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: #b69f3f;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #07443d;
}

/* FAQ section */
.faq .faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.faq .faq-item h3 {
  color: #07443d;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq .faq-item p {
  color: #2c3135;
}

.faq .faq-toggle {
  color: #b69f3f;
}

.faq .faq-toggle:hover {
  color: #07443d;
}

/* Contact section */
.contact .info-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact .info-item i {
  color: #b69f3f;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact .info-item h3 {
  color: #07443d;
  font-weight: 600;
}

.contact .info-item p {
  color: #2c3135;
}

/* Footer */
footer {
  background: #07443d;
  color: #ffffff;
}

footer .logo img {
  height: 60px; /* Increased footer logo size */
  width: auto;
}

footer h4 {
  color: #b69f3f;
  font-weight: 600;
  margin-bottom: 20px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: #b69f3f;
}

footer .copyright {
  background: #05332d;
  color: rgba(255, 255, 255, 0.7);
}

/* Top bar */
.topbar {
  background: #07443d;
  border-bottom: none;
}

.topbar .contact-info a {
  color: #ffffff;
}

.topbar .contact-info a:hover {
  color: #b69f3f;
}

/* Header/Navigation */
.header .logo h1 {
  color: #07443d;
}

.header .logo img {
  height: 120px !important; /* Increased logo size - override main.css max-height */
  max-height: 120px !important; /* Override main.css max-height */
  width: auto;
}

.header .navmenu a {
  color: #07443d;
}

.header .navmenu a:hover,
.header .navmenu a.active {
  color: #07443d;
}

/* Pricing section (if used) */
.pricing .pricing-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
}

.pricing .pricing-item h3 {
  color: #07443d;
}

.pricing .pricing-item .price {
  color: #b69f3f;
}

.pricing .pricing-item .btn-buy {
  background: #07443d;
  color: #ffffff;
}

.pricing .pricing-item .btn-buy:hover {
  background: #b69f3f;
}

.pricing .pricing-item.featured {
  border-color: #b69f3f;
  box-shadow: 0 10px 30px rgba(182, 159, 63, 0.2);
}

/* Portfolio filters */
.portfolio-filters li {
  color: #07443d;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  color: #b69f3f;
}

/* Scroll to top button */
.scroll-top {
  background: #07443d;
  color: #ffffff;
}

.scroll-top:hover {
  background: #b69f3f;
}
