/* Cargar las fuentes personalizadas */
@font-face {
    font-family: 'GothamNarrow Bold';
    src: url('https://freelance-app-static-files.s3.us-east-1.amazonaws.com/fonts/GothamNarrow-Bold.otf') format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'GothamNarrow Book';
    src: url('https://freelance-app-static-files.s3.us-east-1.amazonaws.com/fonts/GothamNarrow-Book.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'GothamNarrow Light';
    src: url('https://freelance-app-static-files.s3.us-east-1.amazonaws.com/fonts/GothamNarrow-Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'GothamNarrow Medium';
    src: url('https://freelance-app-static-files.s3.us-east-1.amazonaws.com/fonts/GothamNarrow-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'NewBaskervilleStd Roman';
    src: url('https://freelance-app-static-files.s3.us-east-1.amazonaws.com/fonts/NewBaskervilleStd-Roman.ttf') format('truetype');
    font-style: normal;
}

h1 {
    font-family: 'GothamNarrow Bold', sans-serif;
    font-size: 3.5em;
    color: #04B0A3;
}

h2 {
    font-family: 'GothamNarrow Medium', sans-serif;
    font-size: 3em;
}

p.light-text {
    font-family: 'GothamNarrow Light', sans-serif;
    font-size: 1em;
}

p.baskerville-text {
    font-family: 'NewBaskervilleStd Roman', serif;
    font-size: 1.1em;
}

/* Estilos generales */
body  {
    font-family: 'GothamNarrow Book', sans-serif;
    background: linear-gradient(to right, #252525, #1E1E1E) ;
    margin: 0;
    padding: 0;
}

.navbar {
    position: relative;
    z-index: 1;
    height: 80px;
    display: flex;
    align-items: center; /* Alinea verticalmente el contenido del navbar */
    justify-content: space-between; /* Asegura que haya espacio entre los elementos de los extremos */
    padding-top: 40px;
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left:40px;
}


.navbar .nav-link,
.navbar .profile-icon,
.navbar .text-white {
    align-self: flex-end;
    margin-right: 30px; /* Separación entre enlaces del navbar */
}

.nav-link:hover {
    color: #00CED1; /* Efecto hover en turquesa */
}

.logo-container {
    position: absolute;
    top: 0px; /* Ajusta según sea necesario para centrar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Coloca el logo por encima del navbar */
    width: auto; /* Asegura que el contenedor del logo no cubra todo el ancho */
    pointer-events: none; /* Permite hacer clic en los elementos del navbar */
}

.logo {
    position: relative;
    transform: translateY(0%); /* Ajusta la posición a la mitad del navbar */
    height: 100px;
    cursor: pointer;
}

.logo-container a {
    pointer-events: auto; /* Habilita el clic solo en el enlace del logo */
}

.logout-button {
    display: none;
}

.logout-button.visible {
    display: block;
}

.profile-icon {
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #04b0a3;  /* Verde oscuro */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;  /* Ajusta el tamaño de las letras */
    cursor: pointer;
}

.initials {
    font-weight: bold;  /* Resalta las iniciales */
}


.dropdown-menu {
    left: auto !important; /* Restablece cualquier alineación previa */
    right: 0; /* Alinea el menú desplegable a la izquierda del contenedor */
    border-radius: 100px;
    text-align:center;
        padding: 5px 30px 5px 30px;

}
.dropdown-item:hover {
    background-color: transparent !important; /* Elimina el fondo */
    color: #04b0a3;  /* Cambia el color de la letra en hover (opcional) */
}


.nav-link:hover {
    color: #00CED1; /* Efecto hover */
    border-radius: 50%;
}
