/* ==========================================================================
   Help Scout Docs - Custom Stylesheet
   Basic customizations for branding and styling
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* --------------------------------------------------------------------------
   BRAND COLORS & TYPOGRAPHY
   
   Primary Color: #083c2f (dark teal/green)
   Secondary Color: #f1f3e7 (light green)
   Hover Color:   #0a5240 (lighter teal/green)
   Font Family:   'Roboto' (Google Fonts)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   SEARCH BAR STYLING
   Customize the search bar appearance on your Docs homepage
   -------------------------------------------------------------------------- */

/* Search bar input field */
#searchBar .search-query {
	background: #fff;
    border: 1px solid #e6e6e6;
	box-shadow: none;
	color: #777;
	border-radius: 8px;
    font-size: 16px;
    height: 60px;
    padding-left: 18px;
}

#sidebar form .search-query {
	background: #fff;
    border: 1px solid #e6e6e6;
	box-shadow: none;
	color: #777;
	border-radius: 8px;
    font-size: 14px;
}

/* Search button */
#searchBar button {
	background: #083c2f;
	border-color: transparent;
	color: #fff;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    height: 60px;
}

/* Search button hover state */
#searchBar button:hover {
	background: #0a5240;
	border-color: transparent;
	color: #fff;
}

/* Search section background (optional - uncomment to add an image) */
#docsSearch {
	height: 160px;
	border-bottom: none;
	padding-top: 44px;
	position: relative;
	top: -1px;
}

/* Search section heading */
#docsSearch h1 {
	font-family: 'Roboto', sans-serif;
	color: #083c2f;
	font-weight: 800;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   Set fonts and text colors for your entire Docs site
   -------------------------------------------------------------------------- */

/* Body text */
body {
	font-family: 'Roboto', sans-serif;
	color: #333333;
	line-height: 1.6;
    /* background: linear-gradient(135deg, #f9fafb 0%, #f1f3e7 100%); */
    background: radial-gradient(75% 86% at 137.8% 45.6%,#118c6d4d 0%,#f1f2e7 99.4967%,#f1f3e7 100%);
    min-height: 100vh;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	color: #222222;
}


/* --------------------------------------------------------------------------
   CATEGORIES & COLLECTIONS
   Style the category list and collection boxes
   -------------------------------------------------------------------------- */

.category-list {
    text-align: center;
}

/* Category list items */
.category-list .category {
	background-color: #FFFFFF;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	transition: all 0.2s ease;
    text-align: left;
    padding: 2em;
    box-sizing: border-box;
}

/* Category hover effect */
.category-list .category:hover {
	background-color: #fafafa;
	border-color: #083c2f;
}

/* Responsive adjustments: 3 cols desktop, 2 cols tablet, 1 col mobile */

.category-list .category {
    width: 31%;
}

@media (max-width: 900px) {
    .category-list .category {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .category-list .category {
        width: 100%;
        margin: 0 0 10px;
    }
}

.category-list .category::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-origin: content-box; /* ensure image sits inside padding */
    background-clip: padding-box;   /* keep bg color within padded box */
    background-color: #f3f4f6; /* light grey */
    padding: 8px;
    border-radius: 8px;
    box-sizing: content-box;
    margin-bottom: 16px;
}

/* Cuenta y Usuario */
#category-13::before {
    background-image: var(--icon-account); /* solar:settings-linear */
}

/* Familias y Alumnos */
#category-14::before {
    background-image: var(--icon-family); /* solar:users-group-two-rounded-linear */
}

/* Actividades */
#category-9::before {
    background-image: var(--icon-activities); /* solar:notes-linear */
}

/* Inscripciones y Asistencia */
#category-17::before {
    background-image: var(--icon-bookings); /* solar:notebook-linear */
}

/* Pagos */
#category-11::before {
    background-image: var(--icon-payments); /* solar:card-transfer-linear */
}

/* Comunicación */
#category-16::before {
    background-image: var(--icon-comms); /* solar:chat-line-linear */
}

.category-list .category h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.category-list .category p {
    font-size: 1.2em;
    font-weight: 400;
    color: #666666;
    margin-bottom: 0;
}

.category-list .category .article-count {
    margin-top: 0.5em;
    font-size: 1.2em;
    font-weight: 400;
    color: #9f9f9f;
    margin-bottom: 0;
}


