/*
Theme Name: Danny Sculthorpe
Theme URI: https://dansculthorpe.co.uk
Author: Mako Digital
Author URI: https://makodigital.co.uk
Description: Custom WordPress theme for Danny Sculthorpe
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: danny-sculthorpe
Tags: custom
*/

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

#site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

#site-header .site-branding a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

#site-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#site-nav ul li a {
    font-size: 0.95rem;
    color: #333;
}

#site-nav ul li a:hover {
    color: #000;
    text-decoration: underline;
}

/* Main */
#main-content {
    padding: 40px 0;
}

/* Footer */
#site-footer {
    background: #222;
    color: #ccc;
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.875rem;
}

#site-footer a {
    color: #ccc;
    text-decoration: underline;
}
