/* Standardni margini i padding -----------------------------------------------------------------------------------------------------------  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'M PLUS Rounded 1c', sans-serif;
  }

html, body {
  scroll-behavior: smooth;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

a { text-decoration: none; }
li { list-style: none; }
img, button { display: block; }
a, span { display: inline-block; }

/* Standardni margini i padding (END) ------------------------------------------------------------------------------------------------------  */









/* Navigation bar --------------------------------------------------------------------------------------------------------------------------- */
nav {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 110px 10px 110px;
  white-space: nowrap;
}
  
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  text-align: center;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.2);
  text-decoration: none;
  font-weight: 600;
  padding: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  font-size:18px;
}
  
nav ul li a:hover {
  color: #81DAA0;
  transform: scale(1.1);
  font-weight: 800;
}

.logo img {
  width: 130px;
  height: auto;
}

nav .logo img.white-logo {
  display: block; 
}

nav .logo img.color-logo {
  display: none; 
}

.menu-icon {
  display: none;
}

nav.solid-nav {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(47, 46, 46, 0.2);
}

nav.solid-nav .logo img.white-logo {
  display: none; 
}

nav.solid-nav .logo img.color-logo {
  display: block; 
}

nav.solid-nav ul li a {
  color: #085D7B;
}

nav.solid-nav ul li a:hover {
  color: #81DAA0;
  transform: scale(1.1);
}

nav input[type="checkbox"] {
  display: none;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  nav {
    padding: 5px 50px;
    background-color: rgba(255, 255, 255, 0.95);
  }

  nav .logo img.white-logo {
    display: none; 
  }
  
  nav .logo img.color-logo {
    display: block; 
  }

  ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 4px rgba(47, 46, 46, 0.2);
    padding-left:0;
  }
  
  ul li {
    padding-top:10px;
    padding-bottom:10px;
    border-top: 1px solid rgba(8, 93, 123, 0.2); 
    width: 100%; 
    text-align: left;
  }

  ul li:hover {
    background-color: #fff; 
    cursor: pointer;
  }

   nav ul li {
    width: 100%; 
    text-align: left; 
  }

  nav ul li a{
    font-size:26px;
    padding:10px;
    color:#085D7B;
    font-weight: 700;
  }

  nav ul li a:hover {
    color: #81DAA0;
    transform: scale(1.1);
    font-weight: 800;
  }

  input[type="checkbox"]:checked ~ ul {
    display: flex;
  }

  .menu-icon {
      display: block;
      color:#085D7B
  }
}

@media only screen and (max-width: 576px) {
  nav {
    padding: 5px 30px;
    background-color: rgba(255, 255, 255, 0.95);
  }

  nav .logo img.white-logo {
    display: none; 
  }
  
  nav .logo img.color-logo {
    display: block; 
    height: 40px;
    width: auto;
  }

  ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 4px rgba(47, 46, 46, 0.2);
    padding-left:0;
  }
  
  ul li {
    padding-top:10px;
    padding-bottom:10px;
    border-top: 1px solid rgba(8, 93, 123, 0.2); 
    width: 100%; 
    text-align: left;
  }

  ul li:hover {
    background-color: #fff; 
    cursor: pointer;
  }

   nav ul li {
    width: 100%; 
    text-align: left; 
  }

  nav ul li a{
    font-size:16px;
    padding:0px;
    color:#085D7B;
  }

  input[type="checkbox"]:checked ~ ul {
    display: flex;
  }

  .menu-icon {
      display: block;
      color:#085D7B
  } 
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Nabigation bar (END) ------------------------------------------------------------------------------------------------------------------------*/
 








/* All Sections ---------------------------------------------------------------------------------------------------------------------- */
.container{
  min-height: 100vh;
  padding-top:50px;
}

.section-titles{
  font-weight: 800;
  color: #085D7B;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.1);
  white-space: nowrap;
  margin-bottom: 20px;
}

.normal-text{
  color:#085D7B;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.1);
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  html, body { 
    font-family: 'Comic Neue', cursive;
  }

  .container{
    overflow: hidden;
  }

  .container{
    min-height: 30vh;
    padding-top:50px;
  }

  .section-titles{
    text-align: center;
    white-space: wrap;
  }

  .normal-text{
    text-align: justify;
  }
}

