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

/* Body */
body {
    font-family: 'Lucida', serif;
    line-height: 1.6;
    background-color: #9d978b;
    color: #2b2b2b;
}

/* Header */
header {
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

header img {
    width: 75%;
    border-radius: 5%;
}

/* Navigation */
nav {
    background: #3b2f2f;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    padding: 1rem;
    display: block;
}

nav ul li a:hover {
    font-size: 2rem;
    background: #5a3e36;
}

/* Hero */
.servies {
    background: url('Screenshot\ 2026-03-21\ at\ 12.21.25\ PM.png') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.services h2{ 
    font-size: 3.5rem;
}

.services p {
    font-size: 2rem;
}

#about {
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background: #8b5e3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 2rem;
}

.btn:hover {
    background: #a06b45;
}

/* Sections */
section {
    padding: 3rem 2rem;
    text-align: center;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h3, h2 {
    font-size: 2rem;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 10px;
    padding: 10px;
}

.gallery img {
    width: 60%;
    height: 300px;
    object-fit: cover; /* keeps images proportional & cropped nicely */
    cursor: pointer;
    border-radius: 15px;
}

.gallery img:hover {
   transform:scale(2);
   transition: transform .4s ease;
}

.nav-button {
    font-size: 1.5rem;
    justify-content: center;
    display: flex;
}

#contact  img {
    padding: 10px;
}

/* Footer */
footer {
    font-size: larger;
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 1rem;
}