@font-face {
  font-family: 'Frogie';
  src: url('../../fonts/frogie/Frogie-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Be Vietnam';
  src: url('../../fonts/be-vietnam/BeVietnam-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat Alternates';
  src: url('../../fonts/montserrat-alternates/MontserratAlternates-Regular.ttf') format('truetype');
}


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'BeVietnam', sans-serif;
  background-color: white;
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
}




/* HEADER & NAVIGATION */

.header {
  font-family: 'Montserrat Alternates', sans-serif;
  display: flex;
  align-items: center; 
  gap: 40px;
  padding: 0;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 20px;
}

.header img {
  width: 100%;
  max-width: 280px;
  display: inline;
  margin-left: 0;
  margin-top: 15px;
}

.navigation ul {
  list-style-type: none;
  padding: 25px;
  margin: 0;
  font-size: 15px;
  color: white;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #269937;
  length: 100%;
  font-weight: 600;
}

.navigation li {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-top: 15px;
}

.navigation li:not(:last-child) {
  margin-right: 15px;
}

.navigation li:hover {
  color: white;
}

.navigation li::after {
  content: "";
  display: block;
  width: 60%;          
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -6px;          
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.navigation li:hover::after {
  opacity: 1;
}


/* FOOTER */

footer {
  font-family: 'Montserrat Alternates', sans-serif;
  background-color: #269937;
  width: 100%;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.foot_termspriv ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 20px;
  font-size: 15px;
  color: white;
}

.foot_termspriv li {
  position: relative;
  cursor: pointer;
  font-weight: 600;
}

.foot_termspriv li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -12px;
  color: white;
}

.foot_termspriv li a {
  position: relative;
  color: white;
  text-decoration: none;
}

.foot_termspriv li a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 50%;
  height: 2px;
  background-color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.foot_termspriv li a:hover::after {
  opacity: 1;
}

.foot_termspriv p {
  font-family: 'BeVietnam', sans-serif;
  display: flex;
  position: relative;
  margin-top: 30px;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


/* HOMEPAGE START */

.frogie {
  font-family: 'Frogie', sans-serif;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  font-size: 50px;
}


/* SLIDER */

#slider {
  margin: 10px auto;
  width: 1200px;
  max-width: 100%;
  text-align: center;
}

#slider input[type=radio] {
  display: none;
}

#slider label {
  cursor: pointer;
  text-decoration: none;
}

#slides {
  background: #fff;
  position: relative;
  z-index: 1;
}

.slide_content {
  position: absolute;     
  bottom: 40px;           
  left: 60px;             
  text-align: left;     
  max-width: 700px;      
  color: white;       

}

.slide_content h2 {
  font-size: 30px;
  margin: 0 0 5px;
  font-family: 'Montserrat Alternates', sans-serif;
}

.slide_content p {
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}


.slide_content a{
  font-weight: 700;
  text-decoration: underline;
}

#overflow {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
}

#slide1:checked ~ #slides .inner {
  margin-left: 0;
}

#slide2:checked ~ #slides .inner {
  margin-left: -100%;
}

#slide3:checked ~ #slides .inner {
  margin-left: -200%;
}

#slide4:checked ~ #slides .inner {
  margin-left: -300%;
}

#slide5:checked ~ #slides .inner {
  margin-left: -400%;
}

#slides .inner {
  display: flex;
  transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
  width: 500%;
  height: 400px;
}

#slides .slide {
  position: relative;
  width: 25%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#slides .slide_1{
  background-image: url("../../images/articles/phartscene.jpg"); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 400px;
}

#slides .slide_2{
  background-image: url("../../images/articles/events.jpg"); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 400px;
}

#slides .slide_3{
  background-image: url("../../images/articles/10local.jpg"); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 400px;
}

#slides .slide_4{
  background-image: url("../../images/articles/slider4.jpg"); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 400px;
}

#slides .slide_5{
  background-image: url("../../images/articles/slider5.jpg"); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 400px;
}

.slide_content {
  padding: 10px;
}

.slide_content h2 {
  
}

.slide_content p {
  
}

#controls {
  margin: -50px 0 0 0;
  width: 100%;
  height: 50px;
  z-index: 3;
  position: relative;
}

#controls label {
  transition: opacity 0.2s ease-out;
  display: none;
  width: 50px;
  height: 50px;
  opacity: .4;
}

#controls label:hover {
  opacity: 1;
}

.bullet_wrap {
  display: flex;
  align-items: inline;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 30px;
}

.arrow.next {
  margin-left: 10px;
}

.arrow.prev {
  margin-right: 10px;
}

#bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  margin-top: 3px;
}

.arrow {
  background: none;
  font-size: 22px;
  color: gray;
  padding: 0 6px;
  cursor: pointer;
}

.arrow:hover {
  color: lightgray;
}

.arrows label {
  background: none;
  font-size: 22px;
  color: gray;
  padding: 0 6px;
  cursor: pointer;
  display: none; 
}

.arrows label:hover {
  color: lightgray;
}


#slide1:checked ~ .bullet_wrap .arrows.prev label:nth-child(1),
#slide2:checked ~ .bullet_wrap .arrows.prev label:nth-child(2),
#slide3:checked ~ .bullet_wrap .arrows.prev label:nth-child(3),
#slide4:checked ~ .bullet_wrap .arrows.prev label:nth-child(4),
#slide5:checked ~ .bullet_wrap .arrows.prev label:nth-child(5) {
  display: inline-block;
}

