/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo-img {
    width: 100%;
    max-width: 550px;
    height: auto;
}
/* BODY */
body {
	font-family: 'Didact Gothic', sans-serif;
	line-height: 1.6;
	background: #E6D3B3;
	color: #5C4033;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
#header-wrapper {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/header-bg.jpg');
    background-size: cover;
    background-position: center;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

#logo h1 a {
    color: white;
    text-decoration: none;
    font-size: 28px;
}

/* MENU */
#menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

#menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

#menu a:hover {
    color: #E6D3B3;
}

/* BANNER */
#banner {
    text-align: center;
    margin-top: 60px;
}

.title h2 {
	font-size: 40px;
	margin-bottom: 10px;
}

.byline {
    font-size: 18px;
    opacity: 0.9;
}

/* THREE COLUMN */
#three-column {
    margin: 60px auto;
    text-align: center;
}

#three-column .title {
    margin-bottom: 40px;
}

.boxA, .boxB, .boxC {
    background: #E6D3B3;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* FLEX GRID */
#three-column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#three-column .title {
    width: 100%;
}

/* BUTTONS */
.button {
    display: inline-block;
    padding: 10px 20px;
    background: #5C4033;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.button:hover {
    background: #5C4033;
}

.button-alt {
    background: #5C4033;
}

.button-alt:hover {
    background: #cc2f33;
}

/* WELCOME SECTION */
#welcome {
    background: #F5F5DC;
    padding: 60px 0;
    text-align: center;
}

#welcome .title {
    margin-bottom: 20px;
}

/* ACTIONS */
.actions {
    list-style: none;
    margin-top: 20px;
}

/* FOOTER */
#copyright {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background: #5C4033;
    color: white;
}

#copyright a {
    color: #ffd700;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    #header {
        flex-direction: column;
        gap: 15px;
    }

    #menu ul {
        flex-direction: column;
        align-items: center;
    }

    #three-column {
        flex-direction: column;
    }

    .title h2 {
        font-size: 28px;
    }

    .byline {
        font-size: 16px;
    }
@media (max-width: 768px) {
    .logo-img {
        max-width: 150px;
    }
}
}

