/* ============================= */
/* GENERAL STYLES */
/* ============================= */


body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #ffeaea;
    color: #4a2c2a;

}

#wrapper {
    max-width: 1800px;
    margin: auto;
}

main {
    max-width: 1200px;
    margin: 0 auto;   
    padding: 20px;  
	font-size: 1.1rem;   
}

/* ============================= */
/* HEADER */
/* ============================= */

header {
    text-align: center;
    padding: 20px;
    background-color: #f9cdd4;
	font-family: Brush Script MT;
}

.logo {
    width: 400px;
  justify-content: center;
  margin-top:10px;
}

.tagline {
    font-style: italic;
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

nav {
    background-color: #b25b6e;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Intermediate Technique: Flexbox */
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
}

/* Pseudo-class style */
nav a:hover {
    background-color: #5e3c3c;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #fbeaea;
}

.button {
    background-color: #ffeaea;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; 
}

.button:hover {
    background-color: #5e3c3c;
}

/* ============================= */
/* LAYOUT */
/* ============================= */

.content-area {
    display: grid; 
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding: 20px;
}

aside {
    background-color: #f7d9d9;
    padding: 15px;
}

.main-info h2 {
    border-bottom: 2px solid #8b5e5e;
    padding-bottom: 5px;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-section {
    display: flex;
    gap: 40px;
    padding: 40px;
	
	
}

.about-text {
    flex: 1;
}

.main-image {
	border: 3px solid #8b5e5e;
	padding: 10px;
	width: 400px;
}
.center {
	 text-align: center;
}

/* ============================= */
/* GALLERY */
/* ============================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border: 3px solid #8b5e5e;
    padding: 5px;
}



/* ============================= */
/* SERVICES PAGE */
/* ============================= */

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-box {
    background-color: #f9cdd4;
    padding: 20px;
    border: 2px solid #8b5e5e;
    border-radius: 8px;
}

.service-box h3 {
    text-align: center;
    border-bottom: 2px solid #8b5e5e;
    padding-bottom: 10px;
}

.service-box ul {
    padding-left: 20px;
}
/* ============================= */
/* TABLE */
/* ============================= */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
	
}

th, td {
    border: 1px solid #8b5e5e;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f7d9d9;
}

/* ============================= */
/* CONTACT FORM */
/* ============================= */

form {
    max-width: 500px;      
    margin: 40px auto;     
    border: 2px solid #8b5e5e;
    padding: 10px;
    background-color: #ffeaea;
}


input, textarea {
    width: 100%;
    box-sizing: border-box;
}
/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    text-align: center;
    padding: 20px;
    background-color: #b25b6e;
    color: white;
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* small layout */
@media (max-width: 768px) {

    /* Navigation becomes vertical */
    nav ul {
       
        align-items: center;
    }

    nav li {
        margin: 5px 0;
    }

    /* Logo scales smaller */
    .logo {
        width: 250px;
    }

    /* About section stacks instead of side-by-side */
    .about-section {
        flex-direction: column;
        align-items: center;
       
    }

    .main-image {
        width: 90%;
    }

    /* Gallery becomes 2 images per row */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services stack vertically */
    .services-container {
        grid-template-columns: 1fr;
    }

    /* Reduce main padding */
    main {
        padding: 15px;
    }

    /* Form width adjusts for small screens */
    form {
        width: 90%;
    }

}

	/* MEDIUM LAYOUT */
@media (min-width: 600px) {


  