@charset "utf-8";
/* CSS Document */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* General Body Styles */
body {
    font-family: "Fira Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.4em;
    color: #2a2a2a;
}

/* Heading Styles */
.h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
}

.h1 .page-title {
	font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    line-height: 1.7em;
    color: #3d3d3d;
	font-size: 5rem !important; /* !important is needed to override Bootstrap's default */
}

h2, .h2 {
    font-size: 2.4rem !important; /* !important is needed to override Bootstrap's default */
    color: #8f3679;
}

h3, .h3 {
    font-size:1.9rem !important; /* !important is needed to override Bootstrap's default */
    color: #8f3679;
}

h4, .h4 {
    font-size:1.3rem !important; /* !important is needed to override Bootstrap's default */
    color: #8f3679;
    font-weight: 500;
    line-height: 1.5em;
}

h5, .h5 {   
    font-size:1.2rem !important; /* !important is needed to override Bootstrap's default */
    color: #2aa2c0;
}

h6, .h6 {
    font-size:1.1rem !important; /* !important is needed to override Bootstrap's default */
    color: #2aa2c0;
}

a {
	color: #8f3679;
    text-decoration: none;
}
a:hover {
	color: #e00b99;
    text-decoration: underline;
}
:focus {
    outline: 2px solid #2aa2c0;
}

.accent-text {
    font-family: "Quattrocento Sans", sans-serif;
    color: #2aa2c0;
    font-weight: 700;
    font-size: 1.4rem;
}
p.lead {
    font-size: 1.1rem;
    line-height: 1.4em;
}

/* Buttons */
.btn-primary {
    background-color: #81135d;
    border-color: #81135d;
	width: 100%;
}

.btn-primary:hover {
    background-color: #8f3679;
    border-color: #8f3679;
}


/* Layout Elements */
section {
    padding: 4rem 1rem;
}
/* Overriding Bootstrap's default navbar background */
.navbar.bg-dark {
    padding: 1rem 0;
    background-color: #81135d !important; /* !important is needed to override Bootstrap's default */
}

li.nav-item {
    padding: 0 0.5rem;
}

nav.navbar li a {
    color: #ffffff;
}
nav.navbar li a:hover {
    color: #e8e8e8;
}

a.phone {
    color: #ffffff;
}

/* Hero Section */
header.py-5 {
    background-color: #f8f9fa;
}

/* Intro Section */
#intro {
    background-color: #f8f9fa;
}
#profile-pic {
    max-height: 350px;
    margin: 1rem 0;
    border-radius: 50%;
    border: solid 5px hwb(0 85% 15%);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
}

/* Portfolio Section */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

img.porfolio-tile {
    width: 100%;
    height: 300px;
    border-bottom: solid 2px #ededed;
}
h3.card-title {
    font-size: 1.2rem !important; /* !important is needed to override Bootstrap's default */
}

/* Footer */
footer.bg-dark {
    padding: 2rem 0;
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    width:60px;
    background-color: #8f3679;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    border:solid 2px #8f3679;
    font-size: 18px;
}

#scrollToTopBtn:hover {
    background-color: #81135d;
    border: solid 2px #ffffff;
}
