/* General Body Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

/* Header and Navigation */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
}

.header-name a {
    font-size: 18px;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
    font-weight: normal;
}

.tagline {
    font-size: 18px;
    letter-spacing: 1px;
    color: #000;
    font-weight: normal;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.navigation a {
    font-size: 18px;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
    margin-left: 20px;
    padding-bottom: 3px;
    opacity: 0.4;
    transition: all 0.2s ease-in-out;
}

.navigation a:hover {
    opacity: 1;
    border-bottom: 1px solid #000;
}

.navigation a.active {
    opacity: 1;
    border-bottom: 1px solid #000;
}

/* Main Content Area */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
    padding: 20px;
}

/* Home Page Specifics */
.motion-placeholder {
    font-style: italic;
}

.video-container {
    max-width: 900px;
    width: 100%;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Page Specifics */
.about-section {
    max-width: 700px;
    text-align: center; /* Changed from left to center */
    line-height: 1.6;
}

.about-section h2 {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 1px;
}
