/*
Theme Name: AMC Theme
Author: AMC Team
Description: A theme for AMC Website
Version: 1.0
*/

/* -------------------------------------------------------
   Reset / Base Styles
------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

/* -------------------------------------------------------
   Layout
------------------------------------------------------- */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* -------------------------------------------------------
   Typography
------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 16px;
    line-height: 1.2;
}

p {
    margin-bottom: 16px;
}

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

a:hover {
    text-decoration: underline;
}

ul,
ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

/* -------------------------------------------------------
   Images
------------------------------------------------------- */

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

/* -------------------------------------------------------
   Header
------------------------------------------------------- */

.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
}

/* -------------------------------------------------------
   Navigation
------------------------------------------------------- */

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.main-navigation a {
    color: #222;
    font-weight: 600;
}

/* -------------------------------------------------------
   Content
------------------------------------------------------- */

.site-content {
    padding: 40px 0;
}

.post {
    margin-bottom: 40px;
}

.post-title {
    margin-bottom: 10px;
}

.post-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 16px;
}

/* -------------------------------------------------------
   Buttons
------------------------------------------------------- */

button,
input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
    background-color: #005f8d;
}

/* -------------------------------------------------------
   Forms
------------------------------------------------------- */

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
}

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */

.site-footer {
    padding: 20px 0;
    border-top: 1px solid #ddd;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}