:root {
 --text-color:#ffffff;
 --link-color: #4a76ee;
 --background-color: #ffffff;
}




/* Splash screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000 url('/logotype/Background\ texture.png') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

.splash-logo {
  max-width: 200px;
  height: auto;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

a{
    color: var(--link-color);
    text-decoration: none;
}

/* ----- VARIABLES ----- */
:root {
  --navbar-height: 80px;
  --navbar-height-mobile: 50px;

  --side-logo-img-height: 150px;        /* explicit image height */
  --side-logo-img-height-mobile: 70px;

  --center-logo-img-height: 95px;
  --center-logo-img-height-mobile: 60px;
}


/* ----- NAVBAR ----- */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--navbar-height);
  padding: 0 0.5rem;
  box-sizing: border-box;
}


.side-logo,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-logo img {
  height: var(--side-logo-img-height);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-center img {
  height: var(--center-logo-img-height);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}



/* Hover effect */
.side-logo a:hover img,
.nav-center a:hover img,
.nav-right a:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-bar {
    height: var(--navbar-height-mobile);
  }
  .side-logo img {
    height: var(--side-logo-img-height-mobile);
  }
  .nav-center img {
    height: var(--center-logo-img-height-mobile);
  }
}




body {
  margin: 0;
  padding: 0;
  background-image: #000000;
  font-family: sans-serif;
}

body{
  background-image: url(logotype/Background\ texture.png);
}

.video-gallery {
  column-count: 5;
  column-gap: 20px;
  padding: 20px;
}

@media (max-width: 1600px) { .video-gallery { column-count: 4; } }
@media (max-width: 1200px) { .video-gallery { column-count: 3; } }
@media (max-width: 900px)  { .video-gallery { column-count: 2; } }
@media (max-width: 600px)  { .video-gallery { column-count: 2; } }

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Shared style for images and video thumbnails */
.gallery-item img,
.gallery-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Video hover effects */
.gallery-item video {
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.gallery-item img.thumbnail {
  z-index: 2;
}

.gallery-item:hover video {
  opacity: 1;
}

.gallery-item:hover img.thumbnail {
  opacity: 0;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}



.inquiry-form {
  max-width: 500px;
  margin: 50px auto;
  padding: 2rem;
  background: #fdfdfd00;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.inquiry-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.inquiry-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: #ffffff;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

.inquiry-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.inquiry-form button:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.status-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
  color: #333;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .inquiry-form {
    margin: 20px;
    padding: 1.5rem;
  }

  .inquiry-form button {
    font-size: 0.95rem;
    padding: 0.65rem;
  }
}