/* Most popular articles collections */
/* .twoCol .collection, 
.threeCol .collection { 
	background: #FFFFFF; 
	border-color: #DBDBDB;
	border-radius: 4px;
	padding: 20px;
	transition: all 0.2s ease;
} */

/* Collection hover effect */
/* .twoCol .collection:hover, 
.threeCol .collection:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} */


/* --------------------------------------------------------------------------
   LINKS
   Customize link colors and hover states
   -------------------------------------------------------------------------- */

/* Standard links */
a {
	color: #083c2f;
	text-decoration: none;
	transition: color 0.2s ease;
}

/* Link hover state */
a:hover {
	color: #0a5240;
	text-decoration: underline;
}


/* --------------------------------------------------------------------------
   CATEGORY ARTICLES PAGE
   Style the category articles page
   -------------------------------------------------------------------------- */

#main-content {
    background: none;
}

#main-content .contentWrapper{
    border-radius: 8px;
}

#main-content h1 {
    font-weight: 600;
    color: #083c2f;
}

#sidebar h3 {
    color: #666666;
    font-weight: 800;
}

#sidebar .nav-list a {
    font-size: 14px;
    color: #083c2f;
}

#categoryHead .sort select {
	background: #fff;
    border: 1px solid #e6e6e6;
	box-shadow: none;
	color: #777;
	border-radius: 8px;
    font-size: 14px;
    height: 34px;
    width: 176px;
}

.contentWrapper p.descrip {
    margin-top: 20px;
    padding-bottom: 18px;
    margin-bottom: 10px;
    color: #444444;
    border-bottom: 1px solid #dedede;
}

.articleList {
    padding-top: 10px;
}

/* --------------------------------------------------------------------------
   ARTICLES
   Style individual article pages
   -------------------------------------------------------------------------- */

/* Article content area */
#fullArticle {
	background: #FFFFFF;
	border-radius: 8px;
    padding-bottom: 20px;
}

/* Article title */
#fullArticle h1 {
	color: #222222;
	margin-bottom: 40px !important;
    font-weight: 600;
}

#fullArticle li {
margin-bottom: 4px !important;
}

#fullArticle blockquote, 
#fullArticle dd, 
#fullArticle div, 
#fullArticle li, 
#fullArticle ol, 
#fullArticle p, 
#fullArticle table, 
#fullArticle ul {
    font-size: 15px;
}
/* Hide "Last Updated" date (uncomment to enable) */
/*
.articleFoot time.lu {
	display: none;
}
*/


/* --------------------------------------------------------------------------
   NAVIGATION
   Header and navigation styling
   -------------------------------------------------------------------------- */

/* Navigation links */
#header nav a {
	transition: color 0.2s ease;
}

.navbar-inner {
    box-shadow: none;
}   

.navbar .brand img {
    width: auto;
    max-height: 32px;
}

@media (max-width: 768px) {
    .navbar .brand {
        padding: 6px 0px;
    }

    .navbar .brand img {
        width: auto;
        max-height: 28px;
        padding: 10px 0px;
    }
}


/* --------------------------------------------------------------------------
   CUSTOM ADDITIONS
   Add your own custom CSS below this line
   -------------------------------------------------------------------------- */

/* Icon Variables */
:root {
    /* solar:settings-linear */
    --icon-account: url('https://api.iconify.design/solar/settings-linear.svg');
    /* solar:users-group-two-rounded-linear */
    --icon-family: url('https://api.iconify.design/solar/users-group-two-rounded-linear.svg');
    /* solar:notes-linear */
    --icon-activities: url('https://api.iconify.design/solar/notes-linear.svg');
    /* solar:notebook-linear */
    --icon-bookings: url('https://api.iconify.design/solar/notebook-linear.svg');
    /* solar:card-transfer-linear */
    --icon-payments: url('https://api.iconify.design/solar/card-transfer-linear.svg');
    /* solar:chat-line-linear */
    --icon-comms: url('https://api.iconify.design/solar/chat-line-linear.svg');
}

/* Remove backgrounds from main containers to show body gradient */
html, #app, #docsSearch, .navbar, .navbar-inner,.docs-container, .content-wrapper {
    background: transparent !important;
}

/* Your custom styles here */

