/* Color Palette 
   Burgundy: #630d16
   Gold/Brass: #b58d3d
   Dark Charcoal: #1a1a1a
   Off-White: #f4f4f4
*/

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 3px solid #b58d3d;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #b58d3d;
}

/* Hero Section */
.hero {
    width: 100%;
    overflow: hidden;
    line-height: 0; /* Remove gap below image */
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Promotional Content */
.promo-content {
    padding: 60px 0;
    text-align: center;
}

.promo-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #630d16;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #b58d3d;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: left;
}

.text-block p {
    margin-bottom: 20px;
}

/* Button */
.cta-button {
    display: inline-block;
    background-color: #630d16;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #b58d3d;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px 0;
    background: #1a1a1a;
    color: #888;
    font-size: 0.9rem;
    margin-top: 60px;
}