/*
Theme Name: FS
Theme URI: https://example.com/fs
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme named FS.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fs
Tags: custom-theme, responsive, blog
*/

/* ==========================================================================
   CSS Reset
========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    color: #0a58ca;
}

/* ==========================================================================
   Layout
========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ==========================================================================
   Header
========================================================================== */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.site-logo {
    font-size: 28px;
    font-weight: 700;
}

/* ==========================================================================
   Navigation
========================================================================== */

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: #222;
    font-weight: 600;
}

/* ==========================================================================
   Hero
========================================================================== */

.hero {
    padding: 100px 0;
    text-align: center;
    background: #f8f9fa;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

/* ==========================================================================
   Footer
========================================================================== */

.site-footer {
    background: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}