@charset "UTF-8";
/* Alexandrea Procida
05/05/2025
==================================================
Table of Contents
==================================================
:: Imports
:: Root Variables
:: Layout
:: Typography
:: Links
:: Lists
:: Footer
:: Components
    - Navbar
    - Accordion
    - Slideshow
    - Responsive Media
    - Clearfix
    - Page Wrap
    - Heather
:: Scrollbar
:: Media Queries
    - Large Screens
    - Small Screens
================================================== */

/* Imports
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Passion+One:wght@400;700;900&display=swap');

/* Root Variables
================================================== */
:root {
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    --text-primary: #fff;
    --text-secondary: #fff;
    --bg-primary: #fff;
    --bg-secondary: #fff;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Layout
================================================== */
body {
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    line-height: 1.6em;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
}

.content {
    margin-left: 5rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.page-wrap {
    max-width: 950px;
}

.clear {
    clear: left;
}

/* Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: "passion one", serif;
    color: #bd1f48;
    margin-top: 40px;
    margin-bottom: .5em;
}

h1 {
    font-family: "passion one", serif;
    color: #bd1f48;
    line-height: .8em;
    font-size: 5em;
    padding: 10px;
    text-align: center;
}

h2 {
    font-size: 3.5em;
    line-height: .75em;
    font-family: "poppins", sans-serif;
}

h3 {
    background: #bd1f48;
    color: #fff;
    font-size: 1.8em;
    text-align: center;
    padding: 10px;
    font-family: "poppins", sans-serif;
    font-weight: 750;
}

h4 {
    font-size: 1.5em;
    line-height: .75em;
}

p {
    color: #000;
    margin: 10px;
}

/* Links
================================================== */
a:link, a:visited, a:hover, a:active {
    color: #bd1f48;
    text-decoration: none;
}

a:hover {
    color: #f7c6c1;
}

a.hover {
    color: #f7c780;
}

/* Lists
================================================== */


/* Footer
================================================== */
footer {
    font-size: .85em;
}
.contact-container{
    max-width:700px;
    width:100%;
    margin:0 auto;
    padding:0 25px;
}
/* Components
================================================== */
/* Navbar
================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 5rem;
    height: 100vh;
    background-color: #bd1f48;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: width 0.3s ease;
    z-index: 10;
    overflow-x: hidden; /* Prevents content from spilling */
}

.navbar:hover {
    width: 16rem;
}

/* Navigation list inside the navbar */
.navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Each nav item */
.nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

/* Push the last nav item (e.g., resume) to the bottom */
.nav-item:last-child {
    margin-top: auto;
}

/* Each nav link */
.nav-link {
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    filter: grayscale(50%) opacity(0.8);
    transition: all 0.3s ease;
}

/* SVG icons inside nav links */
.nav-link svg {
    min-width: 2rem;
    margin: 1.5rem;
}

/* Text label inside nav link */
.link-text {
    color: #fff;
    display: none;
    margin-left: 1rem;
    font-family: "Passion One", sans-serif;
    font-size: 1.5em;
}

/* On navbar hover, show the link text */
.navbar:hover .link-text {
    display: block;
}

/* On nav link hover, remove grayscale and opacity */
.nav-link:hover {
    filter: grayscale(0%) opacity(1);
    color: #fff;
}


/* Slideshow container */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    z-index: 5;
}

/* Slides (images) */
.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: auto;
}

/* Previous and next buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: #f7c6c1;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: #bd1f48;
    color: #f7c6c1;
}

/* Slide text */
.text {
    font-family: "Passion One", serif;
    background-color: #f7c6c1;
    color: #bd1f48;
    font-size: 16px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (top left corner) */
.numbertext {
    font-family: "Passion One", serif;
    background-color: #fff;
    color: #bd1f48;
    font-size: 16px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Dots under the slideshow */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #f7c6c1;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Active dot */
.dot.active {
    background-color: #bd1f48;
}

/* Dot hover effect */
.dot:hover {
    transform: scale(1.2);
}

/* Fade animation for slides */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: .4; }
    to { opacity: 1; }
}

/* Accordion button 
.accordion {
    background-color: #f7c6c1;
    color: #bd1f48;
    font-family: 'Passion One', monospace;
    padding: 25px;
    width: 100%;
    max-width: 1100px;
    text-align: center;
    outline: none;
    font-size: 25px;
    transition: 0.4s;
    border: none;
    margin: auto;
    cursor: pointer;
} */

/* Accordion button active or hover
.accordion.active, .accordion:hover {
    background-color: #bd1f48;
    color: #fff;
} */

/* Accordion panel (hidden content)
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    max-width: 1100px;
    margin: auto;
} */


/* Responsive Media
================================================== */
.responsive-media {
    width: 45%;
    height: auto;
    max-width: 300px;
}

img, video {
    max-width: 100%;
    height: auto;
}


/* Heather
================================================== */
.heather {
    max-width: 1100px;
    max-height: 600px;
    margin: auto;
}

/* Scrollbar
================================================== */
body::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

body::-webkit-scrollbar-track {
    background: #f7c6c1;
}

body::-webkit-scrollbar-thumb {
    background: #bd1f48;
    border-radius: 10px
}

/* Media Queries
================================================== */

/* Large Screens */
@media only screen and (min-width: 600px) {
    .navbar {
        height: 100vh;
    }

    .navbar:hover {
        width: 16rem;
    }

    .navbar:hover .link-text {
        display: inline;
        transition: opacity var(--transition-speed);
    }

    .float {
        float: left;
        margin-right: 25px;
        margin-bottom: 25px;
    }

    .page-wrap {
        max-width: 100vw;
        padding: 25px;
    }
}

/* Small Screens */
/* Small Screens */
@media only screen and (max-width: 600px) {
    .navbar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        height: 5rem;
        background-color: #bd1f48;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        z-index: 10;
    }
    
    .navbar-nav {
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
    }

    .nav-item {
        width: auto;
        margin: 0;
    }

    .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        text-align: center;
    }

    .nav-link svg {
        width: 2.4rem;
        height: 2.4rem;
        margin-bottom: 0.2rem;
    }

    .link-text {
        display: block;
        margin-top: 0;
        font-size: 0.9rem;
        color: #fff;
    }

    .navbar:hover {
        width: 100%;
    }

    .content {
        margin-left: 0;
        width: 100%;
        padding-bottom: 5rem;
    }
}

    .page-wrap {
        padding: 20px;
    }
}

