/*
Theme Name: My HTML Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme converted from HTML
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-html-theme
Tags: custom, landing-page
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Base Styles
2.0 - Typography
3.0 - Layout
4.0 - Header
5.0 - Main Content
6.0 - Footer
7.0 - Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Base Styles
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005177;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

p {
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
3.0 - Layout
--------------------------------------------------------------*/
.site-main {
    padding: 40px 0;
    min-height: 60vh;
}

/*--------------------------------------------------------------
4.0 - Header
--------------------------------------------------------------*/
.site-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-branding {
    display: inline-block;
}

.site-title {
    font-size: 1.5em;
    margin: 0;
}

.site-title a {
    color: #333;
}

.main-navigation {
    display: inline-block;
    float: right;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin-left: 30px;
}

/*--------------------------------------------------------------
5.0 - Main Content
--------------------------------------------------------------*/
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
}

.features-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #005177;
    color: #fff;
}

/*--------------------------------------------------------------
6.0 - Footer
--------------------------------------------------------------*/
.site-footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.copyright {
    margin: 0;
}

/*--------------------------------------------------------------
7.0 - Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .main-navigation {
        float: none;
        display: block;
        margin-top: 20px;
    }
    
    .nav-menu li {
        display: block;
        margin: 10px 0;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
PASTE YOUR CUSTOM CSS BELOW THIS LINE
--------------------------------------------------------------*/

/* Add all your existing styles.css content here */