/*  ====================================  */
/*  Home Custom CSS Stylesheet            */
/*  Version: 2.2.0                        */
/*  Author: Elias Drozd                   */
/*  Copyright © 2025, All rights reserved */
/*  ====================================  */

/*  Main Content Design  */
.main-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.main-content h1 {
    text-align: center;
}

/*  Hero Section Design  */
.hero-section {
    width: 100vw;
    min-height: 420px;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #0f16243e, #0f1624a1), url('/images/alaskan_wilderness_2.png') no-repeat center center;
    background-size: cover;
}


.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 880px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    color: #fff;
}

/*  Hero Section Buttons Design  */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 0.8rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s;
}

.btn-primary {
  background-color: #2bbd7e;
  color: white;
}

.btn-primary:hover {
  background-color: #239764;
}

.btn-secondary {
  background-color: #2bbd7e;
  color: white;
}

.btn-secondary:hover {
  background-color: #239764;
}

/*  Feature Cards Design  */
.features-section {
    margin-top: 2vh;
    padding: 4rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.feature-card {
  background-color: #1d2537;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.feature-card i {
    font-size: 2rem;
    color: #2bbd7e;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.feature-card p {
    color: white;
}

/* ========================================= */
/* Media Queries                             */
/* ========================================= */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
    gap: 2rem;
  }

  .hero-section {
    padding: 2rem 1rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr; /* Eine Spalte */
    gap: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}