:root {
    --primary-font-color: #ffffff;
    --transparent-black: rgba(0, 0, 0, 0.9);
    --transparent-gray-1: rgba(59, 59, 59, 0.9);
    --transparent-gray-2: rgba(37, 37, 37, 0.9);
    --card-bg-color: #111;
}

html, body {
  height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background-color: black;
    color: var(--primary-font-color);
}

.inkspace-header {
    border-bottom: 1px solid var(--transparent-gray-2);
    background-color: var(--transparent-black);
    padding: 18px;

}

.inkspace-logo {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.inkspace-hamburger:focus{
  box-shadow: 0 0 0 1px var(--primary-font-color); 
}

.inkspace-round-btn {
    border: 1px solid white;
    padding: 6px 25px;
    border-radius: 200px;
    color: white;
    text-align: center;
    background-color: black;
    
}

.inkspace-round-btn:hover {
    background-color: white;
    color: black !important;
}

.inkspace-round-btn:focus,
.inkspace-round-btn:focus-visible,
.inkspace-style-btn:focus,
.inkspace-style-btn:focus-visible {
  box-shadow: 0 0 0 .2rem var(--transparent-gray-1); 
  outline: none;
}

.cta {
    height: 85vh;
    width: 100%;
    background-attachment: fixed;
    background-image: url("../img/cta-img-filter.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-btn {
    padding: 12px 30px;
}

.search-container {
    background-color: #111;
    border: 1px solid var(--transparent-gray-2);
    border-radius: 10px;
    margin-top: 40px;
}

.search-label {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: gray;
}

.search-input {
    padding: 14px 25px;
    background-color: transparent;
    border: 1px solid gray;
    border-radius: 8px;
    color: gray;
    font-size: 14px;
}

.search-btn {
    background-color: transparent;
    border: 1px solid gray;
    border-radius: 8px;
    color: white;
    letter-spacing: 0.05em;
    padding: 14px 12px;
}

.search-btn:hover {
    background-color: white;
    color: black;
    border: 1px solid white;
}

.search-input:focus {
    border: 1px solid lightgray;
    color: gray;
    box-shadow: 2px 2px 4px rgb(49, 49, 49);
    background-color: transparent;
    color: #fff;
}


.workspace-card {
    border: 1px solid var(--transparent-gray-1);
    border-radius: 8px;
}

.admin-users-table {
    background-color: #111;
}

.inkspace-table {
  --bs-table-bg: #111;
  --bs-table-color: #fff;
  --bs-table-striped-bg: #151515;
  --bs-table-hover-bg: #1b1b1b;
  --bs-table-border-color: rgba(59,59,59,0.9);
}

.inkspace-table-container {
    border: 1px solid var(--transparent-gray-2);
    border-radius: 8px;
    overflow: hidden;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid white;
    background-color: black;
    color: white;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s ease;
}

.user-type-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 5px;
}

.user-type-btn a {
    text-decoration: none;
}

.user-type-btn button {
    padding: 12px 24px;
    border: none;
    background-color: black;
    color: white;
}
.user-type-btn button.btn-active {
    background-color: white;
    color: black;
}

.btn-artist {
    border-radius: 0px 5px 5px 0;
}

.btn-client {
    border-radius: 5px 0 0 5px;
}

.login-header > h2 {
    font-size: 2em;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-header > p {
    color: gray;
    margin-bottom: 10px;
}

.login-input {
    padding: 14px 25px;
    background-color: #111;
    border: 1px solid gray;
    color: white;
    border-radius: 200px;
}


.inkspace-title {
    letter-spacing: 0.1em;
}

.inkspace-style-btn{
  padding: 40px;
  background-color: black;
  color: white;
  border: 1px solid white;
  border-radius: 10px;
  transition: .15s ease;
}
.inkspace-style-btn:hover{
  background-color: white;
  color: black;
  border-color: gray;
}

.inkspace-card {
    width: 40%;
    background-color: #111;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px;
    border-radius: 10px;;
}

.inkspace-card .inkspace-card-img-container {
  height: 200px; 
  overflow: hidden;
  border-radius: 8px;
}

.inkspace-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.inkspace-card .location {
    color: gray;
    font-size: 14px;
}

.inkspace-indicators {
  position: static; 
  margin-top: 18px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.inkspace-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 200px;    
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.35);
  opacity: 1;                   
  margin: 0;
}

.inkspace-indicators .active {
  background: #fff;
  border-color: #fff;
}

.inkspace-indicators [data-bs-target]:hover {
  background: rgba(255,255,255,0.6);
}


.carousel-control-prev,
.carousel-control-next {
  width: 70px;       
  opacity: 1;         
}

.inkspace-carousel-control .carousel-control-prev-icon,
.inkspace-carousel-control .carousel-control-next-icon{
  width: 52px;
  height: 84px;
  border-radius: 12px;
  background-color: rgba(0,0,0,0.85); 
  border: 1px solid rgba(255,255,255,0.5);
  background-size: 22px 22px;      
  transition: .15s ease;
}

.inkspace-carousel-control:hover .carousel-control-prev-icon,
.inkspace-carousel-control:hover .carousel-control-next-icon{
  background-color: white;
  border-color: white;
}

.inkspace-carousel-control:hover .carousel-control-prev-icon{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.inkspace-carousel-control:hover .carousel-control-next-icon{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 1 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.inkspace-carousel-control:focus,
.inkspace-carousel-control:focus-visible{
  outline: none;
  box-shadow: none;
}

.carousel-control-prev{ 
    left: 8px; 
}

.carousel-control-next{ 
    right: 8px; 
}


.how-it-works-card {
    border: 1px solid rgba(59, 59, 59, 0.9);
    background-color: rgba(255,255,255,0.08);
    padding: 30px;
    gap: 10px;
    border-radius: 8px;
    transition: .15s ease;

}

.how-it-works-card h2 {
    letter-spacing: 0.1em;
    color: white;
}

.how-it-works-number {
    background-color: black;
    border-radius: 1000px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-card p {
    text-align: center;
    color: gray;

}

.how-it-works-card:hover {
    box-shadow: 3px 3px 0px white;
}

footer {
    display: flex;
    justify-content: space-between;
    background-color: black;
    padding: 30px;
    font-size: 14px;
    color: gray;
    border-top: 1px solid rgba(59, 59, 59, 0.9);
    align-items: center;
}

.inkspace-link {
    color: gray;
    text-decoration: none;
}

.inkspace-link:hover {
    color: white;
    text-decoration: underline;
}

.login-sign-in {
    border-top: 1px solid gray; 
    padding: 1px;
}