/*
Theme Name: Hosky Faucet
Theme URI: https://yourdomain.com
Author: Your Name
Author URI: https://yourdomain.com
Description: Custom theme for Hosky Faucet website
Version: 1.0
Text Domain: hosky-faucet
*/

/* Basic reset and styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7f9;
    color: #2c3e50;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4adeff;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.1);
}

.header-banner {
    width: 320px;
    height: 50px;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #4a6572;
}

/* Main Content */
.site-content {
    flex: 1;
    padding: 40px 0;
}

/* Footer Styles */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #4adeff;
}

.copyright {
    margin-top: 20px;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-banner {
        margin-top: 15px;
    }
}