/* --- RESET.CSS --- */
/* Reset Styles */

/* Box Model */
* {
    box-sizing: border-box; /* Makes sizing easier and more predictable */
}

/* Typography */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif; /* A good default sans-serif font */
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

a {
    color: #007bff; /* A standard blue link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Reset List Styles */
ul,
ol {
    list-style: none;
}

/* Reset Block-level and Inline box Model */
body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
select,
textarea {
    margin: 0;
    padding: 0;
}

/* Form Styling (optional - improves form appearance) */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Button Styling (optional - provides a basic button style) */
button,
input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/*  Other Reset Styles can be added here, for example: */
/*
* {
    font-size: 100%;
    -webkit-font-smoothing: -webkit-auto;
    -moz-osx-font-smoothing: grayscale;
}
*/

/* --- THEME.CSS --- */
/* Dan Blaax Website Theme - Black, Gold, White */

/* General Styles */
body {
    font-family:
        "Helvetica Neue", "Arial", sans-serif; /* Clean, readable font */
    background-color: #1a1a1a; /* Dark Black Background */
    color: #e1e1e1; /* Light Grey Text - Adjust as needed */
    margin: 0;
    padding: 0;
}

/* Primary Heading */
h1 {
    font-size: 2.4em;
    color: #ffd700; /* Gold */
    margin-bottom: 1em;
}

/* Secondary Heading */
h2 {
    font-size: 2em;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    letter-spacing: 1.5pt;
    font-weight: 200;
}

/* Links */
a {
    color: #ffd700;
    text-decoration: none;
}

a:hover {
    color: #ffc107; /* Slightly lighter gold for hover effect */
    text-decoration: underline;
}

/* Background Elements */
.gold-background {
    background-color: #ffd700;
    padding: 1em;
    border-radius: 5px;
}

.white-box {
    background-color: white;
    border: 1px solid #ccc;
    padding: 1em;
    border-radius: 5px;
}

/* Subtle Gold Accent */
.gold-accent {
    color: #d4af37; /* Slightly darker gold */
}

/* Example: Section Divider */
.section-divider {
    background: #1a1a1a; /* Dark Background for the Divider */
    height: 1px;
    margin: 2em 0;
}

/*  Responsive Adjustments - Optional, but recommended */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
}

.button.primary {
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5pt;
    transition: background-color 0.3s ease;
}

.button.primary:hover {
    text-decoration: none;
    background-color: #ffc107;
}

blockquote p {
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
}

blockquote citation {
    color: #aaa;
}

blockquote {
    max-width: 600px;
    border-left: 4px solid #ffd700;
    margin: 20px 0 80px;
    padding-left: 15px;
}

.photo-gallery {
    display: flex;
}
/* --- MAIN.CSS --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

footer,
section,
article,
aside,
header {
    padding: 8px 16px;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #1a1a1a;
    z-index: 1000;
}

footer {
    display: flex;
    justify-content: space-between;
    font-size: 9pt;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 1pt;
    padding: 16px;
}

#logo {
    font-size: 18pt;
    font-weight: 200;
    letter-spacing: 1.5pt;
    text-transform: uppercase;
    color: #ffd700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.social-media > a {
    margin-right: 15px;
}

#hero {
    background-image: url("../images/gallery/dan-2.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero h1,
#hero p {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px;
    border-radius: 8px;
}

#about-dan {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#about-dan p {
    max-width: 600px;
}

section {
    display: flex;
    justify-content: center;
    text-align: center;
}

form {
    padding: 20px 40px 40px;
    border: solid 1px #ffd700;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
}

section {
    min-height: 100vh;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    padding: 40px 0;
}

.client-logos img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
}
