:root {
    --brand-red: #c5381d;
    --cream: #F9F7F2;
    --charcoal: #333333;
    --soft-white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
}

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

/* --- Navigation & Centered Logo --- */
nav {
    display: flex;
    justify-content: center; /* This centers the logo horizontally */
    align-items: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.logo img {
    height: 200px; /* Set your desired logo height */
    width: auto;
    display: block;
    margin-bottom: -45px;
    margin-top: -45px;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--soft-white);
    padding: 2rem 0 6rem 0;
    text-align: center; /* Centers the text content in the hero */
}

.hero-content {
    max-width: 100%; 
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0 auto 1.5rem auto; /* margin auto centers block elements */
    max-width: 850px;
}

.italic {
    font-style: italic;
    font-weight: 400;
}

.hero-content > p {
    font-size: 1.1rem;
    color: #666;
    margin: 0 auto 3rem auto; /* centers the paragraph */
    max-width: 750px;
}

/* --- Features Grid (The Cards) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left; /* Keeps text inside cards left-aligned for readability */
}



.card {
    background: var(--cream);
    padding: 2.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--brand-red);
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card h3 i {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* --- Button --- */
.btn {
    display: inline-block;
    background-color: var(--brand-red);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(125, 142, 126, 0.3);
}

/* --- Contact Section --- */
.contact {
    padding: 6rem 0;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-links {
    margin-top: 2rem;
}

.contact-item {
    display: block;
    margin: 10px 0;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--brand-red);
    font-weight: 500;
}

footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.8rem;
    color: #999;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero { padding-top: 1rem; }
}