/* Reset default browser spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  flex-wrap: wrap; /* allows items to wrap on smaller screens */
  justify-content: space-between;
  background: linear-gradient(45deg, #1a73e8, #00c6ff);;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0);
}
/* Reset */
body, html {
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}



.logo {
  height: 60px;
}

/* Hero Section */
.hero {
  padding-top: 10vh; /* Extra spacing inside hero */
  padding-bottom: 1vh;
  text-align: center;
  background: linear-gradient(135deg, #1a73e8, #00c6ff);
  color: white;
  border-radius: 0 0 5vh 5vh;
}

/* Officers */
.officers {
  padding: 5vh 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.officers h2 {
  text-align: center;
  font-size: 2.5vh;
  margin-bottom: 4vh;
}

.officer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3vw;
}

.officer {
  background: #1e1e1e;
  padding: 2vh 2vw;
  border-radius: 1vh;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.officer:hover {
  transform: translateY(-1vh);
}

.officer .name {
  font-weight: 700;
  font-size: 2vh;
  margin-bottom: 0.5vh;
}

.officer .title {
  font-style: italic;
  color: #bbb;
  margin-bottom: 1vh;
}

.officer .email a {
  color: #1a73e8;
  text-decoration: none;
}

.officer .email a:hover {
  text-decoration: underline;
}

/* Company Address & Map */
.company-address {
  padding: 5vh 5vw;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #1e1e1e;
  border-radius: 1vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2vh; /* controls vertical spacing between all children */
}

.company-address a {
  color: #1a73e8;
  text-decoration: none;

}

/* Floating Contact Button */
.contact-btn {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  background: #111;
  color: #fff;
  border: none;
  padding: 1.5vh 3vw;
  border-radius: 5vh;
  font-size: 2vh;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
  z-index: 1000;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: #333;
  transform: translateY(-0.5vh);
}

/* Contact Modal */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: #1a1a1a;
  color: #fff;
  margin: 10vh auto;
  padding: 3vh 3vw;
  border-radius: 2vh;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
  position: relative;
  animation: slideDown 0.3s;
}

.close {
  position: absolute;
  top: 1.5vh;
  right: 2vw;
  font-size: 3vh;
  cursor: pointer;
  color: #bbb;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.modal-content input,
.modal-content textarea {
  padding: 1vh 1vw;
  border: 1px solid #444;
  border-radius: 1vh;
  background-color: #222;
  color: #fff;
}

.modal-content button {
  padding: 1.5vh 2vw;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 1vh;
  cursor: pointer;
  font-weight: 600;
}

.modal-content button:hover {
  background: #0056b3;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideDown {
  from {transform: translateY(-2vh); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
