body{
  height: 100%;
  margin: 0;
  background-color: #f8f9fa
}
html {
  height: 100%;
  margin: 0;
}

.body {
  display: block;
  margin: 0 auto;
  width: 576px;
}
label {
  display: block;
  margin-top: 20px;
  letter-spacing: 2px;
}
form {
  margin: 0 auto;
  width: 459px;
}
input, textarea {
  width: 439px;
  height: 27px;
  background: #efefef;
  border: 1px solid #dedede;
  padding: 10px;
  margin-top: 3px;
  font-size: 0.9em;
  color: #3a3a3a;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
textarea {
  height: 213px;
  /*background: url(images/textarea-bg.jpg) right no-repeat #efefef;*/
}
input:focus, textarea:focus {
  border: 1px solid #97d6eb;
}
#submit {
  width: 127px;
  height: 38px;
  /*background: url(images/submit.jpg);*/
  text-indent: -9999px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}
#submit:hover {
  opacity: .9;
}

.bg {
  background-image: url("background.jpg");
  height: 87%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

h1 {
  font-family: 'Oswald', sans-serif;
  margin-left: 20px
}

h2 {
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

h3 {
  font-family: 'Oswald', sans-serif;
  margin-left: 50px
}

p {
  font-family: 'Raleway', sans-serif;
  margin-left: 30px;
  margin-right: 30px;
}

ul  {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
}

li {
  float: right;
  margin-right: 110px

}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: green;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

#page-container {
  position:relative;
  min-height: 100vh;
}
#content-wrap {
  padding-bottom: 2.5rem;
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}

.footer{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
}

* {box-sizing:border-box}
.mySlides1, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6 {display: none}
img {
  vertical-align: middle;
}

.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 200px;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next{
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Service links styling */
.service-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
  opacity: 0.9 !important;
}

@media (max-width: 768px) {
  .service-links {
    flex-direction: column;
    align-items: center;
  }
  .service-link {
    margin-bottom: 0.5rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
  }
  
  h1, h2, h3, h4 {
    color: #ffffff !important;
  }
  
  .description {
    color: #b0b0b0 !important;
  }
  
  .service-link {
    background: #2d2d2d !important;
    border-color: #404040 !important;
    color: #e0e0e0 !important;
  }
  
  .service-link:hover {
    background: #3a3a3a !important;
    border-color: #555555 !important;
  }
  
  .social a {
    color: #e0e0e0 !important;
  }
  
  .social a:hover {
    color: #ffffff !important;
  }
}

/* Profile image sizing */
.headshot {
  width: 360px;
  height: 360px;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Weather widget styling */
.weather-widget {
  font-size: 0.9rem;
  color: #666;
  border: 1px solid #e0e0e0;
}

@media (prefers-color-scheme: dark) {
  .weather-widget {
    background: rgba(255,255,255,0.05) !important;
    color: #b0b0b0 !important;
    border-color: #404040 !important;
  }
}

/* Social links centering */
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social a {
  font-size: 1.5rem;
  color: #666;
  transition: color 0.3s;
}

.social a:hover {
  color: #333;
}
