* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
} .site-header {
background: #202527;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
position: relative;
z-index: 1000;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: .75rem;
display: flex;
justify-content: space-between;
align-items: center;
} .logo a {
font-size: 1.5rem;
font-weight: bold;
color: white;
text-decoration: none;
} .main-nav ul {
display: flex;
list-style: none;
gap: 1.5rem;
}
.main-nav a {
text-decoration: none;
color: white;
font-weight: 500;
transition: color 0.5s ease;
padding: 15px 5px;
}
.main-nav a:hover {
color: #66ccff;
}
.main-nav .has-submenu > a i,
.main-nav .subsubmen > a i {
transition: transform 0.3s ease;
} @media (min-width: 768px) {
.main-nav .has-submenu:hover > a i {
transform: rotate(180deg);
}
.main-nav .subsubmenu:hover > a i {
transform: rotate(90deg);
}
}
.main-nav ul li {
position: relative;
}
.main-nav .submenu {
position: absolute;
top: 30px;
gap: 0;
left: 0;
background: #202527;
display: none;
flex-direction: column;
min-width: 225px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
z-index: 999;
border: 1px solid #66ccff;
border-radius: 5px;
}
.main-nav .submenu li {
width: 100%;
}
.main-nav ul li:hover > .submenu {
display: flex;
} .main-nav .submenu .submenu {
top: 0;
left: 100%;
}
.main-nav .submenu a {
padding: 0.75rem 1rem;
color: white;
text-decoration: none;
display: block;
}
.main-nav .submenu a:hover {
background: #2c2f31;
color: #66ccff;
} .hamburger {
color:white;
font-size: 1.75em;
display: none;
cursor: pointer;
} .mobile-menu {
position: fixed;
top: 0;
right: 0;
height: 100%;
width: 50vw;
background: #202527f5;
color: white;
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
transform: translateX(100%);
transition: transform 0.3s ease-in-out;
z-index: 2000;
touch-action: pan-y;
overflow-y: auto; -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
.mobile-menu {
width: 75vw;
}
}
.mobile-menu ul {
list-style: none;
display: flex;
flex-direction: column;
}
.mobile-menu a {
text-decoration: none;
color: white;
font-size: 1.1rem;
font-weight: 500;
}
.close-btn {
font-size: 2rem;
line-height: 1;
background: none;
border: none;
cursor: pointer;
color: white;
display: flex;
align-items: center;
justify-content: center;
height: 2rem;
width: 2rem;
}
.close-btn:hover,
.mobile-menu i:hover,
.mobile-menu a:hover {
color: #66ccff;
}
.mobile-menu-header {
display: flex;
padding: 2rem 1.5rem 0;
justify-content: space-between;
align-items: center;
}
.mobile-menu-header .home-icon,
.mobile-menu-header .close-btn {
display: flex;
align-items: center;
justify-content: center;
height: 2rem;
}
.home-icon {
font-size: 1.5rem;
color: white;
text-decoration: none;
line-height: 1;
}
.mobile-menu-list {
list-style: none;
display: flex;
flex-direction: column;
}
.mobile-menu-list li {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.1rem;
color: white;
font-weight: 300;
padding: .5rem 1.5rem;
}
.mobile-menu-list .menu-section {
font-weight: 600;
color: #66ccff;
padding: 1.2rem 1.5rem .5rem;
}
.mobile-menu-list i {
width: 1.25rem;
text-align: center;
color: white;
}
.mobile-menu-list a .arrow {
transition: transform 0.3s ease;
}
.mobile-menu-list li.submenu-open > a .arrow {
transform: rotate(180deg);
}
.mobile-menu-list .bordered {
display: block;
border-top: 1px solid white;
padding: 1.2rem 1.5rem;
}
.mobile-submenu li:first-of-type {
margin-top: 5px;
}
.social-icons {
display: flex;
justify-content: center;
gap: 1.2rem; padding: 1.5rem 0;
}
.social-icons a {
color: white;
font-size: 1.25rem;
text-decoration: none;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: #66ccff;
}
.mobile-menu-list .social-icons a:not(:last-child) {
margin-right: 1rem;
}
.backdrop {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.4);
z-index: 1500;
display: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.backdrop.active {
display: block;
opacity: 1;
} @media (max-width: 900px) {
.main-nav {
display: none;
}
.hamburger {
display: block;
}
}
.page-wrapper {
min-height: 100%;
display: flex;
flex-direction: column;
}
.content {
flex: 1;
} .cover {
position: relative;
width: 100%;
max-height: 650px;
overflow: hidden;
}
.cover img {
width: 100%;
height: auto;
max-height: 650px;
object-fit: cover;
background: rgba(0, 0, 0, .6);
}
.cover video {
width: 100%;
max-height: 650px;
object-fit: cover;
display: block;
} .cover-text-wrapper {
position: absolute;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
top: 30%; 
left: 50%;
transform: translateX(-50%); 
z-index: 1;
max-width: 1100px; 
width: 100%; 
padding-left: .75em;
padding-right: .75em;
}
.cover-text {
color: white;
padding: 10px;
text-align: left;
z-index: 1;
max-width: 500px;
}
.cover-form {
width: 450px;
height: auto; 
padding: 25px;
background: #202527c5;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
border-radius: 10px;
color: white;
font-family: 'Arial', sans-serif;
}
.cover-form h3 {
color: gray;
text-align: center;
}
.cover-form h1 {
text-align: center;
padding: 10px 0 25px;
font-size: 35px;
color: white;
font-weight: bold;
}
.cover-form form {
display: flex;
flex-direction: column;
gap: 15px; 
}
.cover-form input,
.cover-form label,
.cover-form button {
width: 100%;
box-sizing: border-box;
} .cover-form label {
font-size: 14px;
color: #e0e0e0;
font-weight: bold;
} .cover-form input {
width: 100%;
padding: 10px;
border: 1px solid #444;
border-radius: 5px;
font-size: 16px;
color: white;
background-color: #20252773;;
transition: border-color 0.3s ease;
}
.cover-form input:focus {
border-color: #66ccff; outline: none;
} .cover-form button {
width: 100%;
padding: 12px;
font-size: 16px;
color: white;
background-color: #66ccffe5;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
font-weight: bold;
} .cover-form button:hover {
background-color: #4da3e1;
} @media (max-width: 1000px) {
.cover-text-wrapper {
gap: 100px;
}
.cover-form {
width: 90%;
max-width: 450px;
padding: 20px;
}
.cover-form h1 {
font-size: 30px;
}
.cover-form input {
font-size: 14px;
}
.cover-form button {
font-size: 14px;
}
}
.cover-text h2 {
color: #66ccff;
padding: 10px 10px 10px 0;
font-size: 35px;
}
.cover-text h1 {
font-size: 40px;
}
@media (max-width: 1000px) {
.cover-text-wrapper {
justify-content: center;
top: 12%;
}
.cover-text {
text-align: center;
max-width: 400px;
}
.cover-text h2 {
font-size: 25px;
}
.cover-text h1 {
font-size: 30px;
}
}
@media (max-width: 425px) {
.cover-text-wrapper {
gap: 75px;
}
.cover-text h2 {
font-size: 20px;
}
.cover-text h1 {
font-size: 25px;
}
}
@media (max-width: 500px) {
.cover-text-wrapper {
gap: 90px;
}
}
.form-spacer {
height: 200px;
}
@media (max-width: 1200px) {
.form-spacer {
height: 400px;
}
}
@media (max-width: 900px) {
.form-spacer {
height: 550px;
}
}
@media (max-width: 768px) {
.form-spacer {
height: 650px;
}
}
.fp-section {
padding-top: 150px;
width:100%;
height: 500px;
background-color: lightgray;
} .footer-container {
width: 100%;
height: 500px;
background-color:#202527;
}
.mobile-buttons {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
display: flex;
justify-content: center;
z-index: 1
}
.mobile-buttons a {
padding: 15px;
width: 50%;
text-decoration: none;
border: 1px solid lightgray;
text-align: center;
background-color: #66ccff;
color: white;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
.mobile-buttons a i {
margin-right: 5px;
}
.mobile-buttons a:first-child {
border-right: none; } .mobile-buttons .button:active {
transform: scale(0.95); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } @media (min-width: 768px) {
.mobile-buttons, 
.room-for-buttons {
display: none;
}
}