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

body {
    font-family: 'Times New Roman', Times, serif; /* Classic feel */
    background-color: #fdfaf6; /* Soft cream */
    color: #333;
    line-height: 1.6;
}

/* --- Navigation --- */
header {
    background-color: #1a1a1a; /* Deep Charcoal */
    color: #d4af37; /* Heritage Gold */
    padding: 1rem 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

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

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg1.jpeg?v=1.1'); /* We can add an image later */
    background-size: cover;
    background-position: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* --- Action Buttons --- */
.action-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn.call {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn.text {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* --- Category Section --- */
.shop-categories {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.shop-categories h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.category-grid {
    display: grid;
    /* This creates 4 columns on desktop, 2 on tablet, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-decoration: none;
    color: inherit;
    background: #fdfaf6;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    overflow: hidden;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #d4af37; /* Our Gold color */
}

.category-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0; /* Placeholder color until you upload images */
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes sure photos don't look squished */
}

.category-card h3 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.category-card p {
    font-size: 0.9rem;
    color: #777;
    padding-bottom: 20px;
}


/* --- Contact Form --- */
#contact-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
}

#contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    color: #d4af37;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    color: #777;
    font-size: 0.8rem;
    margin-top: 50px;
}
