:root {
    --primary-peach: #E7B1A5;
    --primary-white: #FFFFFF;
    --secondary-black: #000000;
    --secondary-gold: #D4AF37;
    --bg-light: #FAF7F6; /* Soft matching neutral */
    --text-dark: #333333;
}


h1, h2, h3, .brand-font {
    font-family: 'EB Garamond', Garamond, Georgia, serif;
    font-weight: 600;
}

/* Header Style */
.page-header {
    background-color: var(--primary-peach);
    border-bottom: 1px solid rgba(231, 177, 165, 0.3);
    padding: 60px 0;
}

/* Buttons styling */
.btn-custom {
    background-color: var(--secondary-black);
    color: var(--primary-white);
    border: 1px solid var(--secondary-black);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--primary-peach);
    border-color: var(--primary-peach);
    color: var(--secondary-black);
}

/* Cards and Info Blocks */
.contact-card {
    background: var(--primary-white);
    border: 1px solid rgba(231, 177, 165, 0.4);
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 177, 165, 0.15);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid var(--primary-peach);
}

.icon-box i {
    font-size: 1.3rem;
    color: var(--text-dark);
}

/* Form Inputs focus */
.form-control:focus {
    border-color: var(--primary-peach);
    box-shadow: 0 0 0 0.25rem rgba(231, 177, 165, 0.25);
}

/* Social Icons */
.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-black);
    color: var(--primary-white);
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-peach);
    color: var(--secondary-black);
    transform: scale(1.1);
}

/* Map styling */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(231, 177, 165, 0.4);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}