body {
    background-color: #000;
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-size: 22px;
    margin: 0;
    padding: 0;
    color: #EDC967;
    display: flex;
    flex-direction: column;
    min-height: 50vh;
    padding-top: 180px;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; 
    background-color: rgb(0, 0, 0); 
    text-align: center;
    padding: 0em 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

header h1 {
    font-family: 'Teko', Sans-Serif;
    color: #EDC967;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #EDC967;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, font-size 0.3s;
}

nav ul li a:hover {
    color: #ffffff;
    font-size: 120%;
}


main {
    position: relative;
    z-index: 0;
    text-align: center;
    padding-top: 100px; 
}

#hero {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #EDC967;
    margin-top: 70px;
}

.hero-content {
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero-content p {
    font-size: 1.2em;
}

section {
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    color: #EDC967;
}

section h2 {
    color: #EDC967;
}

section p, section form {
    color: #FFF;
}

#about {        
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 2em;
   border-radius: 10px;
   color: #FFF;
   text-shadow: 1px 1px 2px #000
}

.about-text {
    flex: 1;
    margin-right: 2em;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;

}

footer {
    font-family: 'Teko', sans-serif;
    font-size: 11px;
    text-align: center;
    padding: 1em 0;
    background-color: rgb(0, 0, 0);
    color: #EDC967;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

hr {
    border: 1px solid #EDC967;
    margin: 20px 0;
}

select, input[type="submit"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #EDC967;
    border-radius: 5px;
    background: rgba(51, 48, 48, 0.466);
    color: #EDC967;
    width: 100%;
    box-sizing: border-box;
    transition: box-size 0.5s, color 0.5s, font-size 0.5s;
}

input[type="submit"]:hover {
    background-color: #000;
    color: #d1a104;
    font-size: 120%;
}

#services {
    background-color: #2b231000;
    color: #EDC967;

}

#services .service {
    margin-bottom: 20px;
}

#pricing {
    background-color: #2b231000;
}

#contact p {
    margin: 0.5em 0;
}

#gallery {   

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 1rem;
    background: #000;
    border-radius: 50px;
    color: #EDC967;
    max-width: 800px;
    text-align: center;

}

#gallery img, #gallery video {

    max-width: 100%;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.gallery-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 10rem;
}

.gallery-buttons button {
    font-family: 'Teko', sans-serif;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #EDC967;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.5s, font-size 0.5s, size 0.5s;
}

.gallery-buttons button:hover {
    background-color: #000000;
    color: #EDC967;
    font-size: 120%;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
}

#background-video_2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
}

.gallery-content {
    transition: opacity 0.3s ease-in-out;
}

.toggle-menu {
    display: none;
  }
  
  
  .burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
  }
  
  .burger span {
    background: #EDC967;
    height: 3px;
    width: 30px;
    display: block;
    border-radius: 3px;
  }
  
  
  @media (max-width: 768px) {
    .burger {
    display: flex;
    font-family: 'Teko', sans-serif;
    font-size: 11px;
    text-align: center;
    padding: 1em 0;
    }
  
    .navbar__menu {
      display: none;
      flex-direction: column;
      background-color: #000;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      text-align: center;
      padding: 1rem 0;
      z-index: 999;
    }
  
    
    .toggle-menu:checked ~ .navbar__menu {
      display: flex;
    }
  }
  
#cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #EDC967;
  padding: 1.2em 2em;
  border-radius: 15px;
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  max-width: 90%;
}

#cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

#cookie-banner a {
  color: #f8d27d;
  text-decoration: underline;
}

#cookie-ok {
  margin-top: 10px;
  padding: 8px 18px;
  background-color: #EDC967;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Teko', sans-serif;
  transition: background-color 0.3s ease;
}

#cookie-ok:hover {
  background-color: #fff;
  color: #000;
}
 .social-link a {
    color: #EDC967;
    font-size: 1.2em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.social-link a:hover {
    color: #ffffff;
}
@media screen and (max-width: 768px) {
    body {
        padding-top: 100px; 
        font-size: 18px;
        text-align: center;
        overflow-x: hidden;
    }

    main h1 {
        font-size: 1.8em;
        margin: 0.5em 0;
    }

    main p {
        font-size: 1em;
        padding: 0 1em;
    }

    #navbar__logo img {
        width: 100px;
    }

    footer {
        font-size: 10px;
    }
}




  
  