/* 
 * Awakenings Personalisatie Styles
 * Version: 1.0.2
 * Last updated: 2025-12-04
 */

/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Auxilia-Bold;
  src: url(../fonts/auxilia-bold.woff2) format('woff2');
}

html,
body {
  height: 100%;
  font-family: Auxilia-Bold, Arial, sans-serif;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  font-size: 16px;
}

body {
  background: #000 url('../images/background.jpg') no-repeat bottom center;
  background-size: cover;
  /* backdrop-filter: grayscale(100%); */
}

/* App container */
.app {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  text-transform: uppercase;
}

/* User Profile */
.user-profile {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
  color: white;
}

.user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.user-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Logged in state - solid background */
.user-icon.logged-in {
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.user-icon.logged-in:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}

.user-icon svg {
  width: 24px;
  height: 24px;
}

.user-icon span {
  display: none; /* Hide text in circular design */
}

/* Main layout */
.main {
  display: flex;
  flex: 1;
}

/* Left column */
.main__left-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 40px;
  overflow: hidden;
  width: 100%;
}

.main__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.main__logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
}

.main__logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.6));
}

/* Social media section */
.follow-us {
  position: relative;
  z-index: 10;
  color: white;
  margin-bottom: 20px;
}

.follow-us__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.follow-us__channel-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin-bottom: 20px;
  justify-content: center;
}

.follow-us__channel {
  display: flex;
}

.follow-us__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.follow-us__link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.follow-us__icon {
  width: 16px;
  height: 16px;
}

/* Terms and conditions */
.follow-us__disclaimer {
  position: relative;
  z-index: 10;
}

.follow-us__disclaimer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}

.follow-us__disclaimer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.follow-us__disclaimer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.main__title {
  font-size: 32px;
  font-weight: bold;
  color: white;
  font-family: Auxilia-Bold, sans-serif;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  text-transform: uppercase;
}

.main__button {
  background: #ff0057;
  color: #fff;
  border: none;
  padding: 24px 48px;
  font-size: 20px;
  font-weight: bold;
  font-family: Auxila-Bold, sans-serif;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: #990034;
}

.main__button:active {
  transform: translateY(0);
}

.main__button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .main__left-column {
    padding: 20px;
  }

  .main__title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
  }

  .main__logo {
    max-width: 250px;
  }

  .user-profile {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .main__title {
    font-size: 28px;
    text-align: center;
  }

  .main__button {
    padding: 16px 32px;
    font-size: 16px;
  }

  .follow-us__disclaimer ul {
    align-items: center;
  }
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Transitions */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}
