/* General Reset */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Hero Section */
.hero-section {
  background: url("ship-background.jpg") center/cover no-repeat;
  min-height: 85vh;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
}

.hero-section h2, 
.hero-section h3 {
  color: #f8f9fa;
}

/* Navbar */
.navbar-brand img {
  max-height: 60px;
}

/* Buttons */
.btn-warning {
  background-color: #f9a825;
  border: none;
}

.btn-warning:hover {
  background-color: #f57f17;
}

.bg-primary {
    background-color: #1953A0 !important;
}

.bg-orange {
    background-color: #f9a825 !important;
}

.text-primary {
	color: #1953A0 !important;
}

.btn-primary {
	background-color: #1953A0 !important;
	border-radius: 0px;
	border-color: #1953A0 !important;
}

.btn-primary:hover {
	color: #164687 !important;
	
}

.video-section {
  position: relative;
  height: 500px; 
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
  height: 100%;
  padding: 0 20px;
}

.video-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.3);  optional dark overlay for better text contrast */
  z-index: 1;
}
