/* Container for logo */
.logo-container {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  animation: fadeSlideIn 1.2s ease-out, pulseGlow 3s infinite;
}

/* Logo image styling */
.logo-container img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

/* Hover effect */
.logo-container img:hover {
  transform: scale(1.1);
}

/* Entrance animation */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse glow animation */
@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0px #ff5722);
  }
  50% {
    filter: drop-shadow(0 0 10px #ff5722);
  }
}

/* Base layout */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #203a43;
  color: white;
  padding: 1rem;
  text-align: center;
}

.slogan {
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.8;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

#menuToggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
}

/* Responsive nav */
@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #2c5364;
    width: 100%;
  }
  .nav-links.show {
    display: flex;
  }
  #menuToggle {
    display: block;
  }
}

/* Hero section */
.hero, .about, .contact {
  padding: 2rem;
  animation: fadeIn 1s ease;
}

button {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

/* Info card */
.info-card {
  margin-top: 1rem;
  padding: 1rem;
  background: #eee;
  border-left: 5px solid #ff5722;
  display: none;
}

.info-card.show {
  display: block;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #203a43;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
