* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", serif;
}

body {
    background-color: #f6efe7;
    color: #3b2f2f;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.header {
    background: #e8dccb;
    text-align: center;
    padding: 2rem 1rem;
}

.header h1 {
    font-size: 2.5rem;
}

.subtitle {
    font-style: italic;
    margin-top: 0.5rem;
}

/* Hero */
.hero {
    background: url("images/hero.jpg") center/cover no-repeat;
    padding: 5rem 1rem;
    color: white;
    text-align: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 2rem;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background: #d97b32;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
}

/* Services */
.services {
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    margin: 1rem 0 0.5rem;
}

.insta {
	padding : 2.5rem;
	width : 100%;
	display : flex;
	justify-content : center;
}

/* About */
.about {
    background: #efe5d8;
    padding: 3rem 1rem;
    text-align: center;
}

/* Contact */
.contact {
    padding: 4rem 1rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 0.7rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact button {
    background: #d97b32;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 30px;
    cursor: pointer;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background: #3b2f2f;
    color: white;
    text-align: center;
    padding: 1rem;
}