/* Manatee Music - Modern Responsive Styles */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: url('images/page.background.pattern.gif') repeat;
}

/* Container */
.container {
    max-width: 904px;
    margin: 0 auto;
    background: white;
    border-left: 1px solid #333333;
    border-right: 1px solid #333333;
}

/* Header */
.header {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.nav {
    background: #669999;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.nav a {
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: background-color 0.3s;
}

.nav a:last-child {
    border-right: none;
}

.nav a:hover,
.nav a.active {
    background: rgba(0,0,0,0.1);
}

/* Main Content */
.content {
    padding: 20px;
    min-height: 400px;
}

.content h1 {
    color: #669999;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.content h2 {
    color: #669999;
    text-align: right;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.content p,
.content ul,
.content ol {
    margin-bottom: 15px;
}

.content center {
    text-align: center;
}

.content a {
    color: #0066cc;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.content img {
    max-width: 100%;
    height: auto;
}

.content img[align="right"] {
    float: right;
    margin: 0 0 20px 20px;
}

/* Footer */
.footer {
    border-top: 1px solid #333333;
    padding: 20px;
    text-align: center;
    background: #f5f5f5;
}

.footer img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 15px;
    }
    
    .nav {
        flex-direction: column;
    }
    
    .nav a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        text-align: center;
    }
    
    .content img[align="right"] {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
    
    .content h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .content {
        padding: 10px;
    }
    
    .nav a {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.color-teal {
    color: #669999;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.large-text {
    font-size: 1.2em;
}
