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

body{
  background-color: #E3E3D0;
}

/* --- NAVBAR --- */
#topNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  backdrop-filter: blur(6px);
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.navIcons{
  display: flex;
  gap: 22px;
}

.nav-center{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#topNav.scrolled{
  background-color: #E3E3D0;
}

#topNav img {
  height: 30px;
  cursor: pointer;
}

#topNav .nav-logo {
  height: 60px;
  justify-content: center;
}

/*---------------------------------------------------------------*/

/* Hero here is every change for hero video*/
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Shared hero overlay text (LUMINA + ONE) */
.hero-text,
.hero-bottom-text {
  position: absolute;
  z-index: 1;
  color: white;
  font-family: "Inter", sans-serif;
}

/* lumina hero center text */
.hero-text {
  right: 5%;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 1.2rem;
  margin: 1.5rem 0;
}

.hero-text h1 {
  font-size: 4rem;
  font-family: "Inria Sans",sans-serif;
  margin: 0.5rem 0;
}


.p1 {
  font-size: 4rem;
  font-family: "Judson", serif;
  color: #fff;
  margin: 0.5rem 0;
  letter-spacing: 0.05em;
  padding-bottom: 0.5rem;
}

/*Button for purchasing*/
.buy-button{
  background-color: #CBDED3;
  font-size: 1.5rem;
  color: #484848;
  border: none;
  border-radius: 8px;
  height: 50px;
  width: 150px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.16);
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.buy-button:hover{
  background-color: #76FFB0;
  cursor: pointer;
}

.buy-button:active{
  border: 2px solid #000000;
}

.price-and-button{
  display: flex;
  align-items: center;
  padding-top: 3rem;
  margin-left: auto;
  gap: 25px;
}

/*Price text*/
.price{
  font-family: "Judson", sans-serif;
  font-size: 2rem;
  font-weight: lighter;
}

/* New bottom line text */
.hero-bottom-text {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  font-size: 1.2rem;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  font-family: "Inria Sans", sans-serif;
}

.hero-bottom-text span {
  white-space: nowrap;
}

/*---------------------------------------------------------------*/

/* Main */
main {
  position: relative;
  background: #E3E3D0;
  color: #000;
  padding: 1rem;
}

/*---------------------------------------------------------------*/

.speakercolours{
  padding-top: 24px;
  padding-left: 24px;
  font-size: 1.4rem;
  font-family: "Inria Sans", sans-serif;
  font-weight: bold;
  color: #484848;
}

/* the 4 speaker photos beneath the icons */
#photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}

#photos img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.16);
}

#photos article{
  position: relative;
  transition: transform 0.3s ease;
}

#photos article:hover {
  transform: scale(1.01);
  cursor: pointer;
}

#photos article p{
  position: absolute;
  top: 24px;
  left: 24px;
  margin: 0;
  padding: 6px 10px;
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: bold;
  font-family: "Inria Sans", sans-serif;
}

/*---------------------------------------------------------------*/

/*A Horizontal line to separate content*/
hr{
  border: none;
  height: 0.5px;
  background-color: rgba(75,75,75,0.4);
  margin: 2rem 24px;
}

/*---------------------------------------------------------------*/

/*Specifications text*/
h3 {
  display: flex;
  justify-content: center;
  padding-bottom: 0.5rem;
  font-size: 25px;
  color: #484848;
  font-family: "Inria Sans", sans-serif;
}


.specs{
  list-style-type: disc;
  padding: 0;
  margin: 0 48px;
  max-width: 80%;
  text-align: left;
  line-height: 2.4;
  font-size: 1.1rem;
  padding-bottom: 1.5rem;
  font-family: "inter", sans-serif;
  color: #484848;
}

.boldlabel{
  font-weight: bold;
}

/*---------------------------------------------------------------*/

/*Centered stack (Coming soon speaker cards)*/
.centered-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px;
}

.centered-stack img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.16);
  transition: filter 0.3s ease;
}

.centered-stack article {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.centered-stack .cslabel{
  position: absolute;
  top: 24px;
  left: 24px;
  margin: 0;
  padding: 0 10px;
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: bold;
  font-family: "Inria Sana", sans-serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.16);
  transition: opacity 0.3s ease;
}

.centered-stack .cshover{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0;
  color: #ffffff;
  font-size: 2.5rem;
  font-family: "Inria Sans", sans-serif;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/*Hover effects for the coming soon cards*/
.centered-stack article:hover img {
  filter: blur(4px) brightness(0.7);
  border-radius: 5px;
  cursor: pointer;
}

.centered-stack article:hover .cslabel{
  filter: blur(4px) brightness(0.7);
  cursor: pointer;
}

.centered-stack article:hover .cshover{
  opacity: 1;
}

/*---------------------------------------------------------------*/

/*the logo above the about section*/
#minilogo {
  display: flex;
  justify-content: center;
}

#minilogo img {
  max-width: 85px;
  height: auto;
}

/*About us text*/
.p2 {
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 80%;
  margin: 24px auto;
  line-height: 2.4;
  font-size: 1.1rem;
  padding-bottom: 3rem;
  font-family: "inter", sans-serif;
  color: #484848;
}

/*---------------------------------------------------------------*/

/* Footer Styling */

footer {
  display: flex;
  width: 100%;
}

h4{
  display: 1;
  padding-bottom: 0.5rem;
  font-size: 25px;
  color: #484848;
  font-family: "Inria Sans", sans-serif;
  margin-bottom: 4px;
}

.footer article {
  flex: 1;
  padding-left: 24px;
  color: #484848;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 0.5px solid rgba(75,75,75,0.4);
  margin-bottom: 60px;
  font-family: "Inria Sans", sans-serif;
}

.socials{
  display: flex;
  gap: 8px;
  align-items: center;
}

.socials img{
  width: 28px;
  height: 28px;
}

.tpilot{
  width: 100px;
  display: block;
}


/*copy right text*/
#bunden {
  padding-bottom: 10px;
  display: flex;
  justify-content: space-around;
  color: #484848;
  
}

/*---------------------------------------------------------------*/

/*imported fonts from google*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');




/* Responsiv design IKKE BRUGT! 
@media (max-width: 600px) {
  body {
  background-color: #E3E3D0;
  }
  #photos {
    display: block;
  }
  
}

@media (min-width: 601px) and (max-width: 1024px) {
  body {
    background-color: #E3E3D0;
  }
  #photos {
    display: block;
  }
}
  */