/* The Goof Method - Shared Stylesheet */
:root {
    --primary-bg: #f0f8ff;
    --secondary-bg: #ffffff;
    --accent-bg: #e6f3ff;
    --text-color: #263238;
    --heading-color: #1565c0;
    --accent-color: #42a5f5;
    --link-color: #26c6da;
    --border-color: #42a5f5;
}

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: var(--text-color);
    background-color: var(--primary-bg);
    transition: all 0.3s ease;
}

/* Navigation Styles */
header {
    margin-bottom: 40px;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid var(--border-color);
}

.logo a {
    font-size: 1em;
    text-align: center;
    font-weight: bold;
    color: var(--heading-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    justify-content: center;
    max-width: 700px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 20px;
    background-color: var(--accent-bg);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Main Content Styles */
main {
    animation: fadeIn 0.5s ease-in;
}

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

section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

section:nth-child(odd) {
    background-color: var(--secondary-bg);
}

section:nth-child(even) {
    background-color: var(--accent-bg);
}

/* Typography */
h1 {
    color: var(--heading-color);
    font-size: 2.5em;
    margin: 0 0 10px 0;
}

h2 {
    color: var(--heading-color);
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 30px;
}

h3 {
    color: var(--heading-color);
    font-size: 1.2em;
    margin-bottom: 15px;
    margin-top: 25px;
}

h4 {
    color: var(--heading-color);
    font-size: 1.1em;
    margin-bottom: 12px;
    font-style: italic;
}

p {
    margin-bottom: 15px;
}

ul {
    margin: 20px 0;
}

li {
    margin-bottom: 8px;
    list-style: none;
}

/* Add bullets for content lists (not navigation) */
main ul li {
    list-style: disc;
    margin-left: 20px;
}

em {
    font-style: italic;
    color: var(--accent-color);
}

strong {
    font-weight: bold;
    color: var(--heading-color);
}

/* Link styles (excluding navigation) */
a:not(.nav-menu a):not(.logo a) {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
    transition: all 0.3s ease;
}

a:not(.nav-menu a):not(.logo a):hover {
    color: var(--accent-color);
    transform: translateX(2px);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #666;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 20px;
}

/* Special Classes */
.hero-section {
    background-color: var(--accent-bg);
    border: 2px solid var(--border-color);
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.emoji-header {
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    section {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu a {
        padding: 6px 10px;
        font-size: 0.85em;
    }
    
    .txt-lft {
          text-align: left;
        }