@media only screen and (max-width: 576px) {
  html, body { 
    font-family: 'Comic Neue', cursive;
  }
  
  .container{
    overflow: hidden;
  }

  .section-titles{
    text-align: center;
    white-space: wrap;
  }

  .normal-text{
    text-align: justify;
  }
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* All Sections (END) ---------------------------------------------------------------------------------------------------------------- */







 

/* Section 1 - Home section --------------------------------------------------------------------------------------------------------- */
.section1-home {
  min-height: 100vh;
  background-image: url('graphics-contact/background-divider.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-title {
  padding-top:150px;
  padding-bottom:15px;
  font-size: 65px;
  font-weight: 750;
  font-style: normal;
  background-image: linear-gradient(to bottom, #F6A800, #FEDE00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 100%;
  white-space: wrap;
}

.about-description{
  color:rgba(255, 255, 255, 0.85);
  padding-bottom:30px;
}

.section1-home img {
  max-width: 85%;
  height: auto;
  display: block;
  padding-left:30px;
}

/* Scroll down button ------------------------------------------------------------------------------ */
.explore-btn {
  position: relative;
  background: linear-gradient(to top, #FEDE00, #F6A800);
  color: white;
  border: none;
  outline: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease; 
  animation: pulse 1.5s infinite; 
  align-content: center;
  border-radius: 15px 5px;
  width:200px;
}

.shape{
  transform: skewX(0deg);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.explore-btn a{
  color:#fff;
  text-decoration: none;
}

.explore-btn:hover a{
  color:#F6A800;
}

.explore-btn:hover {
    background: transparent;
    color: #F6A800;
    transform: scale(1.05); 
  }
  
  .btn-description {
    display: block;
    font-size: 18px;
    white-space: nowrap;
    align-content: center;
    font-weight: bolder;
    text-decoration: none;
  }

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section1-home {
    padding: 15px;
  }

  .home-title {
    padding-top:150px;
    padding-bottom:15px;
    font-size: 55px;
    max-width: 100%;
    text-align: center;
  }

  .about-description{
    font-size: 30px;
    padding-bottom:10px;
    text-align: center;
  }

  .beginning-button{
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
  }

  .section1-home img {
    max-width: 100%;
    padding-left:0px;
  }
}

@media only screen and (max-width: 576px) {
  .section1-home {
    padding: 15px;
  }

  .home-title {
    padding-top:40px;
    padding-bottom:15px;
    font-size: 45px;
    max-width: 100%;
    text-align: center;
  }

  .about-description{
    font-size: 20px;
    padding-bottom:10px;
    text-align: center;
  }

  .beginning-button{
    display: flex;
    justify-content: center;
  }

  .explore-btn {
    padding: 8px 16px;
    border-radius: 12px 5px;
    width:150px;
    margin-bottom: 10px;
  }

  .btn-description {
    font-size: 15px;
  }

  .section1-home img {
    max-width: 100%;
    padding-left:0px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 1 - Home section (END) ------------------------------------------------------------------------------------------------------- */

  











/* Section 2 - Contact Form ------------------------------------------------------------------------------------------------------------- */
form {
  width: 90%;
  max-width: 500px; 
  margin: auto;
}

.form-group {
  margin-bottom: 15px;
}

.message .form-control {
  padding: 10px 35px;
}

::placeholder {
  color: #085D7B;
}

.form-control {
  border: 2px solid #085D7B;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section2-contact-form {
    min-height: 30vh;
    padding: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .section2-contact-form {
    min-height: 30vh;
    padding: 15px;
  }

  .the-lottie-animation{
    height: 230px;
    width: auto;
  }

} 









/* Footer ----------------------------------------------------------------------------------------------------------------------------  */
footer {
  width: 100%;
  color: #F2F4F0;
  padding: 20px;
  text-align: center;
  background-image: url(graphics-contact/footer1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  }
  
  .social-media {
  margin-top: 400px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .social-media a {
  margin: 0 10px;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
  }
  
  .social-media a:hover {
  color: #81DAA0;
  transform: scale(1.9);
  }
  
  .social-media a {
  display: inline-block;
  }

  .mail-address a{
  text-decoration: none; 
  color: rgba(129, 218, 160, 0.8); 
  padding-bottom:3px;
  }

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  footer {
    height: 45%;
    padding: 10px;
  }
}

@media only screen and (max-width: 576px) {
  
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Footer (END)------------------------------------------------------------------------------------------------------------------------ */