
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
}

header {
  
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  
}

.logo {
  font-size: 1.5em;
}
.logo img{
  max-width: 100px;
  height: auto;
  display: block;
  
}

nav {
  position: relative;
  background-color: #f9dd00;
  border-radius: 25px;
  padding: 20px;
  
}
.center{
  max-width: 70%;
  height:auto;
  display:block;
  max-width: 70%;
  margin-left: 10%;}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  font-family:"Audiowide", sans-serif;
  
}

.nav-links li a {
  color: #c84c01;
  text-decoration: none;
  padding: 8px;
  
}


.nav-links .active {
  border-bottom: 2px solid #fff;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  top: 35px;
  min-width: 150px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 10px;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 400px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.spot {
  margin:60px;}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2em;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.intro {
  text-align: center;
  padding: 40px 20px;
}

.gallery {
  padding: 40px 20px;
  text-align: center;
}

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

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: white;
  margin-top: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    display: none;
    background: #222;
    position: absolute;
    right: 0;
    top: 60px;
    width: 200px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio-section {
            padding: 20px;
            margin-bottom: 40px;
            border-bottom: 1px solid #ccc;
        }

        .password-prompt {
            margin: 20px 0;
        }

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

        .gallery-item {
            width: 100%;
            padding-bottom: 100%; /* Creates a square aspect ratio */
            background-color: #f0f0f0;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #555; 
}
      
       }
}