/* Global Reset & Variables */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #AA8C2C;
    --bg-dark: #1a1a1a;
    --bg-light: #f9f9f9;
    --text-dark: #333;
    --text-light: #fff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Header & Navigation */
header {
    background-color: var(--bg-dark);
    color: var(--primary-gold);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 2px;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--text-light);
}

/* Common Layout Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 10px auto 0;
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection-card {
    background: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.collection-info {
    padding: 20px;
    text-align: center;
}

.collection-info h3 {
    font-family: var(--font-heading);
    color: var(--bg-dark);
    margin-bottom: 10px;
}

/* Contact Form Styling */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    color: var(--bg-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-main);
}

/* Checkbox Consent Styling */
.consent-box {
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    background: #f8f8f8;
    padding: 10px;
    border-left: 3px solid var(--primary-gold);
}

.consent-box input {
    margin-top: 5px;
    transform: scale(1.2);
}

.consent-box a {
    color: var(--dark-gold);
    text-decoration: underline;
}

/* Disabled button style */
button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #444;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}