@font-face {
  font-family: "MyFont";
  src: url("../fonts/UrbanShadow.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "MyFont", sans-serif;
  background: #1a1a1a; 
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  color: #ffffff;
}

.Logo {
  position: fixed; 
  left: 5px;
  z-index: 10;
}

.Logo img {
  height: 50px;
  width: auto;
}

nav {
  position: fixed; 
  top: 0;
  right: 0;
  width: 100%;
  background: #111111;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 9;
}

nav a {
  color: #ffffff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #97dcff;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 3; 
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

.hero.first::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, #111111, transparent);
}

.hero.second::before {
  content: "";
  position: relative;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 100%,
    #1a1a1a 100%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to top, #1a1a1a, transparent);
}

.page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 80px;
  text-align: center;
  z-index: 2;
  -webkit-text-stroke: 1px #000000; 
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-text h1 {
  font-size: 60px;
  margin-bottom: 15px;
  -webkit-text-stroke: 1px #000000;
}

.hero-text p {
  font-size: 20px;
  opacity: 0.9;
}

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  flex: 1;
}

.text-box {
  flex: 1;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 25px;
}

p {
  margin-top: 10px;
  font-size: 15px;
}

.text-box h1 {
  font-size: 40px;
}

.text-box p {
  font-size: 18px;
  line-height: 1.2;
}

section {
  margin-bottom: 10px;
  background: #222222;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.5s ease;
}

section:hover {
  transform: translateY(-7px);
}

.two-sections {
  display: flex;
  gap: 10px;
}

.two-sections section {
  flex: 1;
  margin: 0;
}

.content-block {
  display: flex;
  align-items: center;
  margin: 15px 0;
  gap: 10px;
}

.content-block img {
  max-width: 450px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.content-block.two-images {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.content-block.two-images img {
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

footer {
  background: #111111;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.5);
}

footer a {
  color: #97dcff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

body.light-theme {
  background: #f0f0f0;
  color: #000000;
}

body.light-theme nav {
  background: #e6e6e6 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.light-theme nav a {
  color: #000000 !important;
}

body.light-theme nav a:hover {
  color: #0078d7 !important;
}

body.light-theme section {
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid #ddd;
  transition: transform 0.5s ease;
}

body.light-theme footer {
  background: #e6e6e6;
  color: #000000;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}

body.light-theme footer a {
  color: #0078d7;
}

body.light-theme header,
body.light-theme .hero {
  background: #111111 !important;
  color: #ffffff !important;
}

body.light-theme .hero.first::before {
  background: linear-gradient(to bottom, #111111, transparent);
}

body.light-theme .hero::after {
  background: linear-gradient(to top, #111111, transparent);
}

body.light-theme .page-title {
  color: #ffffff !important;
  -webkit-text-stroke: 1px #000000;
}