/* Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fffdf8;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
    text-align: center;
}

/* Header */
header {
    background-color: #5a3e36;
    color: #fff;
    padding: 30px 0;
}

header h1 span {
    color: #f77f00;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #a8c66c;
}

/* Hero */
#hero {
    background: linear-gradient(to right, #f77f00, #a8c66c);
    color: #fff;
    padding: 80px 0;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #fff;
    color: #5a3e36;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #fbe3c1;
}

.btn.secondary {
    background-color: #f77f00;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #d46400;
}

/* Light Sections */
.light-section {
    background-color: #f7f4ed;
}

/* Services */
.service-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.service-list li {
    margin: 10px 0;
}


}

/* Footer */
footer {
    background-color: #5a3e36;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}
     /* Working Hours Box */
.working-hours-box {
    background-color: #f9f4ed;
    border-left: 5px solid #f77f00;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    border-radius: 8px;
    text-align: left;
}

.working-hours-box h3 {
    margin-bottom: 15px;
    color: #5a3e36;
    font-size: 1.2rem;
    text-align: center;
}

.working-hours {
    width: 100%;
    border-collapse: collapse;
}

.working-hours td {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.working-hours tr:last-child td {
    border-bottom: none;
}

.working-hours td:first-child {
    font-weight: bold;
    color: #5a3e36;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 32%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}