/* ||||||||||||||||||||||||||||| Main CSS v0.5 ||||||||||||||||||||||||||||| */


/* ||||||||||||||||||||||||||||| GLOBAL RESET & TYPOGRAPHY ||||||||||||||||||||||||||||| */

* {
    box-sizing: border-box;
}

/* |||||||| MOBILE FIRST |||||||||||| */

body {
    margin: 0;
    padding: 0;
    font-family: Roboto, Tahoma, sans-serif;
    font-size: 10px;
    letter-spacing: 0.3px;
    line-height: 22px;
  background: #c2c2c2;
}

a { 

text-decoration: none;
	  color: inherit; 

}

a:hover { text-decoration: underline; text-underline-offset: 5px;}

    p{ 
        font-family: Roboto, Tahoma, sans-serif;
	font-size: 11pt;

 }

/* Desktop typography */

@media (min-width: 900px) {

    body {
	    letter-spacing: 0.8px;    
        line-height: 26px;
	}
	

    p{ 
        font-family: Tahoma, sans-serif;
	font-size: 12pt;
 }

}
/* |||||||||||||||||||||||||||||  UNIVERSAL FLUID CONTAINER ||||||||||||||||||||||||||||| */

.container {
    width: min(95%, 1400px);   /* fluid + max width */
    margin: 0 auto;
}

/* ||||||||||||||||||||||||||||| TOP MENU ||||||||||||||||||||||||||||| */

.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.top-menu a {
    font-size: 20px;
    font-weight: 400;
    color: #333;
}

/* ||||||||||||||||||||||||||||| PARAGRAPHS & HEADINGS ||||||||||||||||||||||||||||| */

p {
    margin: 0 0 18px 0;
}

