/* Base Styles & Resets */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body,
html {
   font-family: 'Titillium Web', sans-serif;
   color: #ffffff;
   height: 100%;
   margin: 0;
   overflow-x: hidden;
}

/* Header & Nav */
header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1.5rem 6vw;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   width: 100%;
   z-index: 100;
   background-color: rgba(0, 0, 0, 0.85);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
   font-size: 1.8rem;
   font-weight: 700;
   color: #ff5d17;
}

nav ul {
   list-style: none;
   display: flex;
   gap: 3rem;
}

nav a {
   text-decoration: none;
   color: #ffffff;
   font-size: 1.1rem;
   transition: color 0.3s ease;
   position: relative;
}

nav a::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   bottom: -4px;
   left: 0;
   background-color: #ffc800;
   transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
   color: #ffc800;
}

nav a:hover::after,
nav a.active::after {
   width: 100%;
}

/* Home / Video Background */
.video-container,
.background-container {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   z-index: -1;
   overflow: hidden;
   background-color: #000000;
}

#bg-video {
   position: absolute;
   top: 50%;
   left: 50%;
   min-width: 100%;
   min-height: 100%;
   width: auto;
   height: auto;
   transform: translate(-50%, -50%);
   object-fit: cover;
   opacity: 0;
   animation: fadeInVideo 2s ease-in forwards;
}

.overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.05);
}

.dark-overlay {
   background-color: rgba(0, 0, 0, 0.1);
}

.bg-about {
   background-image: url('resources/about-bg.jpeg');
   background-size: cover;
   background-position: center;
}

.bg-contact {
   background-image: url('resources/contact-bg.jpg');
   background-size: cover;
   background-position: center;
}

/* Home Page Content */
main {
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   text-align: center;
   padding-top: 80px;
}

.content {
   max-width: 800px;
   padding: 2rem;
   display: flex;
   flex-direction: column;
   align-items: center;
}

h1 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
   line-height: 1.3;
}

p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
}

.logo-container img {
   max-width: 280px;
   height: auto;
   margin-bottom: 3rem;
}

.cta-button {
   display: inline-block;
   padding: 0.8rem 3rem;
   background-color: #ffc800;
   color: #ffffff;
   text-decoration: none;
   font-weight: 600;
   font-size: 1rem;
   border-radius: 50px;
   transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
   text-transform: uppercase;
   letter-spacing: 1px;
   box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3);
}

.cta-button:hover {
   background-color: #ffd700;
   color: #000000;
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(255, 200, 0, 0.5);
}

/* About Us Page */
.about-main {
   padding-top: 140px;
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
}

.page-title {
   font-size: 3rem;
   margin-bottom: 2rem;
   color: #ffffff;
}

.page-content {
   background-color: rgba(15, 15, 15, 0.75);
   padding: 3.5rem;
   border-radius: 0;
   max-width: 650px;
   width: 90%;
   margin: 0 auto 3rem;
   text-align: left;
   backdrop-filter: blur(4px);
   -webkit-backdrop-filter: blur(4px);
   border: none;
   box-shadow: none;
}

.page-content p {
   font-size: 1.25rem;
   line-height: 1.6;
   margin-bottom: 1.5rem;
   color: #ffffff;
}

.page-content h5 {
   font-size: 1.4rem;
   color: #ffffff;
   margin-top: 2rem;
   margin-bottom: 0.5rem;
   font-weight: 700;
}

.page-content h5+p {
   margin-left: 1.5rem;
}

/* Contact Page specific */
body.contact-body {
   background-color: #ffffff;
   color: #333333;
}

.page-banner {
   position: relative;
   height: 400px;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 0;
   padding-top: 80px;
}

.banner-content {
   position: relative;
   z-index: 2;
}

.banner-content h1 {
   color: #ffffff;
   font-size: 3.5rem;
}

.contact-main {
   display: flex;
   max-width: 1000px;
   margin: 4rem auto;
   padding: 0 2rem;
   gap: 5rem;
   align-items: flex-start;
   justify-content: center;
   min-height: auto;
   color: #444444;
}

.contact-left {
   flex: 1;
}

.contact-details p {
   font-size: 1rem;
   margin-bottom: 0.8rem;
   color: #555555;
}

.contact-details strong {
   color: #333333;
}

.contact-details a {
   color: #555555;
   text-decoration: underline;
}

.contact-logo {
   max-width: 200px;
   margin-top: 2rem;
}

.contact-right {
   flex: 1;
}

.contact-right h2 {
   font-size: 2rem;
   color: #444444;
   margin-bottom: 1.5rem;
}

.input-group {
   margin-bottom: 1rem;
   text-align: left;
}

.input-group label {
   display: block;
   font-size: 0.85rem;
   color: #888888;
   margin-bottom: 0.3rem;
}

.input-group input,
.input-group textarea {
   width: 100%;
   padding: 0.8rem;
   border: 1px solid #dddddd;
   border-radius: 4px;
   font-family: inherit;
   font-size: 1rem;
   background-color: #fcfcfc;
   color: #333333;
   transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
   outline: none;
   border-color: #ffc800;
   background-color: #ffffff;
   box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.2);
}

.hcaptcha-placeholder {
   display: flex;
   align-items: center;
   border: 1px solid #dddddd;
   border-radius: 4px;
   padding: 0.5rem 1rem;
   background: #f9f9f9;
   margin-bottom: 1rem;
   max-width: 300px;
   gap: 0.5rem;
   font-size: 0.85rem;
   color: #555;
}

.submit-btn {
   padding: 0.8rem 2rem;
   background-color: #222222;
   color: #ffffff;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   font-family: inherit;
   font-size: 1.1rem;
   font-weight: 600;
   transition: all 0.3s ease;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
   background-color: #ffc800;
   color: #000000;
   transform: translateY(-2px);
   box-shadow: 0 6px 15px rgba(255, 200, 0, 0.3);
}

/* Animations */
.fade-in {
   opacity: 0;
   animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
   opacity: 0;
   transform: translateY(30px);
   animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
   animation-delay: 0.2s;
}

.slide-in-left {
   opacity: 0;
   transform: translateX(-30px);
   animation: slideInLeft 0.8s ease-out forwards;
   animation-delay: 0.3s;
}

.slide-in-right {
   opacity: 0;
   transform: translateX(30px);
   animation: slideInRight 0.8s ease-out forwards;
   animation-delay: 0.4s;
}

@keyframes fadeIn {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

@keyframes slideUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes slideInLeft {
   from {
      opacity: 0;
      transform: translateX(-30px);
   }

   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@keyframes slideInRight {
   from {
      opacity: 0;
      transform: translateX(30px);
   }

   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@keyframes fadeInVideo {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

.animate-on-scroll {
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
   opacity: 1;
   transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
   header {
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
   }

   .logo-text {
      font-size: 1.3rem;
      text-align: center;
      line-height: 1.4;
   }

   main {
      padding-top: 160px;
   }

   .about-main {
      padding-top: 200px;
   }

   nav ul {
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
   }

   .contact-main {
      flex-direction: column;
      gap: 3rem;
      margin: 2rem auto;
   }

   .page-banner {
      height: 320px;
      padding-top: 140px;
   }

   h1 {
      font-size: 2.5rem;
   }

   .page-content {
      padding: 2rem;
   }
}