html, body {
  margin: 0;
  padding: 0;
  font-family: 'Oranienbaum', serif;
  overflow-x: hidden;
}

/* Sections */
.section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Parallax text wrapper */
.parallax-text {
  position: absolute;
  font-size: clamp(22px, 3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  z-index: 2;
}

/* Inner text span */
.parallax-text .text-inner {
  position: relative;
  color: white;
  z-index: 2;
  display: inline-block;
  padding: 0.2em 0.5em;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

/* Black box behind text */
.parallax-text .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (max-width: 1024px) {
  .parallax-text .bg-box {
    opacity: 1;
  }
  .parallax-text .text-inner {
    text-shadow: none;
  }
}

/* Text alignment */
.text-left   { text-align: left; left: 5%; }
.text-center { text-align: center; left: 50%; transform: translateX(-50%); }
.text-right  { text-align: right; right: 5%; }

/* Logos */
.logo-large {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  z-index: 1000;
  transition: opacity 0.3s ease, top 0.3s ease;
  opacity: 1;
  top: 100px;
}
.logo-small {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(80px, 5vw, 100px);
  z-index: 1000;
  transition: opacity 0.3s ease;
  opacity: 0;
  cursor: pointer;
}

/* Responsive logo sizes */
@media (max-width: 1260px) { .logo-large { top: 150px; width: 500px; } }
@media (max-width: 1024px) { .logo-large { top: 200px; width: 400px; } }
@media (max-width: 768px)  { .logo-large { top: 70px; width: 250px; } }
@media (max-width: 480px)  { .logo-large { top: 120px; width: 300px; } }

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  gap: 20px;
  padding: 15px 25px;
  z-index: 1100;
}
.navbar a {
  background: black;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.navbar a:hover {
  background: #444;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
}
.hamburger.white span {
  background: white;
}

/* Overlay menu */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  color: white;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.overlay a {
  font-size: 24px;
  color: white;
  text-decoration: none;
  margin: 15px 0;
}
.overlay a:hover {
  color: #aaa;
}

/* Responsive nav */
@media (max-width: 768px) {
  .navbar a { display: none; }
  .hamburger { display: flex; }
}

/* Prevent image saving */
.no-save {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Align ABOUT/CONTACT text with parallax sections */
.section-content {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 900px;   /* or 1000px if you prefer */
  margin: 0 auto;     /* centers the content */
  box-sizing: border-box;
}

/* Optional: Responsive adjustment */
@media (max-width: 1024px) {
  .section-content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
/*Contact Link Details */
.gray-link {
  color: #888888; /* gray color */
  text-decoration: none; /* removes underline, optional */
  transition: color 0.3s ease; /* smooth hover effect */
}

.gray-link:hover {
  color: #555555; /* darker gray on hover */
}