/*
 Theme Name:   Sodig Child
 Theme URI:    http://example.com/oceanwp-child/
 Description:  OceanWP Child Theme
 Author:       Your Name
 Author URI:   http://example.com
 Template:     oceanwp
 Version:      1.0.0
*/
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* 页头样式 */
.site-header {
    background-color: #0077b6;
    padding: 50px 0;
    text-align: center;
    color: white;
}

.site-header h1 {
    margin: 0;
    font-size: 3rem;
}

.site-header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* 分类容器 */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px auto;
    max-width: 1300px;
}

/* 分类卡片 */
.category-box {
    background: white;
    padding: 30px;
    margin: 20px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-box h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #0077b6;
}

.category-box a {
    color: #555;
    text-decoration: none;
    display: block;
    margin: 12px 0;
}

.category-box a:hover {
    color: #0077b6;
    text-decoration: underline;
}


/* 提交网站表单样式 */
.submit-site-form {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submit-site-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.submit-site-form p {
    margin-bottom: 20px;
}

.submit-site-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.submit-site-form input, .submit-site-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-site-form button1 {
    background-color: #0077b6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-site-form button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
    text-shadow: none;
}

.submit-site-form button:hover {
    background-color: #005f8a;
}

.alert {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
}
label[for="captcha"] {
    font-weight: bold;
    margin-bottom: 8px;
}

input#captcha {
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
}

.alert.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}
