    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
	
	body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow-x: hidden;
	  background: #FFF9F5;
    }
    .header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background: rgba(0,0,0,0.5);
    }
	h2 {
	  font-family: "Open Sans", sans-serif;
	  font-optical-sizing: auto;
	  font-weight: 800;
	  font-style: normal;
	  text-transform: uppercase;
	  letter-spacing: -0.03em;
	}
	p {
		text-text-transform: justify;
	}
    .logo {
      max-height: 50px;
    }
    .menu-btn {
      background: none;
      border: none;
      font-size: 24px;
      color: white;
    }
.fullscreen-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  padding: 80px 20px 40px;
  overflow-y: auto;
  z-index: 999;
  animation: slideDown 0.5s ease;
}

.menu-open .fullscreen-menu {
  display: block;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  margin-bottom: 20px;
}

.menu-list a {
  display: block;
  color: white;
  font-size: 22px;
  text-decoration: none;
  padding: 12px 20px;
  background: #222;
  border-radius: 6px;
  transition: background 0.3s ease;
}

@media (min-width: 1024px) {
.menu-list a {
  display: block;
  width: 50vw;
  margin: 0 auto;
  color: white;
  font-size: 22px;
  text-decoration: none;
  padding: 12px 20px;
  background: #222;
  border-radius: 6px;
  transition: background 0.3s ease;
}
}

.menu-list a:hover {
  background: #444;
}
	
    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }
    .section-split {
      display: flex;
      height: 100vh;
      flex-direction: row;
	  background-color: #000000;
    }
    .split-block {
      flex: 1;
      position: relative;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }
	.split-block .logo {
      max-height: 100px;
	  opacity: 0.9; /* 90% transparency */
	  margin-bottom: 10px;
    }

    .split-overlay {
      background: rgba(0, 0, 0, 0.5);
      padding: 30px;
      color: #FFE5CF;
      text-align: center;
	  border-radius: 15px;
	  margin-top: 70%;
	  transition: 2s;
    }
    .split-overlay h2 {
      font-size: 28px;
    }
	
/* Responsive layout for landing sections */
@media (max-width: 1024px) {
  .section-split {
    flex-direction: column;
    height: 100vh;
  }

  .split-block {
    width: 100%;
    flex: 1 0 0;
    height: 33.33vh;
  }
  
  .split-overlay {
	padding: 10px;
	max-height: 60%;
	margin-top: 10%;
  }
  .split-overlay .logo {
	padding: 0px;
	max-height: 50px;
  }
  .split-overlay .logo {
	padding: 0px;
	max-height: 40px;
  }
}

/* Hover effect for split-blocks on larger screens */
@media (min-width: 1025px) {
  .section-split {
    overflow: hidden;
    display: flex;
  }
  .split-block {
    transition: all 0.3s ease;
    transform-origin: center;
    opacity: 1;
  }
  .section-split.hovering .split-block {
    opacity: 0.5;
    transform: scale(1);
    z-index: 0;
  }
  .section-split.hovering .split-block.hovered {
    opacity: 1;
    transform: scale(1.1);
    z-index: 1;
  }
}

@media (max-width: 1200px) {
  .split-overlay {
    position: absolute;     /* or fixed/relative, depending on your setup */
    left: 20px;              /* Shift it away from the left screen edge */
    right: auto;
    top: auto;               /* Keep existing vertical position unless needed */
    transform: none !important;
    margin: 0 !important;
    width: auto;
    max-width: 90vw;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
	
	/* Fullscreen splash section */
	.splash {
	  height: 100vh;
	  background-size: cover;
	  background-position: center;
	  background-attachment: fixed;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  position: relative;
	  padding-top: 80px; /* Adjust to match your header height */
	  box-sizing: border-box;
	}
	.splash .overlay {
	  background: rgba(0, 0, 0, 0.5); /* Tinted overlay */
	  color: #FFE5CF;
	  padding: 40px;
	  text-align: center;
	  border-radius: 15px;
	  max-width: 90%;
	}

	.splash .overlay h1 {
	  font-size: 48px;
	  margin-bottom: 20px;
	}
	
	
	.container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

.btn {
	margin: 10px 0 10px 0;
	opacity: 0.9;
	transition: 0.5s;
	}
.btn:hover {
	background-color: #ff5000;
	opacity: 1;
	border-color: #ff5000;
	color: #ffffff;
	padding-left: 50px;
	padding-right: 50px;
	}
	
.py-5 {
	border-top: 10px solid #ff5000;
}

/* Article multi-column layout */
.article-text {
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid #ccc;
  margin-top: 40px;
  margin-bottom: 60px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

@media (max-width: 768px) {
  .article-text {
    column-count: 1;
  }
}
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid #ff5000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
