/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background Image Scaling */
.hero {
    min-height: 100vh;
    width: 100%;
    background: url('background.jpg') no-repeat center center;
    background-size: cover; /* This makes the image scale correctly */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

/* Navigation Menu */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    z-index: 10;
}

.nav-logo {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #555;
}

/* Central Content */
.main-logo {
    max-width: 450px;
    width: 85%;
    margin-bottom: 20px;
    /* Keeps logo crisp and centered */
}

.divider {
    width: 40px;
    height: 1px;
    background-color: #333;
    margin: 20px auto;
}

.tagline {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}

.founder {
    font-size: 0.9rem;
    margin-bottom: 35px;
}

/* Email Button Styling */
.email-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.95);
    outline: none;
}

.email-btn:hover,
.email-btn:focus {
    background-color: rgba(66, 66, 66, 0.757);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.9);
}

.envelope {
    margin-right: 12px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    nav {
        padding: 25px 20px;
    }
    .main-logo {
        max-width: 280px;
    }
    .tagline {
        font-size: 1rem;
        padding: 0 10px;
    }
}