@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Forum&display=swap');

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
:root{
	--primary: brown;
	--secondary: #fcc6bb;
	--white: #efefef;
}

body {
	font-family: "Dm sans", sans-serif;
	color: var(--primary);
  background-color: bisque;
}

#main {
	min-height: 700px;
	background-position: bottom center;
	background-size: cover;
}
a {text-decoration:none;
}

/* headerstlyes */

  header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 20px;
       border-bottom: 1px solid brown;
}
.navbar {
  height: 20%;

}
  nav ul {
       display: flex;
       list-style: none;
       gap: 20px;
       padding: 0;
       margin: 0;
}

  nav a {
  text-decoration: none;
  color: brown;
}
.background-image{
 display: flex;
 justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh;
  background-image: url("./homepage.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.6;

}
  .hero {
       padding: 80px 20px;
       text-align: center;
       border-bottom: 1px solid brown;
}
	   
   .hero h1{
		font-size: 40px;
        margin-bottom: 10px;
}

    .hero p {
  max-width: 500px;
  margin: auto;
}


.section h2 {
    text-align: center;
}
/* cta styles */
    .btn {
       display: block;
    margin:auto;
    padding: 12px 16px;
    background-color: brown;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    }

/* Highlightsection */
    .highlight {
       display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
}


      .card {
        border: 0;
     padding: 20px;
        text-align: center;
}

     .card img {
      width: 100%;
       height: 250px;
       object-fit: cover;
       background: beige;
       border-radius: 5px;
}


/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  border-top: 1px solid #ddd;
}

