@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #6F4E37;   
    --secondary-color: #2E3A59; 
    --accent-color: #FF7F50;    
    --light-color: #F8F5F2;
    --dark-color: #1A1A1A;
}

.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #2E3A59;
    height: 100vh;
    min-height: 600px;
    padding-top: 80px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary {
    background-color: #293146;
    border-color: #293146;
}

.btn-primary:hover {
    background-color: #e67347;
    border-color: #e67347;
}


body {
    font-family: 'Poiret One', sans-serif;
    color: rgb(12, 12, 12);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poiret One', sans-serif;
    font-weight: 700;
}

.section-title {
    color:#2E3A59;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color:#F8F5F2;
}
.btn-primary {
    background-color: #2E3A59;
    border-color: #2E3A59;
}

.btn-primary:hover {
    background-color: #e67347;
    border-color: #e67347;
}

.btn-outline-light:hover {
    color: var(--secondary-color);
}
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card .card-title {
    color: var(--primary-color);
}

.service-list {
    list-style-type: none;
    padding-left: 0;
}

.service-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}
.hours-list {
    list-style-type: none;
    padding-left: 0;
}
footer {
    background-color: white;
    color: white;
}


