/*
Theme Name: 250kshortcut
Theme URI: https://250kshortcut.com
Author: WebhostRocket.com
Author URI: http://webhostrocket.com
Description: A custom theme for John Shaffer's project.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 250kshortcut
*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container Class */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex; /* Ensures flexbox layout */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space between logo and navigation */
}

/* Header Styling */
header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
}

.site-logo a {
    color: #FFA500; /* Orange color for site name */
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.site-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between menu items */
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFA500; /* Orange color on hover */
}

.login-register-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFA500; /* Orange background */
    color: #000; /* Black text */
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #FFCC99; /* Light orange outline */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin-left: 20px; /* Space between nav and button */
}


.login-register-button:hover {
    background-color: #FFCC99; /* Lighter orange on hover */
    color: #000; /* Keep black text */
    border-color: #FFA500; /* Darker orange outline on hover */
}





/* Additional Login/Register Block Styles */
.login-register-block, .welcome-block {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.login-register-block h2, .welcome-block h2 {
    margin-top: 0;
}

.login-register-block p, .welcome-block p {
    margin-bottom: 0;
}


/* Registration Page Styling */
.registration-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.membership-info-section, .agency-info-section {
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.membership-signup-button, .agency-signup-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #FFA500; /* Orange background */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.membership-signup-button:hover, .agency-signup-button:hover {
    background-color: #FF7F00; /* Darker orange on hover */
}


