/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

/* Navigation */
header {
    background: #0b0f1a; /* deep luxury navy */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 70px;
    width: auto;
}

.brand-text {
    color: #d4af37; /* luxury gold */
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
}

.brand-text span {
    font-weight: 400;
    margin-left: 4px;
}


.logo span { color: #c5a059; }
nav ul li a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d4af37;
}


nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 25px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 500; }
.hero {
    padding-top: 100px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.btn {
    display: inline-block;
    background: #c5a059;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

/* Grid System */
.bg-light { background: #f9f9f9; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.promise {
    border-top: 1px solid #eee;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 40px 0;
}