/* General styles */
body {
  background-image: url('/img/bakgrunn kopi.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
}

.container[role="main"] {
  background-color: rgba(250, 250, 250, 0.8);
  flex-grow: 1;
  width: 100%;
  max-width: 1200px;
  margin: 90px auto 0;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.navbar-custom {
  background-color: rgba(200, 200, 200, 0.9) !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
}

.main-content {
  padding-top: 100px;
}

/* Hero section */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
}

h1 {
  font-size: 14rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* CTA container */
.cta-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email-input {
  width: 100%;
  padding: 1rem;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
  border: 1.5px solid #000000;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
}

.cta-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.75rem;
  background-color: #0b0049;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
}

.cta-subtext {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Selling points section */
.selling-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 1400px;
  padding: 0 40px;
  width: 100%;
}

.point {
  flex: 1;
  background-color: white;
  border-radius: 50px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 300px;
  max-width: 400px;
}

.point-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.point i {
  font-size: 3.5rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.point h3 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.point p {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

.feature-cta {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.75rem;
  background-color: #0b0049;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 240px;
  margin-top: auto;
}

.feature-cta:hover {
  background-color: #0056b3;
}

/* Footer styles */
footer .list-inline.footer-links a {
  color: #404040;
  text-decoration: none;
  font-weight: normal;
}

footer .list-inline.footer-links a:hover,
footer .list-inline.footer-links a:focus {
  color: #0085A1;
  text-decoration: underline;
}

/* Media queries */
@media only screen and (min-width: 768px) {
  .main-content {
    padding-top: 100px;
  }
}

@media (max-width: 1200px) {
  .selling-points {
    flex-wrap: wrap;
  }

  .point {
    flex: 0 1 calc(50% - 15px);
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .selling-points {
    flex-direction: column;
    align-items: center;
  }

  .point {
    width: 100%;
    max-width: 600px;
  }

  h1 {
    font-size: 8rem;
  }

  .email-input,
  .cta-button {
    font-size: 1.5rem;
  }

  .point h3 {
    font-size: 2rem;
  }

  .point p {
    font-size: 1.4rem;
  }

  .feature-cta {
    font-size: 1.5rem;
  }
}

/* Footer icon links alignment */
footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 20px 0;
}

footer .list-inline-item {
  margin: 1110 10000px;
}

footer .fa-stack {
  font-size: 3rem;
}

footer .fa-stack-2x {
  color: #0b0049; /* Background circle color */
}

footer .fa-stack-1x {
  color: white; /* Icon color */
}

footer .fa-stack:hover .fa-stack-2x {
  color: #0056b3; /* Hover background color */
}

/* Ensure the last Facebook item is included in the flex container */
footer .footer-links .list-inline-item:last-child {
  display: inline-flex;
}


/* About page styles */
.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.about-container h1 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

.about-container h2 {
  color: #2980b9;
}

.about-cta-button {
  display: inline-block;
  background-color: #0b0049;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.about-cta-button:hover {
  background-color: #0056b3;
}

.about-feature-list {
  list-style-type: none;
  padding-left: 0;
}

.about-feature-list li:before {
  content: "✓ ";
  color: #27ae60;
  font-weight: bold;
  margin-right: 5px;
}