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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Marcellus', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background: #111;
    padding: 20px 0;
}

.logo {
    color: #f5f5f5;
    font-size: 2rem;
    text-align: center;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #b5a642;
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.btn {
    background: #b5a642;
    color: #1a1a1a;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #d4c35c;
}

/* About Section */
.about {
    padding: 60px 0;
    background: #222;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Collection Section */
.collection {
    padding: 60px 0;
    background: #1a1a1a;
}

.collection h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.product p {
    font-size: 1rem;
}

.product:hover {
    transform: scale(1.05);
}

/* Crystals Section */
.crystals {
    padding: 60px 0;
    background: #222;
}

.crystals h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.crystals p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #1a1a1a;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact button {
    background: #b5a642;
    color: #1a1a1a;
    padding: 10px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #d4c35c;
}

/* Footer Section */
.footer {
    background: #111;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer .social a {
    color: #f5f5f5;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social a:hover {
    color: #b5a642;
}

