/* style.css */

/*fonts*/


/*base styles*/
body {
  background-color: #fdf6ec;
  color: #5E503F;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/*Layout for sections*/
section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
}

/*nav layout*/
nav {
  nav {
  background-color: var(--cloud);
  padding: 1rem;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--ginger);
  text-decoration: underline;
}

}
/*header layout*/
header {
  background-color: #a3b18a;
  font-family: 'Playfair Display', serif;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#title {
  font-family:"comicCat";
}

#logo {
  border-radius:100%;
  width: 200px;
  height:200px;
}

/* Navigation links */
nav {
  text-align: center;
  margin-bottom: 20px;
}

nav a {
  text-decoration: none;
  color: #fdf6ec;
  font-weight: bold;
  margin: 0 10px;
}

nav a:hover {
  text-decoration: underline;
}

* Set height of body and the document to 100% to enable "full page tabs" */
body, html {
  height: 100%;
  margin: 0;
  font-family: Arial;
}

/* Style tab links */
.tablink {
  background-color: #A3B18A;
  color: #6C7D47;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 25%;
}
.tablink:hover {
  background-color:#A3B18A;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: #A3B18A;
  display: none;
  padding: 100px 20px;
  height: 100%;
}
#About {background-color: #fdf6ec;}
#Projecs {background-color: #fdf6ec;}
#Co-creations {background-color: #fdf6ec;}
#Contact {background-color: #fdf6ec;}


/* Footer */
footer {
  text-align: center;
  color: #fdf6ec;
  font-size: 0.9em;
  margin-top: 40px;
}
