﻿body {
overflow-x: hidden;
 position: relative;
margin: 0;
background: url("../assets/Bridge.jpg") no-repeat center center fixed;
background-size: cover;
font-family: sans-serif;
}
#main-header {
position: fixed;
top: 0;
width: 100%;
background-color: rgba(255,253,230,0);
transition: background-color 0.5s ease;
z-index: 1000;
padding: 10px 20px;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
position: relative;
}
.page-title {
position: absolute;
left: 50%;
transform: translateX(-50%);
color: rgba(255,253,230,0.9);
font-size: 1.2rem;
font-weight: bold;
pointer-events: none;
}
#main-header.scrolled .page-title {
color: black;
}
.logo {
font-size: 1rem;
font-weight: bold;
color: rgba(255,253,230,0.9);
transition: color 0.5s ease;
}
.navbar {
display: flex;
justify-content: flex-end;
padding-right: 30px;
}
.navbar a {
color: rgba(255,253,230,0.9);
text-decoration: none;
font-weight: bold;
margin: 0 15px;
font-size: 1rem;
transition: color 0.5s ease;
}
.navbar a:hover {
color: lightgray;
}
#main-header.scrolled {
background-color: rgba(255,253,230,0.9);
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#main-header.scrolled .logo,
#main-header.scrolled .navbar a {
color: black;
}
.hero {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
background-color: rgba(0,0,30,0.5)
}
.hero-text {
color: rgba(255,253,230,0.9);
padding: 20px;
}
.hero-text h1 {
font-size: 3rem;
margin: 0;
}
.hero-text p {
font-size: 1.5rem;
margin: 10px 0 25px;
}
.socials {
display: flex;
justify-content: center;
gap: 28px;
margin-bottom: 40px;
}
.socials a {
color: rgba(255,253,230,0.9);
text-decoration: none;
}
.socials i {
font-size: 2.6rem;
transition: transform 0.2s ease;
}
.socials a:hover i {
transform: scale(1.15);
}
.hero-image img {
width: 320px;
height: 320px;
object-fit: cover;
border-radius: 12px;
flex-shrink: 0;
}
.hero-content {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.hero-text {
flex: 1;
text-align: center;
padding: 600px;
}
.hero-image img {
position: absolute;
left: 30px;
top: 50%;
transform: translateY(-50%);
width: 320px;
height: 320px;
object-fit: cover;
border-radius: 12px;
}
.bubble {
background: rgba(255,253,230,0.9);
padding: 2rem;
margin: 2rem auto;
max-width: 800px;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
text-align: center;
}
.bubble img {
max-width: 100%;
height: auto;
border-radius: 12px;
display: block;
margin: 1rem auto;
}
.spacer {
height: 10vh;
background: transparent;
}
.youtube {
cursor: pointer;
width: 100%;
max-width: 560px;
margin: 0 auto;
display: block;
text-align: center;
}
.youtube-thumb {
width: 100%;
border-radius: 12px;
display: inline-block;
}
.video-container {
position: relative;
width: 100%;
max-width: 560px;
aspect-ratio: 16 / 9;
margin: 0 auto;
}
.video-container iframe {
position: absolute;
width: 100%;
height: 100%;
border-radius: 12px;
left: 0;
top: 0;
}
#main-footer {
background-color: rgba(255,253,230,0.9);
padding: 20px;
text-align: center;
margin-top: 2rem;
}
.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-bottom: 1rem;
}
.footer-section {
flex: 1 1 200px;
margin: 10px;
}
.footer-section h4 {
margin-bottom: 0.5 rem;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section ul li {
margin: 5px 0;
}
.footer-section a {
color: black;
text-decoration: none;
}
.footer-section a:hover {
color: gray;
}
.footer-bottom {
border-top: 1px solid #ccc;
padding-top: 10px;
font-size: 0.9rem;
}
.hamburger {
display: none;
font-size: 2rem;
background: none;
border: none;
cursor: pointer;
color: rgba(255,253,230,0.9);
}
@media (max-width: 768px) {
.logo,
.page-title {
display: none;
}
.hamburger {
display: block;
font-size: 2rem;
background: none;
border: none;
cursor: pointer;
color: rgba(255,253,230,1);
z-index: 1001;
position: relative;
}
.navbar {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
left: 0;
width: 100%;
background-color: rgba(0,0,60,0.4);
padding: 10px 0;
z-index: 1000;
}
.navbar.active {
display: block;
flex-direction: column;
position: absolute;
top: 60px;
left: 0;
width: 100%;
background-color: rgba(0,0,60,0.4);
padding: 10px 0;
z-index: 1000;
}
.navbar.active a {
text-align: center;
padding: 10px 0;
margin: 0;
font-size: 1.2rem;
color: rgba(255,253,230,0.9);
}
.navbar.active a:hover {
color: gray;
}
}
@media (max-width: 768px) {
.hero-content {
flex-direction: column;
height: auto;
padding: 80px 20px;
justify-content: flex-start;
align-items: center;
}
.hero-text {
flex: none;
padding: 40px 20px;
order: 1;
}
.hero-image img {
position: static;
transform: none;
left: auto;
top: auto;
margin-top: 20px;
width: 280px;
height: 280px;
order: 2;
}
.hero {
height: auto;
min-height: 100vh;
}
}