 /* -------------------
   GLOBAL STYLES
--------------------*/
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

/* Better heading spacing & consistency */
h1, h2, h3 {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
}

/* -------------------
   NAVIGATION BAR
--------------------*/
.topnav {
  background-color: #111;
  overflow: hidden;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left links */
.topnav a {
  display: block;
  color: #eee;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 17px;
  border-bottom: 3px solid transparent;
}

.topnav a:hover {
  border-bottom: 3px solid #ff4c4c;
}

.topnav a.active {
  border-bottom: 3px solid #ff4c4c;
}

/* Social icon container */
.nav-icons a {
  display: inline-block;
  padding: 14px 10px;
  font-size: 20px;
}

/* -------------------
   VIDEO HERO SECTION
--------------------*/
.video-background-section {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    filter: brightness(65%); /* Makes text readable */
}

.section-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 25%;
}

.tagline {
    font-size: 22px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-name {
    font-size: 60px;
    margin-top: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* -------------------
   SUMMARY / ABOUT
--------------------*/
.summary-section {
    width: 75%;
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.summary-section h1 {
    margin-bottom: 15px;
    font-size: 32px;
}

.summary-section p {
    font-size: 18px;
    line-height: 1.6;
}