#slide1:checked ~ .bullet_wrap .arrows.next label:nth-child(1),
#slide2:checked ~ .bullet_wrap .arrows.next label:nth-child(2),
#slide3:checked ~ .bullet_wrap .arrows.next label:nth-child(3),
#slide4:checked ~ .bullet_wrap .arrows.next label:nth-child(4),
#slide5:checked ~ .bullet_wrap .arrows.next label:nth-child(5) {
  display: inline-block;
}

.bullet_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 30px;
}

#bullets {
  display: flex;
  gap: 8px;
}

#bullets label {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#bullets label:hover {
  background-color: #888;
}

#slide1:checked ~ .bullet_wrap #bullets label:nth-child(1),
#slide2:checked ~ .bullet_wrap #bullets label:nth-child(2),
#slide3:checked ~ .bullet_wrap #bullets label:nth-child(3),
#slide4:checked ~ .bullet_wrap #bullets label:nth-child(4),
#slide5:checked ~ .bullet_wrap #bullets label:nth-child(5) {
  background-color: #444;
}

@media screen and (max-width: 1200px) {
  #slide1:checked ~ #controls label:nth-child(2), 
  #slide2:checked ~ #controls label:nth-child(3), 
  #slide3:checked ~ #controls label:nth-child(4), 
  #slide4:checked ~ #controls label:nth-child(5),
  #slide5:checked ~ #controls label:nth-child(1), 
  #slide1:checked ~ #controls label:nth-last-child(2), 
  #slide2:checked ~ #controls label:nth-last-child(3), 
  #slide3:checked ~ #controls label:nth-last-child(4), 
  #slide4:checked ~ #controls label:nth-last-child(5),
  #slide5:checked ~ #controls label:nth-last-child(1) {
  margin: 0;
  }
}


/* PAINT */

.paint_info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #5d9450;
  width: 100%;
  margin: auto;
}

.paint_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 30px;
}

.green_box1 {
  width: 300px;
  height: 300px;
  background-color: white;
  border-radius: 15px;
}

.green_box1 p {
  margin: 30px;
  font-size: 18px;
  font-family: 'Montserrat Alternates', sans-serif;
  text-align: center;
}


.green_box2 {
  width: 300px;
  height: 130px;
  background-color: white;
  border-radius: 15px;
}

.green_box2 p {
  margin: 12px;
  font-size: 15px;
  font-family: 'Montserrat Alternates', sans-serif;
  text-align: center;
}


.paint_right {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.paint_right h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
    color: white;
    text-align: right;
    margin-top: 20px;
}

.paint_right p {
  font-size: 13px;
  line-height: 1.5;
  font-family: 'BeVietnam', sans-serif;
  color: white;
  margin: 0;
  width: 200px;
  text-align: right;
}

.paint_image img {
  height: 450px;
  border-radius: 10px;
  display: block;
  margin-left: 25px;
}



/* READS ver1 */

.reads_container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 75%;
  margin-left: 60px;
  margin-right: 60px;
  margin: auto;
  display: flex-start;
  align-items: center;
}

.reads_header {
  background-color: #5d9450;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-block;
  margin-bottom: 30px;
  width: 95%;
}

.reads_header h2 {
  color: white;
  font-family: 'Frogie', sans-serif;
  font-size: 35px;
  margin: 0;
  margin-top: 5px;
}

.reads_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.reads_grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.read_card {
  border: 3px solid #5d9450;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  width: 150px;
  flex-shrink: 0;

}

.read_card img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.read_card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 16px;
  margin: 10px 0;
}

.see_all {
  text-align: center;
  margin-left: 30px;
  margin-bottom: auto;
  margin-top: 55px;
}

.see_all h4 {
  font-family: 'BeVietnam', sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.circle_button {
  width: 50px;
  height: 50px;
  background-color: #6CB33F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: background-color 0.3s ease;
}

.circle_button:hover {
  background-color: #5a9d36;
}

.circle_button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.circle_button img {
  width: 20px;
  height: 20px;
  display: block;
}



/* READS ver 2 */

.featured_news {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  padding-bottom: 30px;
}

.news_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

.news_header h2 {
  font-family: 'Frogie', sans-serif;
  font-size: 50px;
  letter-spacing: 1px;
  margin: 0;
}

.news_item {
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 10px;
    padding: 15px;
  border: 1px solid #5d9450;
}

.news_image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.news_content {
    flex: 1;
}

.news_content h3 {
    font-size: 14px;
    margin: 0 0 8px 0;
    font-family: 'Montserrat Alternates', sans-serif;
}

.news_meta {
    font-size: 12px;
    color: gray;
}

.arrow {
    font-size: 20px;
    color: #000;
}


.article_preview {
    font-size: 12px;
    color: black;
    margin: 0;
}




/* GREEN BUTTONS homepage "read more"*/

.button_green {
  background-color: #6CB33F;
  color: white;
  font-size: 12px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 30px;
  border: 2px solid #6CB33F;
  padding: 9px 20px;
  font-family: 'BeVietnam', sans-serif;
  text-align: center;
  white-space: nowrap;
}

.button_green:hover {
  background-color: #5a9d36;
}











/* WIP */


.contact_us {
  position: relative;
  padding: 60px 20px 100px;
  font-family: 'Be Vietnam Pro', sans-serif;
  color: white;
  z-index: 1;
  background-color: transparent;
}

.contact_us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px; 
  background-color: #269937;
  z-index: -1;
}

.contact_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact_header h1 {
  font-family: 'Montserrat Alternates', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.contact_header p {
  font-size: 16px;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto 50px;
}

.contact_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.contact_card {
  background-color: white;
  border-radius: 12px;
  padding: 30px 25px;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  z-index: 2;
  position: relative;
}


.contact_icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.wip_icon img {
  width: 200px;
}


.contact_card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0d1b1e;
}

.contact_card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}













