/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    height: 100vh;
}

/* Header Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
}

.name-box {
    border: 2px solid #333;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-links .btn {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    padding: 8px 16px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.nav-links .btn:hover {
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
}

/* Hero Section */
/* 1. Crucial: Ensure the browser allows full-height content */
html, body {
    height: 100%;
    margin: 0;
}

/* 2. The Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical Center */
    align-items: center;     /* Horizontal Center */
    height: 100vh;           /* Full Screen Height */
    text-align: center;
}

/* 3. The About Section */
#about {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical Center */
    align-items: center;     /* Horizontal Center */
    
    width: 100%;
    min-height: 100vh;       /* Forces the section to be exactly one screen tall */
    text-align: center;      /* Centers the text lines themselves */
    background-color: #fff;
}

/* 4. The Content Wrapper */
.about-content {
    max-width: 800px;        /* Limits width so text doesn't span the whole screen */
    padding: 20px;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* The "Hidden" State */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

/* The "Visible" State */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px); /* Centers relative to remaining screen height */
    text-align: center;
}

.intro-text {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0px;
}

.main-title {
    font-family: 'Georgia', serif; /* Different font style */
    font-size: 5rem;              /* Larger scale */
    color: #222;
    text-transform: uppercase;
    letter-spacing: 4px;
}