@import url('https://fonts.googleapis.com/css2?family=Ramaraja&family=Krub:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Krub', sans-serif;
    background-color: #101B2B;
    color: #ffffff;
}
header {
    position: relative;
}
header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}
header nav .menu-toggle {
    pointer-events: auto;
}
.header-background {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-overlay {
    position: fixed;
    top: 1.75rem;
    left: 2rem;
    transform: none;
    text-align: left;
    z-index: 998;
    pointer-events: auto;
}
.logo-overlay a {
    text-decoration: none;
    cursor: pointer;
    display: block;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}
.logo-overlay a:hover {
    opacity: 0.8;
}
.logo-overlay h1 {
    font-family: 'Ramaraja', serif;
    font-size: 1.20rem;
    font-weight: 300;
    background: linear-gradient(to right, #6B4506 0%, #E9D0A7 50%, #6B4506 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0em;
    line-height: 0.9;
    text-align: left;
}
.menu-toggle {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.menu-toggle:hover {
    transform: scale(1.1);
}
.menu-toggle img {
    width: 40px;
    height: 40px;
}
main {
    padding: 40px 32px;
}
.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}
.about-intro {
    margin-bottom: 60px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #E9D0A7;
}
.about-section {
    margin-bottom: 30px;
}
.about-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}
.about-image {
    width: 100%;
    margin: 30px 0;
    border-radius: 10px;
}
.team-section,
.technical-team {
    margin-bottom: 60px;
}
.team-member,
.tech-member {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.member-photo,
.tech-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ffffff;
    padding: 3px;
    border: 3px solid #101B2B;
    box-shadow: 0 0 0 3px #ffffff;
}
.member-info,
.tech-info {
    flex: 1;
}
.member-name,
.tech-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.member-role,
.tech-role {
    font-size: 16px;
    color: #E9D0A7;
}
.values-section {
    margin-bottom: 60px;
}
.value-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #1a2635;
    border-radius: 10px;
}
.value-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E9D0A7;
}
.value-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}
footer {
    background-color: #101B2B;
}
.social-media {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0 1rem;
}
.social-media a img {
    width: 32px;
    height: 32px;
}
.footer-nav {
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    color: #E9D0A7;
}
.footer-nav-line1,
.footer-nav-line2 {
    margin: 0.5rem 0;
}
.footer-nav a {
    color: #E9D0A7;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: #E9D0A7;
}
.footer-nav span {
    margin: 0.10rem;
    color: #ffffff;
}
.footer-hero {
    position: relative;
    width: 100%;
    height: 275px;
}
.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #101B2B 0%, #101B2B 10%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.footer-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
