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


#banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(0.5); 
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}
.slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
}


.banner-text h1 {
  font-size: clamp(2.5rem, 6vw, 100px);
  font-family: 'Franklin Gothic Medium','Arial Narrow', Arial, sans-serif;
}

.banner-text p {
  font-size: 20px;
  font-style: italic;
  margin-top: 15px;
  transition: opacity 0.5s ease;
}

body {
    background-color: #000000;
    margin: 0;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 5px 0px;
    background-color: #f5d3da;
   flex-wrap: wrap;
    height: 80px;
    z-index: 1000;
}

.nav-left {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding-left: 5px;
  flex-wrap: wrap;
}

.nav-left a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: xx-large;
}

.nav-right {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0px 15px 5px 0px;
  flex-wrap: wrap;
}

.nav-right a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: larger;
}

.nav-right a:hover {
  color: #476280; 
  transition: color 0.3s ease;
}

#footer {
  bottom: 0;
  left: 0;
  text-decoration: none;
  color: #f0e3ea; 
  font-size: 13px;
  font-family: Georgia, sans-serif, serif;
  text-align: center;
  padding: 5px;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-overlay {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display:none;
  z-index: 2000;
}

.cookie-banner {
  background-color: #f0dbe6;
  color: #111;
  padding: 20px;
  border-radius: 12px;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: slideUp 0.3s ease;
}

.cookie-banner h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}

.cookie-banner p {
  margin: 0 0 15px;
  line-height: 1.4;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#accept-cookies {
  background-color: #000;
  color: #fff;
}

#accept-cookies:hover {
  background-color: #333;
}

#decline-cookies {
  background-color: #777;
  color: #fff;
}

#decline-cookies:hover {
  background-color: #555;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-policy {
  max-width: 900px;
  margin: 120px auto 80px;
  padding: 20px;
  background-color: #111;  
  color: #f0f0f0;         
  border-radius: 12px;
  line-height: 1.6;
}

.privacy-policy h1, 
.privacy-policy h2 {
  color: #f0e3ea; 
  margin-top: 20px;
}


.contact {
  max-width: 700px;
  margin: 120px auto 80px;
  padding: 20px;
  background-color: #111;
  color: #f0f0f0;
  border-radius: 12px;
}

.contact h1 {
  color: #f0e3ea;
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #f0e3ea;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background-color: #f0e3ea;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #fefefe;
  transform: translateY(-2px);
}


.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #f0e3ea;
  border-radius: 50px;
  color: #f0e3ea;
  font-size: 1.3rem;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.social-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease;
}


.social-btn.email::before {
  background: #ff6f61; 
}

.social-btn.github::before {
  background: #333; 
}

.social-btn.linkedin::before {
  background: #0077b5; 
}

.social-btn:hover::before {
  width: 100%; 
}

.social-btn:hover {
  color: #fff;
}
