@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --black-color: #000000;
  --white-color: #ffffff;
  --blue-color: #1a396a;
  --purple-color: #82163d;
  --gray-color: #c0c0c0;
  --dark-gray-color: #666664;
  --yellow-color: #ffcb04;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  color: inherit;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Raleway";
}

.section {
  margin: 3rem;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-title h2 {
  font-weight: bold;
  margin-bottom: 4rem;
  color: var(--blue-color);
}

.header-title p {
  margin: 1rem 0;
}

/* Header Section */

.nav-toggle{
  display: none;
}


.main-header {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width:100%;
  height: 70px;
  z-index: 10;
  column-gap: 0.5rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6);
}

.logo-header img {
  width: 45vh;
  padding: 2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.nav-list-container {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
}

.nav-item {
  font-size: 1rem;
  color: var(--white-color);
}

.home-active {
  font-weight: bold;
}

#dropdownMenuLink {
  padding: 0;
  border: none;
  background-color: transparent;
}

.dropdown-toggle::after {
  border: none;
}

.custom-arrow {
  vertical-align: middle;
}

.dropdown-item:hover {
  color: var(--purple-color);
  background-color: #c5c5c557;
}

/* Main Section */

.home-section {
  background: url("images/mainPhoto.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.home-section-container {
  color: var(--white-color);
}

.home-section-container h1 {
  font-size: 3rem;
}

.contact-link {
  display: inline-block;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  color: var(--white-color);
  text-transform: uppercase;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Main About Section */

.main-about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-content {
  display: flex;
  justify-content: space-evenly;
}

.about-text {
  max-width: 27%;
  text-align: start;
  display: flex;
  flex-direction: column;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  object-fit: cover;
  border-radius: 5px;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
}

/* Vip Image Section */

.vip-service-container {
  position: relative;
  margin-top: 4rem; 
}

.service-image-container {
  position: relative;
  width: 100%;
  
}

.service-image-container img {
  width: 100%;
  display: block;
  border-radius: 5px;
  
}

.vip-service-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  font-size: 16px;
  color: var(--white-color);
  width: 35%;
}

/* Services Section */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-item {
  text-align: center;
  margin-bottom: 2rem;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.image-item h3 {
  color: var(--black-color);
  margin: 10px 0 5px;
  font-size: 24px;
}

.image-item p {
  margin: 0;
  font-size: 15px;
}

/* Testimonial Section */

.testemonial-container {
  position: relative;
  width: 100%;
}

.testemonial-container img {
  width: 100%;
  object-fit: cover;
}

.testemonial-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  padding: 15px;
  text-align: center;
}

/* Contact Section */

.contact-container .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.contact-container .header-title h2,
.contact-container .form-btn {
  color: var(--purple-color);
}

.contact-container {
  color: var(--dark-gray-color);
}

.contact-container .header-title span {
  font-weight: bold;
  text-decoration: underline;
}

.contact-form-container {
  margin-top: 2rem;
}

#contactForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 4%;
  width: 100%;
}

.form-item {
  width: 48%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.form-item input,
.form-item textarea {
  width: 100%;
  border: none;
}

.form-item.full-width {
  width: 100%;
}

.form-btn {
  border-radius: 23px;
  text-transform: uppercase;
  padding: 0.75rem 7rem;
  background-color: var(--white-color);
  color: var(--purple-color);
  border: 1px solid var(--purple-color);
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
  align-self: center;
}

.form-btn:hover {
  background-color: var(--purple-color);
  color: var(--white-color);
}

.alert {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: var(--purple-color);
  border: 1px solid #f5c6cb;
}

/* Footer Section */

.footer-container {
  color: var(--white-color);
  background-color: var(--blue-color);
  font-family: "Inter";
  font-size: 0.8rem;
}

.footer-top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.footer-columns-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.column-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}

.column-item span {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.column-item a {
  margin-bottom: 2px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  max-width: 50%;
}

.footer-logo-container img {
  max-width: 30vh;
}

.footer-logo-container p {
  padding-top: 20px;
  max-width: 26vh;
}

.footer-container hr {
  color: var(--white-color);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2rem;
  padding-bottom: 1rem;
}

.globe-image {
  max-width: 1rem;
  margin-right: 0.2rem;
}

.language {
  color: var(--white-color);
}



@media only screen and (max-width: 759px) {

  /* Header Section */
  .main-header{
    padding: 0;
  }

  .logo-header img {
    width: 30vh;
    padding: 0;
  }

  .main-nav {
    display: none;
  }

  .main-nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .navMobile {
    position: fixed;
    top: 0; 
    right: 0;
    height: 100vh;
    width: 30vh;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .navMobile.show {
    transform: translateX(0);
  }

  .navMobile li:first-child {
    margin-top: 4rem;
  }

  .navMobile a {
    color: var(--white-color);
    font-size: 1.3rem;
    padding: 0.5rem;
    display: block;
  }

  .nav-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
    padding-right: 2rem;
  }

  .navMobile-close {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 5vh;
    font-size: 2rem;
    color: var(--white-color);
  }

  .home-section {
    background: url("images/mainPhoto.jpg") no-repeat center center/cover;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
 
  .home-section-container h1 {
    font-size: 3rem;
  }
  .contact-link {
    text-decoration: underline;
  }

  /* Main About Section */

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .about-text {
    max-width: 100%;
    text-align: start;
    display: flex;
    flex-direction: column;
  }

  .about-image img {
    max-width: 100%;
  }

  .vip-service-container{
    display: flex;
    align-items: center;
  }

  .vip-service-text {
    position: relative;
    top: auto;
    left: auto;
    padding: 0px;
    font-size: 1rem;
    color: var(--black-color);
    width: 100%;
  }

  .vip-service-text h3{
    margin-top: 1vh;
    justify-content:center;
    color: var(--purple-color);
  }

  /* Services Section */

  .services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  /* Testimonial Section */

  
  .testemonial-container img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
  }

  .testemonial-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
  }

  .contact-form-container {
    margin-top: 0rem;
  }
 
  .form-btn {
    padding: 0.45rem 4rem;
  }

  
/* Footer Section */

.footer-container {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  max-width: 100%;
  padding: 2vh;
}

.footer-top-container {
  padding: 0rem;
  max-width: 90%;
  gap: 2vh;
  justify-content: space-between;
}

.footer-columns-container {
  flex-direction: column;
  gap: 0.7rem;
}

.column-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}

.column-item span {
  font-size: 0.7rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.column-item a {
  margin-bottom: 2px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 50%;
}

.footer-logo-container img {
  max-width: 20vh;
}


.footer-bottom-container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 0.7rem;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.globe-image {
  max-width: 0.8rem;
  margin-right: 0.2rem;
}

.language {
  color: var(--white-color);
}

}


@media only screen and (min-width: 760px) and (max-width: 1200px){
  
.main-header {
  column-gap: 0.5rem;
  padding: 0 1rem;
 
}
.navMobile{
  display: none;
} 
.logo-header img {
  width: 40vh;
  padding: 0.6rem;
}

.about-image {
  display: block;
}

.about-image img {
  max-width: 60vh;
}

.about-text {
  max-width: 50%;
}


/* Vip Image Section */

.vip-service-text h3{
  font-size: 1rem;
}
.vip-service-text {
  padding: 20px;
  font-size: 0.85rem;
}

}

@media only screen and (min-width: 1201px) and (max-width: 1600px){

  .navMobile{
    display: none;
  } 

  .logo-header img {
  width: 40vh;
  padding: 0.6rem;
}
}