/* Frontpage Specific Styles */
.frontpage-body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.frontpage-link { 
  text-decoration: none; 
}

.frontpage-hero h1 { 
  font-weight: bold; 
  color: #00ffe7; 
}

.frontpage-btn-primary { 
  background-color: #764ba2; 
  border: none; 
  color: #fff; 
}

/* Frontpage Navigation Styles */
.frontpage-body header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.frontpage-body .navbar {
  background-color: rgba(13, 13, 13, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 231, 0.2);
}

.frontpage-body .navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.frontpage-body .navbar-nav .nav-link:hover {
  color: #00ffe7 !important;
}

.frontpage-body .navbar-toggler {
  border-color: #00ffe7;
  padding: 4px 8px;
}

.frontpage-body .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 255, 231, 0.25);
}

.frontpage-body .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300ffe7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Frontpage Hero Section Styling */
.frontpage-hero-fullscreen {
  height: 100vh;
  background: url('../images/background_1_brian.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding-right: 5%;
}

.frontpage-hero-content {
  text-align: right;
  z-index: 2;
  max-width: 450px;
  margin-left: auto;
}

.frontpage-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.frontpage-hero-cta .btn {
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.frontpage-hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 231, 0.3);
}

/* Frontpage Content section spacing */
.frontpage-content-section {
  margin-top: 0;
}

/* Frontpage Responsive adjustments */
@media (max-width: 768px) {
  .frontpage-hero-title {
    font-size: 2.5rem;
  }
  
  .frontpage-hero-fullscreen {
    background-attachment: scroll;
    justify-content: center;
    padding-right: 0;
  }
  
  .frontpage-hero-content {
    text-align: center;
    max-width: none;
    margin-right: auto;
  }
  
  /* Mobile navigation styling */
  .frontpage-body header {
    position: fixed !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  
  .frontpage-body .navbar-collapse {
    background-color: rgba(13, 13, 13, 0.98);
    border-radius: 0 0 10px 10px;
    margin-top: 10px;
    padding: 15px;
    border-top: 1px solid rgba(0, 255, 231, 0.2);
  }
  
  .frontpage-body .navbar-nav .nav-item {
    text-align: center;
    padding: 8px 0;
  }
  
  .frontpage-body .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 10px 20px !important;
    border-radius: 5px;
    margin: 2px 0;
  }
  
  .frontpage-body .navbar-nav .nav-link:hover {
    background-color: rgba(0, 255, 231, 0.1);
  }
}

@media (max-width: 480px) {
  .frontpage-hero-title {
    font-size: 2rem;
  }
  
  .frontpage-hero-cta .btn {
    font-size: 1rem;
    padding: 12px 30px;
  }
}
