@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
@import url("https://cdn-uicons.flaticon.com/4.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css");
@import url('https://cdn-uicons.flaticon.com/4.0.0/uicons-bold-rounded/css/uicons-bold-rounded.css');
/* @import url('https://cdn-uicons.flaticon.com/4.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css'); */
* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background: var(--clr-white);
  color: var(--clr-text-body);
  -webkit-font-smoothing: antialiased;
}

body,
input,
select,
textarea,
button {
  color: var(--clr-text-body);
  font-size: var(--text-base);
  font-family: "Sora", sans-serif;
}

button {
  cursor: pointer;
  border: none;
}

@font-face {
  font-family: "LogoFont";
  src: url("../fonts/Negan\ DEMO.otf");
}

/* 




*/

/* START OF VARIABLES DECLARATION */
:root {
  /* Text */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 5.75rem;
  --text-8xl: 7.95rem;

  /* Colours */
  --clr-main-50: oklch(98% 0.016 73.684);
  --clr-main-100: oklch(95.4% 0.038 75.164);
  --clr-main-200: oklch(90.1% 0.076 70.697);
  --clr-main-300: oklch(83.7% 0.128 66.29);
  --clr-main-400: oklch(75% 0.183 55.934);
  --clr-main-500: oklch(70.5% 0.213 47.604);
  --clr-main-600: oklch(64.6% 0.222 41.116);
  --clr-main-700: oklch(55.3% 0.195 38.402);
  --clr-main-800: oklch(47% 0.157 37.304);
  --clr-main-900: oklch(40.8% 0.123 38.172);
  --clr-main-950: oklch(26.6% 0.079 36.259);
  --clr-main-pink: rgb(236, 133, 150);

  --clr-gray-50: oklch(98.5% 0.002 247.839);
  --clr-gray-100: oklch(96.7% 0.003 264.542);
  --clr-gray-200: oklch(92.8% 0.006 264.531);
  --clr-gray-300: oklch(87.2% 0.01 258.338);
  --clr-gray-400: oklch(70.7% 0.022 261.325);
  --clr-gray-500: oklch(55.1% 0.027 264.364);
  --clr-gray-600: oklch(44.6% 0.03 256.802);
  --clr-gray-700: oklch(37.3% 0.034 259.733);
  --clr-gray-800: oklch(27.8% 0.033 256.848);
  --clr-gray-900: oklch(21% 0.034 264.665);
  --clr-gray-950: oklch(13% 0.028 261.692);

  --clr-text-light: var(--clr-gray-400);
  --clr-text-body: var(--clr-gray-500);
  --clr-text-heading: var(--clr-gray-950);

  --clr-bg: #fff8f3;
  --clr-white: #fff;
  --clr-black: #000;
  --clr-green: #04750d;

  /* Others */
  --transition: all 0.2s ease-in-out;
  --border-radius: 15px;
  --border-radius-outer: 25px;
  --box-shadow-light: 0 -10px 10px -10px rgba(0, 0, 0, 0.105);

  --box-shadow:
    0px 16px 32px -4px rgba(12, 12, 13, 0.185),
    0px 4px 4px -4px rgba(12, 12, 13, 0.233);
  --circle-shadow: 3px 3px 10px 3px #63636321;

  /*  */
  --header-height: 70px;
}

.container {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  /* border: 2px solid red; */
  padding: 10px 20px;
}

.navlinks{
  color: var(--clr-gray-600);
  display: flex;
  align-items: center;
  /* border: 2px solid red ; */
  margin: 30px 0px;
}

.navlinks a{
  color: var(--clr-gray-600);
 font-size: var(--text-base);
   font-weight: 600;
}
.navlinks i{
  color: var(--clr-gray-600);
  padding: 5px ;
   /* font-weight: 600; */
}


/* Sidebar */
.sidebar {
  width: 260px;
  background: var(--clr-main-pink);
  padding: 30px 20px;
  /* border-right: 1px solid #eee; */
  color: var(--clr-white);
  flex-shrink: 0;
  margin: 0px 20px;
  height: auto;
  border-radius: 15px;
}

/* profileDisplayContainer */

.profileDisplayContainer{
  display: flex;
  margin-top: 40px;
}


/* Card */
.profileCard {
  width: 100%;
  max-width: 900px;
  background:var(--clr-main-pink);
  color: var(--clr-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}


/*  */

.sidebar h2 {
  margin-bottom: 30px;
  font-weight: 600;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.sidebar li:hover {
  background: var(--clr-white);
   color: var(--clr-black);
}

.sidebar li.active {
  background: var(--clr-white);
  color: var(--clr-black);
}

/* Profile Header */
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.profile-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--clr-white);
}

.profile-info h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.profile-info p {
  color: #777;
  margin-bottom: 5px;
}

.profile-info .email {
  font-size: 14px;
  color: #999;
}

/* Overview Grid */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.overview-item {
  background: #f8f9fb;
  color: var(--clr-black);
  padding: 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.overview-item.full {
  grid-column: span 2;
}

.label {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
}

.value {
  font-weight: 500;
  font-size: 15px;
}

/* Responsive */
/* @media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-item.full {
    grid-column: span 1;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }
} */



@media (max-width: 1300px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 1200px) {
 
}
@media (max-width: 992px) {
 .profileDisplayContainer{
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  row-gap: 30px;
}

.sidebar{
  width: 100%;
  margin: 0px 0px;
}
}
@media (max-width: 768px) {
 
}

@media (max-width: 628px) {
 
}


@media (max-width: 576px) {
  .container {
    width: 100%;
  }
}

@media (max-width: 480px) {
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
}

@media (max-width: 320px) {
 .overview-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
}