﻿/*
Theme Name: Janus
Author: Luiz+Cruz Design
Author URI: http://luizcruzdesign.com
Description: Theme for Janus website.
Version: 01/2025
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Root */
:root {
	--primary: #20285a;
	--secondary: #006a7f;
	--accent: #00C1BE;
	--text-dark: #49526f;
	--light: hsla(0,0%,97%,1.00);
	--bs-border-radius: 10px;
	--bs-gutter-x: 2rem;
}

.text-primary {
	color: var(--primary)!important;
}

.bg-primary {
	background-color: var(--primary)!important;
}

.bg-light {
	background-color: var(--light);
}

/* Basics */
body, html {
	height: 100vh;
}

* {
	font-family: "Lato", "Arial", sans-serif;
}

section.container-fluid > div.container {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

/* Text */
h1, .h1, h2 {
	font-weight: bold;
	letter-spacing: -0.2pt;
}

h1, .h1 {
	color: var(--primary);
	font-weight: bold;
	letter-spacing: -0.2pt;
    font-size: 34px;
}

h2, .h2 {	
    font-size: 28px;
}

p {
	color: var(--text-dark);
}

p a, li a {
	color: var(--primary);
}

/* Nav */
nav {
	height: 120px;
	padding: 10px 0px;
	background-color: white;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	position: relative;
	z-index: 999;
}

nav ul a {
	text-decoration: none!important;
	font-weight: bold;
	font-size: 18px;
	opacity: 0.5;
	transition: 0.3s;
}

nav ul li:hover a {
	opacity: 1;
}

nav a.hamburger-menu {
	color: var(--primary);
	font-size: 34px;
	text-decoration: none;
}

/* Hero Banner */
div#hero-banner {
	height: 500px;
}

div.carousel-item > div * {
	text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

div.carousel-item-headline {
	font-size: 50px;
	width: 50%;
}

div.carousel-item-text {
	font-size: 30px;
}

@media only screen and (max-width: 782px) {
	div.carousel-item-headline {
		font-size: 40px;
		width: 90%;
	}
	
	div.carousel-item-text {
		font-size: 24px;
	}
}

/* Cards */
.card p:last-of-type {
	margin-bottom: 0;
}

img.sbu-icon {
	width: 120px;
}