* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #000;  
}


.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  color: #fff;
}

header {
  background: #000;
  text-align: center;
  padding: 20px 0;
}
header h1 {
  font-size: 36px;
  color: #DB0787;           
}
header .subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 8px;
  color: #F8BAE0;           
}


nav {
  background: #000;         
  padding: 16px 0;
}


nav .nav-list {
  list-style: none;               
  margin: 0;                     
  padding: 0;                     
  display: flex;                  
  justify-content: center;        
  gap: 16px;                      
}
nav .nav-list li {
  margin: 0;                      
}


nav .btn {
  display: inline-block;
  background: #DB0787;            
  color: #F8BAE0;                 
  border: 2px solid #F8BAE0;      
  padding: 10px 24px;
  border-radius: 20px;            
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color .2s, color .2s, border-color .2s;
}
nav .btn:hover {
  background: #F8BAE0;            
  color: #DB0787;                 
  border-color: #DB0787;          
}


main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0;
}
.intro {
  background: #000;
  padding: 20px;
  border-radius: 6px;
}
.intro h2,
.intro p {
  color: #ff0080;                 
}
.intro h2 {
  margin-bottom: 10px;
}
.hero img {
  width: 100%;
  display: block;
  border-radius: 8px;
}


.gallery {
  position: relative;
  height: 300px;
  background: url('assets/juniemuseumwalking.jpg') center/cover no-repeat;
  margin-bottom: 20px;
}

footer {
  background: #000;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
}
.footer-gif {
  display: block;
  margin: 0 auto 10px;
  max-width: 400px;
  height: auto;
}

.gallery {
  
  background: none;
  height: auto;
  
  
  display: grid;
  
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px 0;    
}

.gallery img {
  display: block;     
  width: 100%;        
  height: auto;
  object-fit: cover;  
  border-radius: 4px; 
}



body { margin: 0; }


header, .main-nav { position: relative; z-index: 100; }


.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 16px;
  text-align: center;
}


.main-nav .btn,
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 3px solid #ff66b3;   
}


.hero, .intro, main, section, footer {
  position: relative;
  z-index: 1;
}

