/* CSS Document Lundskrågene IBK */


/* BAKGRUNNER */

.baklund {
  background: 
    radial-gradient(circle at 90% 30%, #123c6c, rgba(0, 0, 0, 0) 30%),
    radial-gradient(circle at 35% 95%, #123c6c, rgba(0, 0, 0, 0) 30%),
    #020710; /* fallback bakgrunn */
  background-blend-mode: normal; /* eller 'screen', 'overlay', etc. */
}

.bakcallout {
	background: rgba(18, 60, 108, 0.1);
}


/* KNAPPER */

.knapplund1 {
	background-color: #eddea8;
	color: #121212;
}

.knapplund1:hover {
	background-color: #edd479;
	color: #121212;
}

.knapplundoutline {
	border: 2px solid #214096;
	background-color: transparent;
	color: #ed6732;
}

.knapplundoutline:hover {
	border: 2px solid #386cfc;
	background-color: transparent;
	color: #ed6732;
}


/* TEKST */

.tekstlundlys {
	color: #e8e8e8;
}

.tekstlundgul {
	color: #eddea8;
}

.tekstlundrod {
	color: #ed6732;
}

.tekstlundmork {
	color: #121212;
}

.tekstlundgulmork {
	color: #edc531;
}


/* CARD */

.glass-card {
            width: auto;
            padding: 0px;
            border-radius: 15px;
            background: rgba(18, 60, 108, 0.1); /* Transparent white */
            backdrop-filter: blur(10px); /* Frosted glass effect */
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow */
            border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
            text-align: left;
            color: white;
        }

.glass-modal {
            width: auto;
            padding: 0px;
            border-radius: 15px;
            background: rgba(18, 60, 108, 0.5); /* Transparent white */
            backdrop-filter: blur(10px); /* Frosted glass effect */
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow */
            border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
            text-align: left;
            color: white;
        }

/* DIVIDER */

html .divider.divider-lund.divider-small hr {
	background: #ed6732;
}

html .divider.divider-lund2.divider-small hr {
	background: #214096;
}

html .divider.divider-lund3.divider-small hr {
	background: #eddea8;
}


/* DISPLAY GRID */
.omriss {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: space-evenly;
}

.boks-bob2{
	flex-grow: 1;
	background: linear-gradient(to right, rgba(56, 108, 252, 0.1), rgba(18, 60, 108, 0.1));
	border: 1px solid rgba(56,108,252,0.30);
	border-radius: 10px;
	width: 300px;
	text-align: center;
	overflow: hidden;
		
}

.bokstopp_sol2 {
	background: linear-gradient(to right, rgba(56, 108, 252, 0.1), rgba(18, 60, 108, 0.1));
	color: white;
	padding: 5px;
	font-size: 12px;
	font-weight: bolder;
}

.boxbilde {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding-top: 12px;
	padding-bottom: 10px;
}

.bokslaks {
	font-size: 16px;
	margin: 0;
	padding: 2px;
	color: #e8e8e8;
	font-weight: bold;
}

.boksteks {
	font-size: 10px;
	margin: 0;
	padding: 2px;
	color: #e8e8e8;
	font-weight: bold;
}

.tekstklokke2 {
	color: #eddea8;
}


/* TEST TABELL */
.table-container {
  width: 100%;
  
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.0); /* Gjennomsiktig hvit bakgrunn */
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
}

/* Tabellstiler */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  color: #e8e8e8;
}

th {
  background-color: rgba(255, 255, 255, 0.0); /* Gjennomsiktig hvit bakgrunn */
  color: #e8e8e8;
}


/* START LIQUID GLASS */
.liquid-glass-button {
  position: relative;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* Discreet moving highlight effect */
.liquid-glass-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  animation: subtleSweep 6s linear infinite;
  pointer-events: none;
}

@keyframes subtleSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.liquid-glass-button:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.07)
  );
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.2),
    0 6px 24px rgba(0, 0, 0, 0.3);
}


/* SLUTT LIQUID GLASS */

