/* Tachna Family Genealogy - Modern Stylesheet */

/* Reset and Base Styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
#container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Navigation */
#nav_list {
    background-color: #2c3e50;
    width: 250px;
    padding: 20px 0;
}

#nav_list li {
    margin: 0;
    padding: 0;
}

#nav_list a {
    display: block;
    padding: 10px 20px;
    color: #ecf0f1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#nav_list a:hover {
    background-color: #34495e;
    color: #f1c40f;
}

/* Content Sections */
#content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.content_box_large, .content_box {
    flex: 1;
    margin: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Headings */
h1, h2, h3 {
    color: #2c3e50;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

h2 {
    font-size: 20px;
    color: #3498db;
}

h3 {
    font-size: 18px;
    color: #2980b9;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Special Classes */
.yellow {
    color: #f1c40f;
    font-weight: bold;
}

.red {
    color: #e74c3c;
}

/* Responsive Considerations */
@media screen and (max-width: 768px) {
    #container {
        width: 100%;
    }
    
    #nav_list {
        width: 100%;
    }
    
    .content_box_large, .content_box {
        flex: 0 0 100%;
    }
}

/* Preserve some original layout characteristics */
#menu_header {
    text-align: center;
    margin: 20px;
}

.login_box {
    background-color: #f1f1f1;
    padding: 15px;
    margin: 10px;
    border-radius: 5px;
}

/* Form Styles - Maintained for compatibility */
input, textarea {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Hoverbox - Preserved from original stylesheet */
.hoverbox {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.hoverbox li {
    margin: 5px;
    position: relative;
}

.hoverbox img {
    max-width: 100px;
    height: auto;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.hoverbox img:hover {
    transform: scale(1.1);
}

/* Clear fix */
.clear {
    clear: both;
    height: 30px;
}

/* Title Styling */
#page-title {
    width: 100%;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

#page-title h1 {
    font-family: 'Century Gothic', 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#page-title .subtitle {
    font-size: 16px;
    color: #f1c40f;
    margin-top: 10px;
    letter-spacing: 1px;
}