@charset "UTF-8";

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
    margin: 0;
    padding: 0;
    background-color: #FFF2D0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

#wrapper {
    max-width: 1000px;
    margin: 20px auto;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

header {
    background: url("../images/image1.jpg") no-repeat center center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: left;

    padding: 30px 20px;
    border-radius: 8px;
    color: white;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 20px;       
}

.header-logo {
    width: 70px;   
    height: auto;
}


#logo {
    width: 80px;
    height: auto;
}

header h1 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

nav li {
    border-bottom: 1px solid #ddd;
}

nav a {
    display: block;
    padding: 14px 60px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background 0.3s ease;
}

nav a:hover {
    background: #6200c9;
    color: #fff;
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

#content h2 {
    color: #6200c9;
    margin-top: 0;
}

#content img {
    width: 100%;
    border-radius: 8px;
}

#content h1 {
    color: #c0906b;
}

#content .sample-img {
    width: 200px;
    display: block;
    margin: 15px auto;
}


h1, h2, h3 {
    color: #6200c9;
    margin-bottom: 14px;
}

footer {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
    color: #555;
}

footer a {
    color: #6200c9;
    font-weight: bold;
}

footer a:hover {
    color: #fbc013;
    text-decoration: underline;
}

.social-icon {
    width: 32px;
    height: auto;
    margin: 10px;
}

    nav ul {
        flex-direction: row;
        justify-content: space-around;
    }

    nav li {
        border-bottom: none;
        padding: 0 10px;
    }

 	h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

@media screen and (max-width: 700px) {
    header h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    #content {
        width: 100%;
    }
	

.sample-img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: block;
    margin: 20px auto;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-wrapper {
    display: flex;
    flex-direction: column; 
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.contact-right input[type="text"],
.contact-right input[type="email"],
.contact-right textarea {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
}

iframe {
    width: 100%;
}

@media screen and (min-width: 900px) {
    .contact-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact-left,
    .contact-right {
        width: 48%;
    }
}

.about-img {
    width: 250px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    border: 1px solid #e0d2c5;
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #f6efe8;
    font-weight: 600;
}
