* { box-sizing: border-box;}
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f0;
    color: #5a5a3e;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ece5d8;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #5a5a3e;
    font-weight: bold;
}

#nav-menu #menu{
	cursor: pointer;
	padding: .9em 1.5em;
	
}

#menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
	font-size: 18pt;

}

#menu div {
    width: 30px;
    height: 3px;
    background-color: #5a5a3e;
    margin: 5px;
}

.hero {
    background: url('../images/hero.jpg') no-repeat center/cover;
    text-align: center;
    color: white;
    padding: 150px 20px;
}

.hero h2 {
    font-size: 3em;
    margin: 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.about-text {
    text-align: center;
    padding: 0 20px 20px 20px;
	font-size: 13pt;
}

.about-text h2 {
	font-family: "farmhand-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 36pt;
}

.about-image-left img,
.about-image-right img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.farm-images {
    text-align: center;
    margin: 40px 0 0 0;
}

.farm-images img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #ece5d8;
}

h1{
	text-align: center;
	font-family: 'Georgia', serif;
	color: #5a5a3e;
}

.card{
	background-color: #ece5d8;
	box-shadow: 0 8px 30px #d1c7a1;
	margin: 20px;
	padding: 10px;
	text-align: center;
	border-radius: 20px;
}

.card-img-top{
	max-width: 100px;
	width: 100px;
	height: 100px;
	margin: auto;
	border-radius: 50%;
	margin-top: 10px;
}

.active {
	opacity: 0.5;
	transition: all .3s;
}

.center {
	opacity: 1;
}

.center .card-img-top {
	width: 100px;
	height: 100px;
}

.center h3, .center h2, .center p {
	font-size: 120%;
	font-family: 'Georgia', serif;
	color: #5a5a3e;
	
}

.owl-prev:hover, .owl-next:hover{
	background-color: transparent !important;
	color: saddlebrown!important;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #ece5d8;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
		padding: 15px 50px;

    }
    
    nav ul.show {
        display: flex;
    }
    
    #menu {
        display: flex;
    }
    
	.about-container {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .about-image-left img,
    .about-image-right img {
        max-width: 180px;
    }

    .about-text {
        max-width: 90%;
        margin: 20px auto;
    }

    .about-image-left, .about-image-right {
        display: flex;
        justify-content: center;
    }
	
	#nav-menu #menu{
		display: block;
	}
	
	#nav-menu ul{
		display: none;
		text-align: left;
	}
	
	#nav-menu ul li{
		display: block;
		font-size: 13pt;
	}
	
	#nav-menu ul li a{
		margin-left: -21px;
	}
}