h1 {
  font-size: 16pt;              /* clearer than 15pt */
  font-weight: 500;             /* sharper than "normal" */
  font-family: Tahoma, sans-serif;
  color: #444;                  /* slightly darker for visibility */
  letter-spacing: -0.5px;       /* subtle tightening, not too compressed */
  line-height: 1.25;            /* improves readability */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.h1-style {
font-size: 24pt;              /* clearer than 15pt */
  font-weight: normal;             
  font-family: Tahoma, sans-serif;
  color: #888;                  /* slightly darker for visibility */
  letter-spacing: 3px;       /* subtle tightening, not too compressed */
  line-height: 1.25;            /* improves readability */
  font-style: normal;
}

@media (max-width: 600px) {
.h1-style {
font-size: 1.5rem;              /* clearer than 15pt */
  font-weight: normal;             
  font-family: Tahoma, sans-serif;
  color: #888;                  /* slightly darker for visibility */
  letter-spacing: 0.5px;       /* subtle tightening, not too compressed */
  line-height: 1.25;            /* improves readability */
  font-style: normal;
 }
}

h2 {
    font-size: 13pt;
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    font-style: italic;
    color: #555;
}

.h2-style{
    font-size: 12pt;
  font-weight: normal;             
  font-family: Tahoma, sans-serif;
  letter-spacing: 0.5px;       /* subtle tightening, not too compressed */
  line-height: 1.25;
    font-style: normal;
}

.h2-style-index{
  font-size: 14pt;
  font-weight: normal;             
  font-family: Tahoma, sans-serif;
  letter-spacing: 0.5px;       /* subtle tightening, not too compressed */
  line-height: 1.25;
    font-style: normal;
}


h3 {
    font-size: 14pt;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    font-style: italic;
}

/* IS A FOOTER FONT */

footer h3 {
    font-size: 12pt;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    font-style: normal;
}

h4 {
    font-size: 12pt;
    font-family: Tahoma, sans-serif;
    font-weight: normal;
}

.h4-text {
    font-size: 12pt;
    font-family: Tahoma, sans-serif;
    font-weight: normal;
}

h5 {
    font-family: Tahoma, sans-serif;
    font-size: 12pt;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.h5-style {
    font-family: Tahoma, sans-serif;
    font-size: 11pt;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    padding: 0;

}

a:hover h5{

          text-decoration: underline;
}

h6 {
    font-size: 12pt;
    font-weight: normal;
    color: #222;
}

/* ||||||||||||||||||||||||||||| HEADER ||||||||||||||||||||||||||||| */

.site-header {
    width: 100%;
    background: transparent; /* show body background */
    display: flex;
    justify-content: center;
}

.header-container {
    background: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    line-height: 22px;

    margin-top: 20px;

}

/* Logo */
.logo-area {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.logo-area img {
    max-height: 80px;
    width: auto;
}

/* |||||||||||||||| LANGUAGE TOP NAV |||||||||||||||| */

.language-nav {
    margin-top: 50px;
    margin-right: 20px;
   margin-bottom: 20px;
    display: flex;
    align-items: center; 
}

.language-nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.language-nav a {
       font-size: 15px;
    font-family: "Roboto Condensed", Tahoma, sans-serif;
    font-size: 20px;
    letter-spacing: 0.3px;
    color: #333;
        margin: 0 5px; /* Space between links */

}

.language-nav img{
    width: 17px;
    height: 17px;
    margin-top: 3px; 
    margin-left: 10px;
}


/* |||||||||||||||| MOBILE HEADER |||||||||||||||| */

@media (max-width: 600px) {
    .header-container {
        display: flex; /* Use flex for alignment */
        flex-direction: column;
        align-items: center; /* Center child elements */
        text-align: center;
        width: 100%;
        margin-top: 0px;
    }

    .logo-area {
        margin-bottom: 10px;
        margin-left: 0px;
    }

    .logo-area img {
        width: 280px;
        max-width: 95%;
    }

    .language-nav {
        margin: -10px 0 0 0; /* Adjust margin for spacing */
        display: flex; /* Use flex for navigation links */
        justify-content: center; /* Center the links */
        flex-wrap: wrap; /* Ensure links wrap if needed */
    }

    .language-nav a {
        font-size: 1rem;
        letter-spacing: 0.3px;
        margin: 0 2px; /* Space between links */
        text-align: center;
    }
}

/* INDEX PAGE NAV FONT */

    .language-nav .index-a{
    font-family: "Roboto Condensed", Tahoma, sans-serif;
    font-size: 16px;
    letter-spacing: 0.3px;
    }

   .language-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    }

    .language-nav img{
    margin-top: 3px;
    width: 16px;
    height: 16px;
    margin-left: 5px;

	}
}

/* |||||||||||||||||||||||||||||  FOOTER ||||||||||||||||||||||||||||| */

footer {
    width: 100%;
    background: transparent; 
    display: flex;
    justify-content: center;
    padding: 60px 0 40px 0;
    position: relative;
}

.footer-inner {
    width: min(95%, 1400px);
    background-color: #999995;
    color: white;
    padding: 20px 40px;
    text-align: left;
    font-size: 12pt;
    line-height: 22px;
}


/* |||||||||||||||||||||||||| MOBILE FOOTER |||||||||||||||||||||||||| */

    @media (max-width: 600px) {

  .footer-inner {
    width: 100%;
    background-color: #999995;
    padding: 20px 10px;
    font-size: 14px; /* clearer than 10pt */
  }

  /* MOBILE TYPOGRAPHY */

  h1, h2, h3, h4, h5, h6 {
    font-family: Roboto, Tahoma, sans-serif;
    line-height: 1.3;          /* improves readability */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1 {
    font-size: 18px;
    font-weight: 500;          /* cleaner than "normal" */
         letter-spacing: 0.1px;
  }

  h2 {
    font-size: 16px;
    font-weight: 500;
  }

  h3 {
    font-size: 16px;
    font-weight: 600;          /* bold but not too heavy */
  }

  h4 {
    font-size: 15px;
    font-weight: 400;
  }

  h5 {
    font-size: 15px;
    font-weight: 400;
  }

  h6 {
    font-size: 13px;
    font-weight: 400;
  }

}

/* |||||||||||||||||||||||||| NAVIGATION DOTS |||||||||||||||||||||||||| */

    @media (min-width: 900px) {
    .big-dot {
	font-weight: bold;
        font-size: 20px;
	line-height: normal;
	color: #777;
    }
}
    @media (max-width: 600px) {
        .big-dot {
        font-size: 18px; /* default size on mobile */
	line-height: normal;
	color: #777;
        }
    }

/* |||||||||||||||||||||||||| GENERAL PAGE WRAPPER |||||||||||||||||||||||||| */

.main-wrapper {
    width: min(95%, 1400px);
    margin: 0 auto;
    background: #ffffff;
    padding: 15px 40px;

}

.main-wrapper .container {
    /* matches header/footer container width automatically */

}

.main-wrapper section {
}

@media (max-width: 600px) {
    
    .main-wrapper {
        width: 100%;
        padding: 0px 10px; /* optional but recommended */
    }

    .main-wrapper section {
        margin-bottom: 25px;
    }
}


/* ||||||||||||||||||||| PAGE BANNER ||||||||||||||||||| */

.main-banner {
    width: 100%;
    margin-bottom: 30px;
}

.main-banner img {
    width: 100%;
    height: 100px;        /* mobile height */
    object-fit: cover;    /* fills the area without distortion */
    display: block;
    border-radius: 3px;   /* optional, matches modern design */
}

@media (min-width: 900px) {
    .main-banner img {
        height: auto;    /* desktop height */
    }
}

/* REDUCE TEXT WIDTH */

.main-wrapper p,
.main-wrapper h1,
.main-wrapper h2,
.main-wrapper h3 {
    max-width: 750px;   /* perfect reading width */
    margin-left: auto;
    margin-right: auto;
}


/* ||||||||||||||||| ALL IMAGES ||||||||||||||||| */

.images img{
    width: auto;
    object-fit: cover;    /* fills the area without distortion */
    display: block;
    border-radius: 3px;   /* optional, matches modern design */
  }


@media (max-width: 600px) {
.images img{
    width: 100%;
    object-fit: cover;    /* fills the area without distortion */
    display: block;
    border-radius: 3px;   /* optional, matches modern design */
  }
}

/* |||||||||||||||||||||||||| HOME LAYOUT MOBILE |||||||||||||||||||||||||| */

@media (max-width: 600px) {
    .home-layout {
    flex-direction: column;
    gap: 20px;
    }

.col-left {
   display: none;
}

.col-main {
   margin-bottom: -70px;
}

.col-facts {
   max-width: auto;
    margin-top: -70px !important;
    }
}

/* |||||||||||||| HOME LAYOUT |||||||||||||| */

.home-layout {
    display: flex;
    gap: 40px;
    margin: 20px auto;
    max-width: 1400px;
}

/* Left empty column */
.col-left {
flex: 0 0 10%;
}

/* Main text column */
.col-main {
    flex: 1 1 auto;
    margin-bottom: 70px;
    max-width: 920px;
}

/* Quick facts column */
.col-facts {
    flex: 0 0 15%;
    display: flex;
    justify-content: flex-start;
    margin-right: 1px; 
    margin-top: 20px;
}

.col-facts.disabled {
    display: none;
}

/* Override global centering inside the main column */
.col-main h1,
.col-main p,
.col-main h2,
.col-main h3 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* ||||||||||||||||||| QUICK FACTS DESIGN |||||||||||||||||| */

/* Container for the quick facts box */
.quick-facts {
    font-family: Tahoma, sans-serif;
    font-style: normal;
    color: #555;          /* soft, unobtrusive */
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* The fact text itself */
#fact-box {
    color: #666;
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 2;
    font-size: 10pt;
}

.quick-facts h3 {
    font-family: Tahoma, sans-serif;
    font-size: 11pt;
         letter-spacing: 0.1px;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 6px;
    color: #444;
}

.quick-facts h3::after {
    content: '';
    margin-left: 4px;
    animation: dots 5s steps(5, end) infinite;
}

@keyframes dots {
    0%   { content: ''; }
    20%  { content: '.'; }
    40%  { content: '..'; }
    90% { content: '..'; }
    100% { content: ''; }
}

/*||||||||||||| BACK TO TOP ARROW ||||||||||||||||*/

.footer-inner {
    position: relative; /* enables absolute positioning inside */
}

.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: normal;
    color: white;
    text-decoration: none;
}

.back-to-top:hover {
    font-weight: normal;
    text-decoration: none;
    color: #333;
}

/* ||||||||||||||| LINK STYLES |||||||||||||||||||||| */

a.dashed-link{ text-decoration: underline dashed;
          text-underline-offset: 5px;
          text-decoration-thickness: 1px;
          display: inline-flex;
}

a.dashed-link:hover{ text-decoration: underline;
          text-underline-offset: 5px;
          text-decoration-thickness: 1px;
          display: inline-flex;
}

/* |||||||||||||||| CONTACT FORM |||||||||||||||||| */

.contact-form {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}

.contact-form button {
  padding: 14px;
  font-size: 16px;
  border-radius: 3px;
  border: 0;
  color: black;
  background: #b3d892;
  cursor: pointer;
}

.form-status {
  max-width: 400px;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-status.success {
  max-width: 400px;
    background: #b3d892;
    color: #666;
}

.form-status.error {
  max-width: 400px;
    background: #fdecea;
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid #b3d892; /* or your preferred border */
}