/*
Theme Name: Fildisi
Theme URI: https://www.example.com/fildisi
Author: Your Name
Author URI: https://www.example.com
Description: A beautiful, responsive WordPress theme designed for landing pages.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fildisi
Tags: one-page, landing-page, responsive, custom-colors, custom-header, custom-menu
*/

/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

a:hover {
    color: #004080;
}

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

/* 链接样式 */
a {
    text-decoration-thickness: 1px !important;
    text-underline-offset: .1em;
}

/* 焦点样式 */
:where(.wp-site-blocks *:focus) {
    outline-width: 2px;
    outline-style: solid;
}

/* 导航菜单样式调整 */
.main-navigation {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.main-navigation .custom-menu-container {
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-navigation a:hover {
    color: #0066cc;
}

.main-navigation .download-button a {
    background-color: #ffc107;
    color: #333;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.main-navigation .download-button a:hover {
    background-color: #ffb300;
    color: #333;
}

/* 引入自定义CSS */
@import url('assets/css/landing-page.css');
