/*
Theme Name: Custom Theme
Theme URI: http://example.com/custom-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
*/

/* Basic Resets */
html, body, div, p, h1, h2, h3, h4, h5, h6, ul, ol, li, figure, footer, header, section, article {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding-top: 50px; /* To prevent header from overlapping */
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo img {
    max-width: 150px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #ff6600;
}

/* Hero Section Styles */
.hero-section {
    background: url('https://vomhausrising.toplogodesignus.com/wp-content/uploads/2025/10/Home-SLIDE-1-1-1.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
}

.hero-section h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section .btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-section .btn:hover {
    background-color: #cc5200;
}

/* Main Content Styles */
.content-area {
    padding: 30px 0;
}

.site-main {
    max-width: 1200px;
    margin: 0 auto;
}

article {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.entry-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.entry-content {
    font-size: 18px;
    color: #555;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensures elements wrap on smaller screens */
    align-items: flex-start;
}

footer .footer-container .footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

footer .footer-container h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

footer .footer-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

footer .footer-container ul li {
    margin: 5px 0;
}

footer .footer-container .social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .footer-container .social-media a:hover {
    color: #ff6600;
}

footer .footer-bottom {
    background-color: #111;
    padding: 10px;
    color: #ccc;
}

footer .footer-bottom a {
    color: #fff;
    text-decoration: none;
}

footer .footer-bottom a:hover {
    color: #ff6600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-container .footer-logo img {
        width: 120px;
    }

    footer .footer-container h3 {
        font-size: 16px;
    }

    footer .footer-bottom {
        padding: 15px;
    }
}

