* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: linear-gradient(rgba(28, 49, 66, 0.7), rgba(28, 49, 66, 0.7)), url('im.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%; 
    background-color: #1C3142;
    color: white;
    line-height: 1.7;
}

.reveal {
    background: rgba(28, 49, 66, 0.8);
    backdrop-filter: blur(8px); 
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1100px;
}

nav {
    background: #1C3142;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    font-weight: 600;
    color: white;
}

nav a:hover {
    color: #C5A059;
}

section {
    padding: 90px 20px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6, p, ul, li {
    text-align: center;
}

h2, h4, h6 {
    font-size: 3rem;
    color: #C5A059;
    margin-bottom: 40px;
}

h3, h5 {
    font-size: 2rem;
    color: #C5A059;
    margin: 40px 0 20px;
}

p {
    max-width: 1000px;
    margin: 18px auto;
}
/

.hero {
    background: linear-gradient(to right, rgba(28, 49, 66, 0.95) 40%, rgba(28, 49, 66, 0.4)), url('welcome.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    height: calc(100vh - 74px); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-title, .hero-subtitle {
    color: white !important;
}

.hero-title {
    font-size: 4.5rem !important;
    font-weight: 800;
    display: inline-block;
    line-height: 1.15; 
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 2.2rem !important;
    font-weight: 500;
    display: inline-block;
    line-height: 1.4;
    max-width: 900px; 
}

ul.gear-list {
    list-style: none;
    max-width: 900px;
    margin: 30px auto;
    line-height: 3rem;
}

ul.gear-list li {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-right: 25px;
    margin-bottom: 0px;
}

ul.gear-list li::before {
    content: "\f013";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #C5A059;
}

.section-divider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(70%);
}

.contact-container {
    max-width: 700px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-container p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 30px;
    background: #C5A059;
    color: #1C3142 !important;
    font-weight: bold;
    border-radius: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform; 
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}