/*
Theme Name: Base Theme
Theme URI: http://taylortjensen.com
Description: Taylor Jensen HTML5 base theme
Version: 2.7
Author: Taylor Jensen / Gemini
*/

@import "css/reset.css";
@import "css/layout.css";

/* ----- GLOBAL STYLES ----- */
body {
    background: #000 url("images/bfDark.jpg") no-repeat center top;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400; 
    font-size: 20px; 
    line-height: 1.7;
    color: #000;
}

.wrap {
    width: 100%;
    margin: 0 auto;
}

#contentWrapper, footer {
    background: rgba(255, 255, 255, 0.6);
    margin: 20px auto;
    max-width: 850px;
    padding: 40px;
}

/* ----- HEADER STYLES (Desktop) ----- */
.site-header {
    display: flex;
    justify-content: center; 
    align-items: flex-end; 
    width: 100%;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
}

.header-left {
    flex: 0 0 265px; 
    z-index: 1; 
    position: relative;
    pointer-events: none; 
}

.guitar-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(4px 4px 12px rgba(0,0,0,0.7));
}

.header-right {
    display: flex;
    flex-direction: column;
    margin-left: -75px; 
    z-index: 10;
    position: relative;
}

.mobile-top-bar {
    display: flex;
    align-items: center;
}

/* ----- LOGO & NAV ----- */
.site-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; 
    font-size: 64px;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 6px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.7));
}

.sub-logo {
    font-size: 22px;
    color: #F7941D; 
    letter-spacing: 3px;
    align-self: flex-end;
    margin-top: 4px;
    font-weight: 700;
}

.main-navigation {
    margin-top: 15px;
    position: relative;
    z-index: 20; 
}

.main-navigation ul {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    border-top: 3px solid #F0F0F0; 
    border-bottom: 3px solid #F0F0F0;
    display: flex;
    gap: 35px;
}

.main-navigation li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; 
    font-size: 19px;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease; /* Smooth color fade */
}

/* HOVER EFFECT */
.main-navigation li a:hover {
    color: #F7941D;
}

.menu-toggle {
    display: none !important;
}

/* ----- TYPOGRAPHY ----- */
h1 { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 700; margin-bottom: 20px; }

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px; 
    font-weight: 400; 
    line-height: 1.8;
    padding-bottom: 25px;
    color: #111;
}

/* ----- MOBILE STYLES ----- */
@media screen and (max-width: 768px) {
    .site-header { padding: 15px 20px; display: block; }
    .header-left { display: none !important; }
    .header-right { margin-left: 0 !important; width: 100%; }
    
    .mobile-top-bar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .site-logo-text { font-size: 32px !important; letter-spacing: 2px !important; }
    .sub-logo { font-size: 13px !important; align-self: flex-start !important; }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        background: transparent;
        border: 2px solid #FFFFFF !important;
        padding: 8px;
        width: 42px;
        height: 36px;
    }

    .menu-toggle .bar { width: 100%; height: 2px; background: #FFFFFF; display: block; }

    .main-navigation { display: none; width: 100%; margin-top: 15px; }
    .main-navigation.toggled { display: block !important; }

    .main-navigation ul {
        flex-direction: column !important;
        border-width: 2px;
        padding: 10px 0;
        gap: 15px !important; 
    }

    .main-navigation li a { 
        font-size: 20px !important; 
        font-weight: 700; 
        padding: 5px 0; 
        text-align: center; 
        display: block; 
    }

    /* Active state for mobile tapping */
    .main-navigation li a:active {
        color: #F7941D;
    }
    
    p { font-size: 20px; }
}

footer {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    padding: 30px 0;
}