/* Reset and basics */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: rgb(12, 12, 12);
}

/* Background video styles */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 80, 0.4); /* blue tint */
    z-index: -1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #b6aacf;
    padding: 10px 30px;
}

.header nav a {
    color: rgb(22, 22, 22);
    text-decoration: none;
    margin: 0 10px;
}

.header nav a:hover {
    text-decoration: underline;
}

.logo {
    height: 50px;
}
/* Background Video */
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Contact Section */
.contact-section {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1); /* Transparent glass look */
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: rgba(0, 200, 255, 0.8);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: rgba(0, 150, 255, 1);
  transform: scale(1.05);
}
