/* global styles */

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-light);
}

/* Addtional styles */

#stickyHeader {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  z-index: 1000;
}

#stickyHeader.hide {
  transform: translateY(-100%);
}

.footer-section {
  background-color: var(--bs-dark);
  color: white;
  padding: 60px 0;
}

.contact-info h5 {
  border-bottom: 2px solid #666;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  margin-top: 5px;
  color: #ccc;
}

.map-container {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #2c2c2c;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #f0f0f0;
}

.contact-form {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
}

.contact-form h4 {
  margin-bottom: 10px;
}

.contact-form p {
  color: #ccc;
  margin-bottom: 30px;
}

.form-control {
  background-color: #fff;
  border: none;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #dc3545;
}

.btn-send {
  background-color: transparent;
  color: #dc3545;
  border: 2px solid #dc3545;
  padding: 10px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background-color: #dc3545;
  color: white;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.hero-bg {
  background: url("https://images.unsplash.com/photo-1634896382669-a1489b7c5287?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover;
}

.wave-container {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.wave-container svg {
  display: block;
  width: 100%;
  height: auto;
}

/* custom classes */

.smaller {
  font-size: 0.75rem !important;
}

.mini {
  font-size: 0.65rem !important;
}

.micro {
  font-size: 0.5rem !important;
}

.reset-input {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
}

.reset-input::placeholder {
  color: inherit;
  opacity: 0.5;
}

.bg-white-mask {
  background: linear-gradient(white 50%, rgba(255, 255, 255, 0));
}

/* media classes */

@media (max-width: 1200px) {
  /* large screens */
}

@media (max-width: 992px) {
  /* medium screens */
}

@media (max-width: 768px) {
  /* small screens */
}

@media (max-width: 576px) {
  /* extra small screens */
}