/* style.css */

/* Global Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff; /* White background */
}

a {
    color: #000; /* Black link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #555; /* Slightly lighter on hover */
    text-decoration: underline;
}

/* Header and Navigation */
.header-container {
    background-color: #000; /* Black header background */
    color: #fff;
    padding: 20px 0;
    border-bottom: 5px solid #fff; /* White line for separation */
}

header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 0;
    display: block;
}

nav ul li a:hover {
    color: #ddd;
    text-decoration: none;
    border-bottom: 2px solid #fff;
}

/* Main Content Area */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 60vh; /* Ensures a minimum height for the content area */
}

h1, h2 {
    color: #000;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

h1 {
    font-size: 2.2em;
}

h2 {
    font-size: 1.8em;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.highlight-box {
    border: 2px solid #000;
    padding: 20px;
    margin: 25px 0;
    background-color: #f7f7f7;
}

/* Footer */
.footer-container {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 5px solid #fff;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav a {
    color: #fff;
    margin: 0 10px;
    font-size: 0.9em;
}

.copyright {
    margin-top: 10px;
    font-size: 0.8em;
    opacity: 0.8;
}

/* Forms */
form {
    max-width: 600px;
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #000;
    background-color: #f7f7f7;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group .name-fields, .form-group .address-fields {
    display: flex;
    gap: 10px;
}

.form-group .name-fields input, .form-group .address-fields input {
    flex-grow: 1;
}

input[type="submit"] {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #333;
}

/* Utility for required fields */
.required-label::after {
    content: " (required)";
    color: #555;
    font-weight: normal;
    font-size: 0.9em;
}

/* Specific Page Styling */
/* Social Media Page - Image Placeholders */
.social-item {
    margin-bottom: 30px;
}
.social-item p:first-child {
    font-weight: bold;
}
.image-placeholder {
    width: 100%;
    height: 150px;
    background-color: #ccc;
    color: #000;
    text-align: center;
    line-height: 150px;
    margin: 10px 0;
    font-style: italic;
    border: 1px dashed #000;
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 20px;
}
.faq-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

/* Success Message Styling */
.success-message {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    padding: 15px;
    margin-bottom: 20px;
    font-weight: bold;
}
