/*
 Theme Name: Apply Quotes Standard View
 Theme URI: https://apply-quotes.com/
 Author: Sir David and Sir Grok
 Author URI: https://apply-quotes.com/
 Description: Standard View theme for Apply Quotes
 Version: 2.9
 Text Domain: apply-quotes-standard
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Georgia', serif;
    background: url('https://apply-quotes.com/wp-content/uploads/castle-pasture-mist.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    min-height: 100vh;
}
.royal-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 50px;
    position: fixed;
    top: 20px !important; /* Moved down 20px */
    width: 100%;
    z-index: 1001;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.royal-logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
}
.royal-nav {
    display: flex;
    align-items: center;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.nav-menu li a:hover {
    color: #ffd700;
}
.view-selector {
    margin-left: 30px;
}
.view-button {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.view-button:hover {
    background: #e6c200;
}
.view-button.active {
    background: #333;
    color: #ffd700;
}
.standard-home, .about-us, .quote-master-container, .guild-container, .car-quote-container {
    max-width: 800px;
    margin: 100px auto 40px; /* Adjusted for header */
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.neon-shop {
    position: absolute;
    padding: 15px 25px;
    text-align: center;
    z-index: 10;
    background: url('https://apply-quotes.com/wp-content/themes/apply-quotes-better/assets/images/wooden-sign.png') no-repeat center center;
    background-size: cover;
    border: 3px solid #333;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    width: 220px;
    transition: transform 0.3s ease;
}
.neon-shop:hover {
    transform: scale(1.05);
}
.neon-shop h2 {
    font-size: 22px;
    margin-bottom: 5px;
}
.neon-shop a {
    text-decoration: none;
    color: inherit;
}
.neon-shop p {
    font-size: 14px;
    margin: 0;
}
.catering-shop {
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    color: #ff00ff; /* Pink neon */
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    animation: neonGlowPink 1.5s infinite alternate;
}
.contractor-shop.stone-masonry {
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
    color: #00ff00; /* Green neon */
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
    animation: neonGlowGreen 1.5s infinite alternate;
}
.contractor-shop.timber-carpentry {
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    color: #ffaa00; /* Orange neon */
    text-shadow: 0 0 10px #ffaa00, 0 0 20px #ffaa00, 0 0 30px #ffaa00;
    animation: neonGlowOrange 1.5s infinite alternate;
}
.contractor-shop.plumb-fix {
    left: 50%;
    top: 60%;
    transform: translateX(-50%);
    color: #aa00ff; /* Purple neon */
    text-shadow: 0 0 10px #aa00ff, 0 0 20px #aa00ff, 0 0 30px #aa00ff;
    animation: neonGlowPurple 1.5s infinite alternate;
}
.continue-tab {
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: url('https://apply-quotes.com/wp-content/themes/apply-quotes-better/assets/images/wooden-sign.png') no-repeat center center;
    background-size: cover;
    padding: 10px 30px;
    border: 3px solid #333;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.continue-tab a {
    font-size: 28px;
    font-weight: bold;
    color: #00ffff; /* Cyan neon */
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    animation: neonGlowCyan 1.5s infinite alternate;
    text-decoration: none;
}
.kings-header {
    display: flex;
    justify-content: center;
    margin: 120px auto 0; /* Adjusted for header */
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    z-index: 1;
}
.kings-header .kings-image {
    max-width: 800px;
    width: 100%;
    border: 10px solid #ffd700;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    transition: transform 0.4s ease;
}
.kings-header .kings-image:hover {
    transform: scale(1.05);
}
.standard-home h1, .about-us h1, .quote-master-container h1, .guild-container h1, .car-quote-container h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}
.standard-home p, .about-us p, .quote-master-container p, .guild-container p, .car-quote-container p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
.home-actions {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.royal-button {
    background: #ffd700;
    color: #333;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.royal-button:hover {
    background: #e6c200;
}
.royal-footer {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    padding: 8px;
    position: fixed;
    bottom: 0;
    width: auto;
    max-width: 500px;
    margin: 0 auto;
    z-index: 1001;
    box-shadow: none;
}
.royal-footer p {
    font-size: 14px;
    margin: 4px 0;
}
.treasure-hint {
    color: #ffd700;
    text-decoration: underline;
    font-size: 14px;
    display: inline-block;
    margin-top: 4px;
}
.treasure-hint:hover {
    color: #e6c200;
}
.guild-perks, .market-perks {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    display: inline-block;
}
.guild-perks li, .market-perks li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.guild-perks li:before {
    content: "⚒";
    position: absolute;
    left: 0;
    color: #ffd700;
}
.market-perks li:before {
    content: "🛒";
    position: absolute;
    left: 0;
    color: #ffd700;
}
.guild-form, .market-form, .car-quote-form {
    max-width: 400px;
    margin: 0 auto;
}
.guild-form input, .market-form input, .car-quote-form select, .car-quote-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.guild-form input:focus, .market-form input:focus, .car-quote-form select:focus, .car-quote-form input:focus {
    border-color: #ffd700;
    outline: none;
}
.car-quote-form select:disabled {
    background-color: #e9ecef;
}
.guild-form button, .market-form button, .car-quote-form button {
    width: 100%;
    padding: 12px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.guild-form button:hover, .market-form button:hover, .car-quote-form button:hover {
    background: #e6c200;
}
.guild-form .success, .market-form .success, .car-quote-form .success {
    display: none;
    text-align: center;
    color: #333;
    margin-top: 10px;
    font-size: 14px;
}
@keyframes neonGlowPink {
    from { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
    to { text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff, 0 0 50px #ff00ff; }
}
@keyframes neonGlowGreen {
    from { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00; }
    to { text-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00, 0 0 50px #00ff00; }
}
@keyframes neonGlowOrange {
    from { text-shadow: 0 0 10px #ffaa00, 0 0 20px #ffaa00, 0 0 30px #ffaa00; }
    to { text-shadow: 0 0 15px #ffaa00, 0 0 30px #ffaa00, 0 0 50px #ffaa00; }
}
@keyframes neonGlowPurple {
    from { text-shadow: 0 0 10px #aa00ff, 0 0 20px #aa00ff, 0 0 30px #aa00ff; }
    to { text-shadow: 0 0 15px #aa00ff, 0 0 30px #aa00ff, 0 0 50px #aa00ff; }
}
@keyframes neonGlowCyan {
    from { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff; }
    to { text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff, 0 0 50px #00ffff; }
}
@media (max-width: 768px) {
    .royal-header {
        padding: 10px 20px;
        top: 20px !important; /* Moved down 20px */
    }
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .royal-logo {
        font-size: 24px;
    }
    .royal-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    .nav-menu li a {
        font-size: 14px;
    }
    .view-selector {
        margin-left: 0;
        margin-top: 10px;
    }
    .view-button {
        font-size: 10px;
        padding: 6px 10px;
    }
    .standard-home, .about-us, .quote-master-container, .guild-container, .car-quote-container {
        margin: 80px auto 30px; /* Adjusted for header */
        padding: 15px;
        max-width: 90%;
    }
    .neon-shop {
        width: 90%;
        max-width: 180px;
        padding: 10px 20px;
    }
    .catering-shop {
        top: 25%;
    }
    .contractor-shop.stone-masonry {
        top: 35%;
    }
    .contractor-shop.timber-carpentry {
        top: 45%;
    }
    .contractor-shop.plumb-fix {
        top: 55%;
    }
    .continue-tab {
        bottom: 10%;
        padding: 8px 20px;
    }
    .continue-tab a {
        font-size: 24px;
    }
    .kings-header {
        margin: 100px auto 0; /* Adjusted for header */
        max-width: 90%;
        padding: 20px;
    }
    .kings-header .kings-image {
        max-width: 100%;
        border-width: 6px;
    }
    .standard-home h1, .about-us h1, .quote-master-container h1, .guild-container h1, .car-quote-container h1 {
        font-size: 28px;
    }
    .standard-home p, .about-us p, .quote-master-container p, .guild-container p, .car-quote-container p {
        font-size: 14px;
    }
    .home-actions {
        flex-direction: column;
        gap: 10px;
    }
    .royal-button {
        padding: 10px 20px;
    }
    .guild-form, .market-form, .car-quote-form {
        max-width: 100%;
    }
    .royal-footer {
        padding: 6px;
        max-width: 90%;
    }
}