* {
    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;
    overflow-x: hidden;
}

nav {
    background: #1C3142;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 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;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #C5A059;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

section {
    padding: clamp(40px, 8vw, 90px) 20px;
    text-align: center;
}

.reveal {
    background: rgba(28, 49, 66, 0.85);
    backdrop-filter: blur(8px); 
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1100px;
    width: 92%;
    padding: clamp(20px, 5vw, 50px);
}

h1, h2, h3, h4, h5, h6, p, ul, li {
    text-align: center;
}

h2, h4, h6 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #C5A059;
    margin-bottom: 30px;
}

h3, h5 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #C5A059;
    margin: 40px 0 20px;
}

p {
    max-width: 1000px;
    margin: 18px auto;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.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;
    min-height: calc(100vh - 70px); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.hero-title, .hero-subtitle {
    color: white !important;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem) !important;
    font-weight: 800;
    display: inline-block;
    line-height: 1.2; 
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 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;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

ul.gear-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

ul.gear-list li::before {
    content: "\f013";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #C5A059;
    flex-shrink: 0;
}

.section-divider img {
    width: 100%;
    height: clamp(200px, 40vh, 350px);
    object-fit: cover;
    filter: brightness(70%);
}

.contact-container {
    max-width: 700px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    word-break: break-word;
}

.contact-container p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 28px;
    background: #C5A059;
    color: #1C3142 !important;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.email-btn:hover {
    background: #d8b268;
    transform: translateY(-2px);
}

.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);
}

@media screen and (max-width: 1024px) {
    nav {
        padding: 15px 30px;
    }

    ul.gear-list {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 10%;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block; 
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1C3142;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        display: none;
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
    }

    nav ul.active {
        display: flex;
    }

    ul.gear-list {
        padding-left: 0;
        align-items: flex-start;
    }

    ul.gear-list li {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 0.95rem;
    }

    .nav-logo {
        height: 32px;
    }

    .hero {
        padding: 20px 10px;
    }

    .contact-container p {
        flex-direction: column;
        gap: 5px;
    }
}