/*
 Theme Name:   Custom Theme
 Theme URI:    https://potomachustle.com
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Description:  A custom WordPress theme for Potomac Hustle, a teen-run service company. Designed to be light, fun, and professional with no plugins.
 Version:      1.0
 Text Domain:  customtheme
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         custom, teen, service, light, fun
*/

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5d5;
    color: #003087;
    line-height: 1.6;
}

a {
    color: #40c4c2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #33a8a6;
}

h1, h2, h3 {
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

/* Header Styles */
.site-header {
    background-color: #40c4c2;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.site-title {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #003087;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    display: block;
    width: 25px;
    height: 3px;
    background: #003087;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
}

.menu-icon::before {
    transform: translateY(-8px);
}

.menu-icon::after {
    transform: translateY(8px);
}

.menu-toggle.active .menu-icon {
    background: transparent;
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
}

.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-link {
    color: #003087;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
    color: #fff;
    background: #33a8a6;
}

/* Footer Styles */
.site-footer {
    background-color: #003087;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

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

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-info h3 {
    margin: 0 0 10px;
}

.footer-link {
    color: #40c4c2;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.copyright {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #40c4c2;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-link {
        font-size: 1.4em;
        padding: 10px 20px;
        display: block;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        flex-direction: column;
        gap: 5px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}