:root {
  --secondary: #f8e742;
  --main: #033d1e;
}
footer{
    background-color: var(--main);
    color: #fff;
}
footer .headline {
    border-bottom: 1px solid rgba(255,255,255,.1);
}
footer .headline h2, footer .headline h3, footer .headline h4, footer .headline h5, footer .headline h6 {
    border-bottom: 2px solid var(--secondary);
}
.social-icons li a {
	background-color: rgba(255,255,255,.2);
  background-color:var(--secondary);
  color:var(--main);
  border-radius: 5px;
}
dl.headlines.headlines-footer dd .text-muted {
	color: rgba(255,255,255,.5);
}
footer a,
dl.headlines.headlines-footer dd a {
	color: #ddd;
    color: rgba(255,255,255,.7);
}
footer a:focus,
footer a:hover,
dl.headlines.headlines-footer dd a:focus,
dl.headlines.headlines-footer dd a:hover {
	color: #fff;
}
header {
  background-color:var(--main);
}
header .sf-menu a {
  color:white;
}
header .sf-menu ul li a {
  color:black;
}
header .container .header-nav-top .login p a {
    color: var(--secondary);
}
header .container .header-nav-top .login p {
    color: var(--secondary);
}
.sf-menu.sf-arrows .sf-with-ul:after {
    border-top-color: var(--secondary);
}
section#content .content-header {
    background-color: var(--main);
}
section#content .content-header h2 {
  color:white;
}
section#content .content-header .breadcrumb>.active {
    color: white;
}
section#content .content-header .breadcrumb>.active {
    color: white;
}
section#content .content-header .breadcrumb a {
    color: var(--secondary);
}
#carousel-homepage.carousel .carousel-inner .item {
    height: 480px;
}

address:before {
    font-style: italic;
    font-weight:bold;
    font-size: 16px;
    content: "\"La Confrérie creates everlasting memories and friendships, while encouraging personal development and embracing inclusiveness\" \a ";
}



/*<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.fa {
  padding: 50px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2000px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}


.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

</style>
</head>
<body>

<h2>Style Social Media Buttons</h2>

<!-- Add font awesome icons -->
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-youtube"></a>
<a href="#" class="fa fa-instagram"></a>

      
</body>
</html>*/

/* Membership cards */
.membership-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.membership-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.membership-card h3 {
  margin-bottom: 10px;
}

.membership-card .price {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 12px;
}

.membership-card.highlight {
  border: 2px solid var(--secondary);
}

/* Force full width in Congressus */
.alumni-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.alumni-info-wrapper {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Linker info */
.alumni-info {
  flex: 2;
  background: rgba(0,0,0,0.03);
  padding: 32px;
  border-radius: 16px;
}

/* Rechter login */
.alumni-login {
  flex: 1;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  text-align: center;
}

/* Mobile */
@media (max-width: 900px) {
  .alumni-info-wrapper {
    flex-direction: column;
  }
}


/* Login button */
.login-button {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 28px;
  background: var(--main);
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(3, 61, 30, 0.25);
  transition: all 0.3s ease;
}

.login-button:hover {
  background: var(--secondary);
  color: var(--main) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(3, 61, 30, 0.35);
}

/* Mobile */
@media
/* Subtle La Confrérie colors */
.alumni-info {
  background: linear-gradient(
    135deg,
    rgba(3, 61, 30, 0.06),
    rgba(248, 231, 66, 0.12)
  );
  border-left: 6px solid var(--main);
}

.alumni-login {
  background: linear-gradient(
    135deg,
    #ffffff,
    rgba(248, 231, 66, 0.18)
  );
  border-top: 6px solid var(--secondary);
}

/* Improved login button */
.login-button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 26px;
  background: var(--main);
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(3, 61, 30, 0.25);
  transition: all 0.3s ease;
}

.login-button:hover {
  background: var(--secondary);
  color: var(--main) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(3, 61, 30, 0.35);
}



