
/*--------------------------------------HEADER-------------------------------------*/
.header {
    width: 100%;
    background-color: white;
    padding: 15px 0;
}

.header ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0px 40px;
}

.title {
    font-size: 70px;
    font-weight: bold;
    
}

/* ICONS */
.icon-link {
  color: black;
  text-decoration: none;
  font-size: 26px;        
  transition: all 0.3s ease;
}

.icon-link:hover {
  color: rgb(31, 148, 238);            
}
/* END ICONS */


/*--------------------------------------------------------------------------------END HEADER-----------------------------------------------------------------*/



/* -----------------------------------------------------------------------------NAVIGATION BAR -------------------------------------------------------------- */

.navigationbar {
    width: 100%;
    background-color: black;
}

.navigationbar > ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.navigationbar li {
    position: relative; 
}

.navigationbar li > a {
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: inline-block;
    padding: 5px 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;      
    border-radius: 5px;
}

.navigationbar li > a:hover {
    background-color: grey;
    text-decoration: underline;
    color: white;
}

.navigationbar li > a:visited {
    color: rgb(31, 148, 238);
    text-decoration: none;
}


/* ------------------------------------------------------------------------------ DROPDOWN MENU ------------------------------------------------------------------- */

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;                
    position: absolute;
    top: 100%;                    
    left: 0;
    min-width: 150px;
    background-color: black;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: white;
    background-color: black;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #333;
    white-space: nowrap;          
}

.dropdown-menu li a:hover {
    background-color: grey;
}

/* -------------------------------------------------------------END NAVIGATION BAR--------------------------------------------------------------------- */


/*-------------------------------------------------------END CALL TO ACTION AND SLIDESHOW----------------------------------------------------------------*/

/*HERO AND CALL TO ACTION*/
#hero {
  position: relative;        
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

/* slideshow */
#hero .slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideShow 30s infinite;
}

/* CTA box */

#cta-box h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 60px;

}

#cta-box {
  position: relative;    
  z-index: 2;               
  width: 520px;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.82); 
  border-radius: 14px;
  padding: 36px;
  margin-left: 8%;           
  margin-top: 100px;          
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


/* slideshow animation*/
@keyframes slideShow {
  0% {
    background-image: url("images/venice.jpg");
  }
  33% {
    background-image: url("images/spain.jpg");
  }
  66% {
    background-image: url("images/romania.jpg");
  }
  100% {
    background-image: url("images/uk.jpg");
  }

}
/*-------------------------------------------------------END CALL TO ACTION AND SLIDESHOW----------------------------------------------------------------*/



/*-------------------------------------------------------ABOUT US--------------------------------------------------------------------------------*/

.aboutus {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;

  background-color: #97c8f0;
  border-radius: 12px;

  font-family: Arial, sans-serif;
}

.aboutus h1 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
  color: #000;
  letter-spacing: 1px;
  font-weight:bolder;
}

.aboutus p {
  color: #333;
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
}

/* ---------------------------------------------------------------------FOOTER----------------------------------------------------*/
.footer {
  width: 100%;
  background: black;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  gap: 20px;
  box-sizing: border-box;
  flex-wrap: wrap; 
}

.footer > div {
  flex: 1;
}

/* left (Contacts + icone) */
.footer-left {
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 300;
  white-space: nowrap;   
}

/*  phone / email */
.footer-icon {
  font-size: 15px;
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;      
  border-radius: 8px;     
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-icon:hover {
  background: rgb(94, 175, 236);
}

.footer-icon p {
  font-size: 14px;        
  margin: 0;
}

/* Logo */
.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-center img {
  height: 150px;
  object-fit: contain;
}

/*Newsletter */
.footer-right {
  text-align: right;
  color: white;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 650px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
    white-space: normal;  
  }

  .footer-right {
    text-align: center;
  }
}

/* ---------------------------------------------------------------------FOOTER----------------------------------------------------*/