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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background-color: #000;
    border-bottom: 3px solid #ccc;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-image: url('images/dark-tile.png');
    background-repeat: repeat;
    background-size: 12.5%;
    background-color: #000;
}

.logo-section .logo-image {
    max-width: 250px;
    height: auto;
    display: block;
}

.contact-section {
    text-align: right;
    color: #fff;
}

.contact-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.email {
    font-size: 14px;
}

/* Hero */
.hero-image {
    width: 100%;
    overflow: hidden;
    border: 15px solid #333;
    border-top: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.main-navigation {
    background: linear-gradient(to bottom, #4a4a4a 0%, #1a1a1a 100%);
    border-bottom: 2px solid #666;
}

.main-navigation > ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.main-navigation li {
    flex: 1;
    text-align: center;
    border-right: 1px solid #666;
}

.main-navigation li:last-child {
    border-right: none;
}

.main-navigation a {
    display: block;
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.main-navigation a:hover,
.main-navigation a.active {
    background-color: #666;
}

/* Content Wrapper */
.content-wrapper {
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 30px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar-box {
    background-color: #000;
    overflow: hidden;
}

.sidebar-box img {
    width: 100%;
    display: block;
}

/* Main Content */
.main-content {
    flex: 1;
}

.main-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.main-content h2 {
    margin: 30px 0 15px;
}

.main-content p {
    margin-bottom: 15px;
}

/* ? FIXED BULLET LISTS */
.main-content ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.5em;
    margin: 1em 0;
}

.main-content li {
    margin: 0.3em 0;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Forms */
.contact-form {
    max-width: 800px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: bold;
}

.form-field input,
.form-field textarea {
    padding: 10px;
    border: 1px solid #ccc;
}

/* Responsive */
@media (max-width: 768px) {

    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .main-navigation > ul {
        flex-wrap: wrap;
    }

    .main-navigation li {
        flex: 0 0 50%;
        border-bottom: 1px solid #666;
    }

    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

}
