* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #333333;
    color: #ffffff;
    position: relative;
}
html {
    scroll-behavior: smooth;
}

nav {
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #ffffff;
    letter-spacing: 0.15em;
    font-size: 0.9em;
    text-transform: uppercase !important;
}

.nav-links {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-size: 1.25em;
}

nav a:hover {
    border-bottom: 1px solid #ffffff;
}

.hero {
    height: 100vh;
    background-image: url('images/Teton_Trip-331.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 15%;
}

.hero h1{
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8), 0 0 80px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
/*
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
}
*/
.about, .contact {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    border-top: 1px solid #444444;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact {
    position: relative;
    z-index: 2;
}

.about {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about img {
    width: 250px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.about-text p {
    margin-bottom: 16px;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 1.5em;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

p {
    line-height: 1.8;
    color: #ffffff;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #333333);
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
}

form input, form textarea {
    background-color: #444444;
    border: none;
    padding: 12px 16px;
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
}

form textarea {
    height: 150px;
    resize: vertical;
}



form button {
    background-color: transparent;
    border: 1px solid #f0f0f0;
    color: #f0f0f0;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    cursor: pointer;
    align-self: flex-start;
    letter-spacing: 0.05em;
}

form button:hover {
    background-color: #f0f0f0;
    color: #333333
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    color: #ffffff;
    letter-spacing: 0.15em;
    font-size: 0.9em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-size: 1.25em;
}

.footer-links a:hover {
    border-bottom: 1px solid #ffffff;
}

.footer-hero {
    height: 90vh;
    background-image: url('images/Teton_Crest_2022-715.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -600px;
}

.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #333333, transparent);
    pointer-events: none;
}

.footer-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(to bottom, transparent, #111111);
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    animation: fadeIn 1.5s ease forwards;
}