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

@font-face {
  font-family: "Milker";
  src: url("Milker.otf") format("opentype");
}

@font-face {
  font-family: "CactusJack";
  src: url("Cactus-Jack.woff") format("woff");
}

body {
  font-family: "Avenir", sans-serif;
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
}

header {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
}

.logo {
  font-family: "CactusJack";
  font-size: 2rem;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #111;
  font-family: "CactusJack";
}

.hero-museum {
  text-align: center;
  margin-top: 1rem;
  padding: 2rem;
}

.museum-headline {
  font-family: "Milker";
  font-size: 5rem;
  margin-bottom: 0.5rem;
}

.museum-subline {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  font-family: "CactusJack";
}


.enter-button {
  display: inline-block;
  margin-top: 30rem;
  padding: 1rem 2rem;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  font-family: "CactusJack";
  font-size: 1.4rem;
  transition: 0.2s;
}

.enter-button:hover {
  opacity: 0.7;
}


@media (max-width: 600px) {
  .museum-headline { font-size: 3rem; }
  .illu { width: 80px; }
  .museum-illustrations { height: 140px; }
}

.rooms {
  max-width: 1000px;
  margin: 5rem auto;
  text-align: center;
}

.rooms-title {
  font-family: "Milker";
  font-size: 3.5rem;
  margin-bottom: 3rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.room-card img {
  width: 100%;
  border-radius: 6px;
}

.room-card p {
  font-family: "CactusJack";
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.room-hero {
  text-align: center;
  margin-top: 4rem;
}

.room-title {
  font-family: "Milker";
  font-size: 4rem;
}

.room-caption {
  font-family: "CactusJack";
  opacity: 0.7;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.room-gallery {
  max-width: 1200px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.room-gallery img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.door-link img {
    transition: transform 0.25s ease;
}

.door-link:hover img {
    transform: translateY(-5px) scale(1.03);
}

.room-card img {
    width: 80%;  
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
  max-width: 1200px;
  margin: 3rem auto;
  justify-items: center;
}

.rooms-grid img {
  width: 80%;        
  max-width: 300px;  
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.rooms-grid img:hover {
  transform: scale(1.05);
}

.museum-illustrations {
    display: flex;
    justify-content: center;
    margin-top: -2rem;     
    margin-bottom: -28rem;  
}

.museum-illustrations img {
    width: 50%;
    max-width: 500px;
    height: auto;      
    display: block;
}


.rooms-title {
    font-family: "Milker";
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
}


.door-label {
    text-align: center;
    font-family: "CactusJack";
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.75;
}
