/**
Theme Name: HostWHMCS
Theme URI: http://themelooks.us/demo/hostwhmcs/wordpress/hostwhmcs/
Author: themelooks
Author URI: http://themelooks.com/
Description: HostWhmcs is a Responsive Hosting and WHMCS WordPress Theme designed for All kinds of Hosting Business. Anyone can easily update/edit this wp theme to follow our Well Sorted Documentation.
Version: 4.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, theme-options, editor-style, featured-images, microformats, post-formats,  sticky-post, threaded-comments, translation-ready
Text Domain: hostwhmcs

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif; /* matches HostWHMCS default */
}

body {
    background-color: #1c2237; /* dark navy background */
    color: #f1f1f1;
    line-height: 1.6;
}

/* Starry background */
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: url('stars.png') repeat;
    z-index: -1;
}

/* ========== Header/Nav ========== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1c2237;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2c3250;
}

header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a62c; /* HostWHMCS accent color */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4a62c;
}

/* Login Button */
header .login-btn {
    background-color: #d4a62c;
    color: #1c2237;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

header .login-btn:hover {
    background-color: #e6be4f;
}

/* ========== Hero Section ========== */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.hero-text h2 span {
    color: #d4a62c;
}

.hero-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ccc;
}

.hero-text ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-text ul li {
    position: relative;
    padding-left: 25px;
    color: #ccc;
}

.hero-text ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #d4a62c;
}

/* Hero Button */
.hero-text .btn {
    background-color: #d4a62c;
    color: #1c2237;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.hero-text .btn:hover {
    background-color: #e6be4f;
}

/* Rocket Image */
.hero-img img {
    max-width: 100%;
    height: auto;
}

/* ========== Footer ========== */
footer {
    background-color: #141a2b;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    border-top: 1px solid #2c3250;
}

footer a {
    color: #d4a62c;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #f1c94f;
    text-decoration: underline;
}

.footer-homepage {
    margin-top: 15px;
    font-size: 0.85rem;
}

/* ========== Buttons and Links throughout theme ========== */
a, .btn-primary, .btn {
    transition: all 0.3s;
}

a:hover, .btn:hover {
    text-decoration: none;
}

/* ========== Responsive ========== */
@media screen and (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text ul {
        grid-template-columns: 1fr;
    }
}
