/* Main Styles for VCR Electric Services */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif', serif;
    line-height: 1.6;
    color: #1c1b1b;
    background-color: #fcf9f8;
}

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

/* Header Styles */
.main-header {
    background: #fff;
    border-bottom: 5px solid #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo span {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ba8437;
}

.header-contact {
    text-align: right;
}

.header-contact div {
    margin-bottom: 5px;
}

.header-contact span {
    font-size: 14px;
    color: #666;
}

.header-contact a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.header-contact a:hover {
    color: #ba8437;
}

/* Footer Styles */
.main-footer {
    background: #111111;
    color: #f5f0eb;
    border-top: 2px solid #d4900a;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #d4900a;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #d4900a;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #f5f0eb;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4900a;
}

.footer-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 240, 235, 0.6);
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 240, 235, 0.2);
}

.footer-bottom p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 240, 235, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-contact {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo span {
        font-size: 14px;
    }
}
