@import url(https://fonts.googleapis.com/css?family=Bevan);
@import url(https://fonts.googleapis.com/css?family=Stint+Ultra+Condensed);
/* General Reset */
* { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
	font-family: Arial, sans-serif; 
}

body { 
	font-family: Arial, sans-serif;
    margin: 0 auto;  /* center */
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	line-height: 1.6;
	color: #333; 
	background: #f4f4f4; 
}
a { 
	text-decoration: none; 
	color: inherit; 
}

/* Header */
header { 
	background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px;
    position: relative; /* Set the header position to relative */
}

header h1 {
    margin: 10px 0;
}

/* Main Content */
main {
    flex: 1;
    padding: 20px;
    background: black;
	background-image: url("./img/bg.png");
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
    color: white;
}
.dynamicContent {
  position: absolute;
  width: 100%;
}
.dynamicContent > .content {
  padding: 0;
}
h1 {
  font: 36px/42px 'Bevan', Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 25px 25px 8px 0;
  color: #B8860B;
  text-align: center;
  text-shadow: 2px 2px black;
}
h2 {
  font: 24px/30px 'Bevan', Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 25px 25px 8px 0;
  color: #B8860B;
  text-align: center;
  text-shadow: 2px 2px black;
}
h3 {
  font: 18px/20px 'Bevan', Arial, "Helvetica Neue", Helvetica, sans-serif;
  margin: 25px 25px 8px 0;
  color: #B8860B;
  text-align: center;
  text-shadow: 2px 2px black;
}
p {
  font: 18px/30px 'Trebuchet MS', Arial, "Helvetica Neue", Helvetica, sans-serif;
  margin-bottom: 18px;
}
.hero img { 
	width: 100%; 
	max-height: 400px; 
	overflow: hidden;
	text-align: center;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area without distortion */
}

.hero button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}
.lang-switcher button { 
	background: none; 
	border: none; 
	cursor: pointer; 
	padding: 2px; 
}
.lang-switcher img {
    width: 30px; 
	height: 20px;
    border: 1px solid white;
    border-radius: 3px;
}
.lang-switcher img:hover { 
	transform: scale(1.1); 
	transition: transform 0.2s; 
}

/* Navigation */
nav { 
	background: #333; 
}
nav ul { 
	display: flex; 
	list-style: none; 
	justify-content: center; 
	transition: all 0.3s ease-in-out; /* Smooth transition */
}
nav ul li { 
	margin: 0 15px; 
}
nav ul li a { 
	color: white; 
	padding: 15px; 
	display: block; 
}
nav ul li a.active { 
	background: #555; 
	border-radius: 5px; 
}

.hamburger { 
	display: none; 
	position: absolute; 
	top: 15px; 
	left: 15px; 
	font-size: 28px; 
	background: none; 
	color: white; 
	border: none; 
	cursor: pointer; 
}

/* Sections */
section { 
	padding: 50px 20px; 
	text-align: center; 
	background: #333;
	opacity: 0.9;
	border-radius: 25px;
	margin: auto;
  	width: 95%;
  	padding: 10px;
	margin-bottom: 50px;
}
.about-container { 
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center; 
	gap: 20px; 
	margin-top: 20px; 
}
.about-container .member { 
	flex: 0 0 150px; 
	text-align: center; 
}
.about-container .member img { 
	width: 150px; 
	height: 150px; 
	object-fit: cover; 
	cursor: pointer; 
	border-radius: 5px; 
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.agenda-container { 
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center;
	text-align: left;
	gap: 20px; 
	margin-top: 20px; 
}

.container {
    max-width: 800px;
    margin: auto;
}

/* Lightbox image max width override */
.lb-image { 
	max-width: 80% !important; 
}

/* Gallery */
.gallery-grid { 
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center; 
	gap: 10px; 
}
.gallery-grid img { 
	width: 200px; 
	height: 150px; 
	object-fit: cover; 
	border-radius: 5px; 
	cursor: pointer; 
}

/* Overlay background */
.image-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Overlay background */
.image-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Image inside popup */
.image-popup-overlay img {
    width: 80%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

/* Close button */
.image-popup-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 32px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10000;
}
.image-popup-close:hover {
    color: #ddd;
}


/* Contact */
#contact-section {
    display: flex;
    justify-content: space-between;
	width: auto;
	align-items:center ;
}

#contact-info-box {
    background-color:darkgray;
    padding: 15px;
    margin-bottom: 20px;
    width: 50%;
	max-width: 100%;
	box-sizing: border-box;
	border-radius: 4px; /* Add rounded corners */
	
}

#contact-info-box h3 {
    color:black;
}

#contact-info-box p {
    margin: 8px 0;
	color: black;
	
}

#contact-form {
    width: 50%;
	max-width: 100%;
}

#contact-form form {
    max-width: 95%;
    margin: 0 auto;
}

#contact-form label {
    display: block;
    margin-bottom: 10px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
	border-radius: 4px; /* Add rounded corners */
    border: 1px solid #ddd; /* Light border for inputs */
}

#contact-form button {
    background-color: #009688;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 20px; /* Rounded corners */
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #00796b;
}

#thank-you-section {
    display: none;
    padding: 20px;
    margin-top: 60px;
    background-color: #e0f7fa;
    text-align: center;
}

#thank-you-section h2 {
    color: #009688;
}

/* Footer */
footer { 
	background: #222; 
	color: white; 
	text-align: center; 
	padding: 20px; 
}

/* Responsive */
@media(max-width:768px){
    nav ul { 
		flex-direction: column; 
		display: none; 
	}
    nav ul.show { 
		display: flex; 
	}
    .hamburger { 
		display: block; 
	}
	main {
	background-image: url("../img/bg-small.jpg");
    }
	
@media (max-width: 480px) {
    nav ul a {
        font-size: 14px; /* Reduce font size for mobile screens */
    }

    h1 {
        font-size: 24px; /* Adjust font size for headings */
    }

    .hero button {
        padding: 8px 16px; /* Adjust button padding */
    }
}
