@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* ============================= */
/* RESET */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================= */
/* BODY */
/* ============================= */

body {
  font-family: 'Montserrat', sans-serif;
  color: #eee;

  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('photo.avif') no-repeat center center fixed;

  background-size: cover;
}

/* ============================= */
/* HERO VIDEO */
/* ============================= */

.hero {
  max-width: 900px;
  margin: 60px auto 20px auto;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.9);
}

.hero video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #00ccff;
  text-shadow: 0 0 20px #00ccff;
}

.hero-text p {
  font-size: 1.2rem;
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99;
}

/* ============================= */
/* MAIN CONTAINER */
/* ============================= */

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;

  background: rgba(0,0,0,0.75);
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.9);
  backdrop-filter: blur(4px);
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

h1 {
  text-align: center;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00ccff;
  text-shadow: 0 0 12px #00ccff;
  margin-bottom: 15px;
}

.welcome {
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
  color: #e6eeeb;
  font-size: 22px;
}

/* ============================= */
/* LINKS */
/* ============================= */

a {
  color: #00ff99;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: white;
  
}

/* ============================= */
/* MENU BAR */
/* ============================= */

.menu-bar{

max-width:900px;
margin:20px auto;

background:rgba(0,0,0,0.75);
backdrop-filter:blur(4px);

border-radius:14px;

box-shadow:0 0 25px rgba(0,0,0,0.9);

padding:18px 0;

}

/* inner menu */

.menu-inner{

display:flex;
justify-content:center;

gap:5px;   /* mindre avstand mellom menyvalg */

}

.menu-inner a{

color:#7c7777;
text-decoration:none;

font-weight:600;
font-size:13px;   /* mindre tekst */

letter-spacing:0.5px;

padding:4px 6px;  /* mindre padding */

border:none;

transition:0.2s ease;

}

.menu-inner a:hover{



box-shadow:0 0 2px #f8faf9;

}

/* ============================= */
/* FORM */
/* ============================= */

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #00ccff;
}

input {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: #eee;
}

input:focus {
  outline: 2px solid #00ccff;
}

input::placeholder {
  color: #aaa;
}

button {
  background: #00ccff;
  color: #000;
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #00a3cc;
}



/* ============================= */
/* SECTIONS */
/* ============================= */

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 1.4rem;
  color: #00ccff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section hr {
  border: none;
  border-top: 1.5px solid #00ccff;
  margin: 15px 0 20px 0;
}

.section p,
.section ul {
  font-size: 1.05rem;
  line-height: 1.6;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

/* ============================= */
/* NAS INFO BOX */
/* ============================= */

.nas-info {
  font-family: monospace;
  background: rgba(255,255,255,0.08);
  padding: 12px;
  border-radius: 8px;
  margin-top: 10px;
}




/* ============================= */
/* SEAT MAP */
/* ============================= */

#seatMap {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 4px;

  width: 100%;
  max-width: 280px;
  margin: 10px;
  justify-content: start;
}

.seat {
  aspect-ratio: 1 / 1;
  width: 100%;

  background: #1a1a1a;
  border-radius: 6px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  border: 2px solid #333;
  transition: 0.15s;
}

.seat:hover {
  border-color: #00ff99;
}

.seat.selected {
  background: #00ff99;
  color: black;
  font-weight: bold;
  box-shadow: 0 0 8px #00ff99;
}

.seat.taken {
  background: #ff4444;
  border-color: #ff4444;
  cursor: not-allowed;
}
/* ============================= */
/* PAYMENT BOX */
/* ============================= */

.payment-info {
  background: rgba(0,204,255,0.08);
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 0 20px rgba(0,255,153,0.3);
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width:768px){

.container{
padding:25px;
}

h1{
font-size:2rem;
}

.seat{
width:26px;
height:26px;
font-size:10px;
}

}

/* ============================= */
/* MOBIL */
/* ============================= */

@media (max-width:600px){

#seatMap{
max-width:260px;
margin:20px 0;
}

.seat{
width:14px;
height:14px;
font-size:8px;
border-radius:3px;
}

/* ============================= */
/* MOBILE MENU */
/* ============================= */

@media (max-width:600px){

.menu-inner{

gap:12px;
flex-wrap:wrap;

}

.menu-inner a{

font-size:12px;
padding:5px 8px;

}

}


}

