/*
Theme Name: OverTheAirWaves
Theme URI: https://example.com/overtheairwaves
Author: Your Name
Author URI: https://example.com
Description: A custom theme for OverTheAirWaves.
Version: 1.0
License: GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: overtheairwaves
*/

@import url('https://fonts.googleapis.com/css?family=Courier+New|Arial&display=swap');

/* Include your custom styles here (from the CSS you provided) */


/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000; /* Set background to black */
    color: white; /* Regular text color to white */
    padding-left: 20px;  /* Left margin */
    padding-right: 20px; /* Optional right margin */
}

/* Main Content Wrapper */
.wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    margin-left: 20px;  /* Left margin for content */
    margin-right: 20px; /* Optional right margin */
}

/* Main Content Area */
.main-content {
    width: 70%;
    background-color: #000; /* Set background to black */
    padding: 20px;
    border: 2px solid #333; /* Dark border around the content */
    border-radius: 10px; /* Rounded corners for the frame */
}

/* Right Navigation Sidebar */
.right-nav {
    width: 25%;
    background-color: #333; /* Dark background for the right sidebar */
    padding: 20px;
}

.right-nav h3 {
    font-size: 18px;
}

.right-nav ul {
    list-style-type: none;
}

.right-nav ul li {
    margin-bottom: 10px;
}

.right-nav ul li a {
    color: #00FF00; /* Green links for the sidebar */
    text-decoration: none;
}

/* Header Section */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    display: flex;
    flex-direction: column; /* Stack logo and menu vertically */
    align-items: center; /* Center both logo and menu */
    width: 100%;
    text-align: center;
}

/* Main Logo Styling */
header .logo h1 {
    margin: 0;
    font-size: 36px;
    font-family: 'Courier New', monospace;  /* Monospace for hacker vibe */
    color: #00FF00; /* Bright green for a digital, hacker feel */
    text-transform: uppercase;
    letter-spacing: 2px; /* Add spacing for that sharp tech look */
    text-shadow: 0 0 5px #00FF00, 0 0 10px #00FF00, 0 0 20px #00FF00, 0 0 40px #00FF00; /* Neon glow effect */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Header Navigation Menu */
header .top-nav {
    width: 100%;  /* Make the navigation bar take up full width */
    margin-top: 20px;  /* Add space between the logo and menu */
}

header .top-nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;  /* Center links on larger screens */
    padding: 0;
}

header .top-nav ul li {
    display: inline;
    margin-left: 20px;
}

header .top-nav ul li a {
    color: #00FF00; /* Neon green to match the logo */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px; /* Match logo's letter spacing for consistency */
    font-family: 'Courier New', monospace;  /* Monospace font for hacker look */
    transition: all 0.3s ease;
}

header .top-nav ul li a:hover {
    color: #00cc00; /* Slightly lighter green on hover for emphasis */
    text-shadow: 0 0 5px #00FF00, 0 0 10px #00FF00, 0 0 20px #00FF00, 0 0 40px #00FF00; /* Neon glow effect */
}

/* Links within the body content */
body a {
    color: #00FF00; /* Green links */
    text-decoration: none;  /* Remove underline by default */
    background-color: transparent; /* No background for the links */
    padding: 3px 6px; /* Add some padding for better spacing */
    border-radius: 4px; /* Optional: Rounded corners for a smoother look */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition for hover effects */
}

/* Links when hovered */
body a:hover {
    color: #00cc00; /* Lighter green on hover */
    text-decoration: underline;  /* Underline on hover for emphasis */
    background-color: #333; /* Darker background on hover */
}

/* Visited links */
body a:visited {
    color: #00cc00; /* Lighter green for visited links */
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Form Styles for Contact Page */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ccc;
}

form button {
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header .logo h1 {
        font-size: 28px;  /* Adjust logo size for mobile */
    }

    .wrapper {
        flex-direction: column;
        margin-left: 10px;  /* Reduced margin on mobile */
        margin-right: 10px;
    }

    .main-content, .right-nav {
        width: 100%;
    }

    header .top-nav ul {
        flex-direction: column;  /* Stack the links vertically */
        text-align: left;
    }

    header .top-nav ul li {
        display: block;
        margin-left: 0;
        margin-top: 10px;  /* Add some spacing between links */
    }
}

/* Main container that holds both the content and sidebar */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}
/* Sidebar area */
.sidebar {
    width: 25%; /* Adjust based on your design */
    padding-left: 20px;
}

/* Style for widgets in the sidebar */
.widget {
    margin-bottom: 20px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 10px;
}
