@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  background-color: var(--base-color);
  margin: 0;
  padding: 0;
  transition: all 0.3s ease 0s;
}
* {
  font-family: "Inter", sans-serif;
}
#logo {
  width: 64px;
}
img {
  width: 100%;
  height: auto;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
}
header {
  background-color: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
}
nav a {
  margin-right: 20px;
  text-decoration: none;
  color: var(--text-color);
}
.search-section {
  margin-bottom: 20px;
  margin-top: 20px;
  padding-right: 0px;
  align-items: flex-start;
}
.search-section input {
  width: 40%;
  padding: 10px;
  font-size: 16px;
  border-radius: 30px;
  background-color: var(--search-color);
}
.designer-list {
  margin-bottom: 20px;
  margin-top: -190px;
  font-size: 14px;
}
.designer-item {
  display: inline-block;
  text-align: center;
  margin-right: 20px;
}
.designer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 5px;
}
.content {
  display: flex;
  gap: 20px;
}
.discover-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    align-items: start; 
}

.discover-item {
  background-color: var(--base-color);
  padding: 10px;
  height: 350px;
  width: 416px;
}
.discover-photo {
  height: 280px;
  margin-bottom: 10px;
}
.stats {
  font-size: 12px;
  color: gray;
  gap: 5px;
}
.button-group {
  padding-top: 20px;
}
.button-group button{
  background-color: var(--button-color);
  color: var(--tag-color);
  border-color: var(--tag-color);
}
#discover-heading {
  padding-top: 50px;
  color: #858585;
  font-size: 20px;
}
.login_button {
  padding: 9px 25px;
  background-color: var(--accent-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
.login_button:hover {
  background-color: rgb(120, 146, 242, 0.8);
}
li,a,button {
  font-family: "Inter", sans-serif;
  color: var(--base-color);
  text-decoration: none;
}
.nav_links {
  list-style: none;
}
.nav_links li {
  display: inline-block;
  padding: 0px 20px;
}
.nav_links li a {
  transition: all 0.3s ease 0s;
}
.nav_links li a:hover {
  color: rgb(120, 146, 242);
}
#login {
  padding: 9px 25px;
  background-color: rgba(15, 98, 254, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
button:hover {
  background-color: #0F62FE;
  color: white;
  border-color: #ffffff;
}
h1 {
  font-size: 3.45rem;
  margin: 0;
  padding-top: 50px;
  color: var(--header-text);
}
.post-author {
  font-size: 20px;
  margin: 0; 
  padding: 0;
  display: block; 
}
.post-bio {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 5px; 
}
.post-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.post-content {
  flex: 1; 
}
.post-title {
  font-size: 26px;
  margin: 0;
  padding: 0;
}
.post-description {
  width: 600px;
  margin-top: 10px;
}
.stats {
  align-items: center;
  gap: 10px;
}
.stats img {
  width: 20px;
  height: auto;
}
.hero_sub {
  font-size: 20px;
}
.tags_active {
  border: 1.5px solid black;
  background-color: white;
  color: #eb1eda;
  border-color: #eb1eda;
  padding: 4px 16px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 10px;
  margin-right: 8px;
}
.tags_inactive {
  border: 1.5px solid black;
  background-color: white;
  color: #000000;
  border-color: #000000;
  padding: 3px 16px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 10px;
  margin-right: 8px;
}
input::placeholder {
  font-size: 14px;
  color: gray;
}
.flex {
  display: flex;
}
#feature-caption {
  flex: 1;
  padding: 0px;
}
#feature-image {
  max-width: 477px;
  position: relative;
  left: -100px;
}
p {
    line-height: 30px;
    color: var(--paragraph-main)
}
h4 {
  color: var(--header-text);
  margin: 0;
}
.active {
    font-weight: bold;
    color: rgba(170, 189, 255, 0.8);
}
.upload-container {
    border: .5px solid;
    border-color: var(--tag-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    width: 1188px;
    text-align: center;
    margin: auto;
}
.upload-container h3, label {
  color: var(--header-text);
}
.upload-box {
    padding: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    margin: auto;    
}
.upload-box button{
  width: 94px;
  height: 27px;
  color: var(--black-color); 
}
.upload-box:hover {
    border-color: var(--accent-color);
    border-radius: 10px;
}
.file-input {
    display: none;
}
.input-field {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.upload-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px;
    width: 20%;
    cursor: pointer;
    border-radius: 5px;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
}
.upload-btn:hover {
    background-color: var(--secondary-accent);
}
.stats img {
  width: 22px;
  height: 19px;
  margin-left: 5px;
  vertical-align: middle;
  display: inline;
  }
.communities-photo{
  display: inline-block;
  text-align: center;
  margin-right: 0px;
}
.communities-photo img{
  width: 80%;
}
h2 {
  color: var(--header-text);
}
:root{
  --base-color: #fff;
  --text-color: #fff;
  --secondary-text: #21272A;
  --accent-color: #007bff;
  --secondary-accent: rgb(120, 146, 242, 0.8);
  --header-text: #000;
  --paragraph-main: #21272A;
  --button-color: #fff;
  --tag-color: #000;
  --search-color: #fff;
  --black-color: #000;
}
.darkmode {
  --base-color: #1A1A1A;
  --text-color: #d9d9d9;
  --secondary-text: #21272A;
  --accent-color: #007bff;
  --secondary-accent: rgb(120, 146, 242, 0.8);
  --header-text: #fff;
  --paragraph-main: #BCBCBC;
  --button-color: #1A1A1A;
  --tag-color: #727c86;
  --search-color: #1E1E1E;
  --black-color: #101010;
}
#theme-switch {
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--base-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  right: 20px
}
#theme-switch svg{
  fill: var(--paragraph-main);
}
#theme-switch svg:last-child{
  display: none;
}
.darkmode #theme-switch svg:first-child{
  display: none;
}
.darkmode #theme-switch svg:last-child{
  display: block;
}
#feature-image {
    margin-top: -200px; 
}
  .post-section {
    display: flex;
    align-items: center; 
    gap: 20px;
}
.post-section img {
    max-width: 45%; 
    height: auto;
}
.post-content {
    flex: 1; 
}
.icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    padding-top: 20px ;
}
.icon img {
  width: 40px; 
  height: 40px;
}
.icon p {
  margin: 0; 
  font-size: 14px;
}
.stats {
  display: flex;
  align-items: center;
  gap: 8px; 
}
.stats img {
  width: 16px; 
  height: auto;
}
.communities-photo {
  display: flex;
  align-items: center;
}
.group-photo {
  display: flex;
  position: relative;
}
.group-photo a {
  margin-left: -15px; 
}
.group-photo a:first-child {
  margin-left: 0; 
}
.group-photo img {
  width: 50px;
  height: 50px;
  border-radius: 50%; 
  border: 2px solid white; 
}
.signup-text {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin-right: 10px; 
  font-weight: 500;
}
.signup-text:hover {
  text-decoration: underline;
}
.profile_bio {
  padding-top: 40px;
  display: flex;
  align-items: center; 
  gap: 60px;
}
.profile-picture img {
  max-width: 184px; 
  height: auto;
}
.profile {
  display: flex;
}
h3 {
  color: var(--header-text);
}
.post-bio {
  padding-bottom: 280px;
  padding-left: 40px;
}



@media (max-width: 1050px) {
  #feature-image {
    display: none; 
  }
}
@media screen and (max-width: 1024px) {
  .discover-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .discover-section {
    grid-template-columns: repeat(1, 1fr);
  }
}






