@charset "utf-8";
/* CSS Document */

:root {
	--mgfrg: #121C31;		/* Meny grunnfarge */
	--gullfrg: #AB853C;	/* Gullfarge */

	--bgfrg: var(--mgfrg);	/* Bakgrunnsfarge på hele siden */
	--bodyfrg: #DDD;		/* Bakgrunnsfarge på innholdsfeltet */
	--innhfrg: #DDD;		/* Bakgrunnsfarge på container */

	--stdfont: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--stdfw: 300;			/* Standard forntweight */
}

/* Felles */
html {
	height: 100%;
}

body {
	height: 100%;
	position: relative;
	background-color: var(--bgfrg);
	font-family: var(--stdfont);
	font-weight: var(--stdfw);
}

h1 {
	font-size: 3.5rem;
	font-weight: 300;
}

p,
ul,
ol {
	font-size: 1.25rem;
}

@media only screen and (max-width: 991px) {
	h1 {
		font-size: 2.5rem;
	}
}

.psm {
	font-size: 0.8rem;
}

.pmed {
	font-size: 1rem;
}

.frame-square {
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
	position: relative;
}

.frame-square img {
	width: 100%;
	height: auto;
	margin: auto;
	position: absolute;
	top: -100%;
	right: -100%;
	bottom: -100%;
	left: -100%;
}

/* Spør eksperten */
#cb_opencont {
	max-width: 150px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

#chatcard {
	min-height: 400px;

}

.chatasst {
	background-color: #eeeeee;
	border: 1px solid black;
	border-radius: 5px;
	margin-left: 3%;
	margin-bottom: 5px;
	width: 85%;
	padding: 10px;
	font-size: 1rem;
}

.chatusr {
	background-color: #3C4656;
	color: #ffffff;
	border: 1px solid black;
	border-radius: 5px;
	margin-left: 12%;
	margin-bottom: 5px;
	width: 85%;
	padding: 10px;
	font-size: 1rem;
}

/* Navigation */
.navbar-brand img {
	max-width: 40%;
}

.nav-item {
	font-weight: 400;
}

/* Footer */
footer p {
	font-size: 1rem;
	font-weight: 400;
}

/* Forside */
.forside-overlay {
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	width: 100%;
	bottom: 0px;
	height: 25%;
	padding-bottom: 0.7rem;
}

@media only screen and (max-width: 991px) {
	.display-4 {
		font-size: 2rem;
	}
}
.placehld {
	background-color: #343a40;
}

.bg-meny {
	background-color: var(--mgfrg) !important;
}

.bg-body {
	background-color: var(--bodyfrg) !important;
}

.bg-innh {
	background-color: var(--innhfrg) !important;
}

.navbar a {
  color: white; /* Standard tekstfarge */
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a:active,
.navbar a:focus {
  color: var(--gullfrg);
}

.topimg {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 4;
}

.topimg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prodintro p {
    font-size: 1.6rem;
    font-weight: 300;
}

/* Hero overlay */
.hero-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;          /* dekker nederste 25 % */
}

.hero-overlay::before{    /* selve fargeflaten */
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--mgfrg, #000); /* din .bg-linktmork-farge */
    opacity: .6;          /* 50 % gjennomsiktighet */
}

.hero-overlay > *{        /* sikrer at teksten ligger over fargeflaten */
    position: relative;
    z-index: 1;
}

/* Logokarusell */
#logo-carousel {
  overflow: hidden;  /* Skjul elementer som ruller ut av rammen */
}
#logo-carousel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#logo-carousel li {
  float: left;
  width: 150px;       /* Bredde per logo (juster ved behov) */
  height: 100px;      /* Høyde på karusellrammen */
  line-height: 100px; /* Vertikal sentrering av bilder */
  text-align: center;
}
#logo-carousel img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  opacity: 0.65;
  transition: opacity 0.3s linear;
}
#logo-carousel img:hover {
  opacity: 1.0;  /* Øk synlighet ved hover */
}

/* Skjermstørrelser */

/* Mindre enn 768px (mobil og små skjermer) */
@media (max-width: 767.98px) {
.topimg {
	aspect-ratio: 16 / 7;
}

}

/* Mellom 768px og 991.98px (nettbrett) */
@media (min-width: 768px) and (max-width: 991.98px) {
.topimg {
	aspect-ratio: 16 / 6;
}

}

/* Fra 992px og opp (PC og større skjermer) */
@media (min-width: 992px) {
.topimg {
	aspect-ratio: 16 / 5;
}

}

