/*
Theme Name: MineSite Final
Theme URI: https://example.com/minesite-final
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme for MineSite Furniture. Lightweight, flexible, and optimized for performance.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minesite-final
Tags: custom-theme, responsive, modern, clean

*/

/* =============== RESET & BASE STYLES =============== */

/* Reset some default browser styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Links */
a {
  color: #0073aa;
  text-decoration: none;
}
a:hover {
  color: #005177;
  text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
}

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

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

.text-center {
  text-align: center;
}
