@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'justCosmic';
    src: url('/fonts/justCosmic/Just\ Cosmic.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimizes font loading behavior */
}
@font-face {
    font-family: 'aileron';
    src: url('/fonts/aileron/Aileron.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimizes font loading behavior */
}
:root {
    --primary-color: #7a7066;
    --nav-color: #514c47;
    --bodytxt: #3c3333;
    --txt: #fcf6c2;
    --hover: #cedcf8;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'aileron';
    background-color: #7a7066;
    background-image: url('/images/bg/bg01.png');
    background-repeat: repeat;
}

header h1 {
    user-select: none;
}

hr {
    height: 2px;
    border-radius: 15px;
    background-color: var(--txt);
}

/*----------------Navbar Properties----------------*/
.navbar {
    font-family: 'aileron';
    position: sticky;
    color: var(--txt);
    background-image: url(/images/bg/bg02.png);
    opacity: 80%;
    font-size: 1.5rem;
    margin: auto;
}
.navbar h1 {
    font-family: 'justCosmic';
    font-size: 4rem;
    margin-left: 5rem;
}

.nav-item {
    justify-content: space-evenly;
    margin: 0 30px 0 30px;
}

.navbar i {
    font-size: 1.3rem;
    transition: 0.5s ease;
}


.navbar-light .navbar-nav .nav-link {
    color: var(--txt);
    transition: 0.5s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar i:hover,
.navbar-light .navbar-nav .nav-link.active
.navbar i.active {
    color: var(--hover);
    text-shadow: 1px 1px 2px brown, 0 0 25px rgb(66, 66, 177), 0 0 5px darkblue;
}

/*----------------Main Properties----------------*/
.packageNote {
    color: var(--txt);
    text-align: center;
    margin: 15em;
}
.packageNote h1 {
    font-family: 'justCosmic';
    font-size: 10rem;
}
.packageNote h2 {
    font-size: 3rem;
}

.packageContainer {
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.package {
    width: 300px;
    height: 650px;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: 'justCosmic';
    font-size: 16px;
    line-height: 1.5;
    color: var(--bodytxt);
    background-color: var(--bodytxt);
    margin: 15px;
}

.pkgHeader {
    padding: 25px;
    background: var(--txt);
    height: 250px;
}
.pkgTitle , .pkgSum {
    margin: 0;
    text-align: center;
    letter-spacing: 3px;
}
.pkgTitle {
    padding: 1em;
    font-size: 2em;
    font-weight: 600;
}
.pkgSum {
    font-family: 'aileron';
    font-size: 1em;
    font-weight: 300;
}

.pkgDesc {
    padding: 25px;
    font-family: 'aileron';
    color: var(--hover);
    font-size: 1.2em;
}

.pkgList {
    padding: 0;
    margin: 0;
}

.pkgFeature {
    list-style: none;
    margin: 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9em;
}
.pkgFeature:not(:last-child) {
    margin-bottom: 0.5em;
}
.pkgFeature::before {
    content: "\2714";
    color: var(--txt);
    position: absolute;
    left: 0;
}

.packageContainer .pkgActions {
    position: absolute;
    bottom: 1em;
    margin-left: 5em;
}
.pkgActions {
    padding: 25px;
    border-top: 1px solid var(--txt);
    display: flex;
    flex-direction: column;
    color: var(--hover);
}
.pkgCost {
    margin: 0;
    text-align: center;
    font-size: 2em;
    font-weight: 800;
    letter-spacing: 5px;
}
.pkgTxt {
    font-size: 0.9em;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

/*----------------Footer Properties----------------*/
#footer {
    background-image: url(/images/bg/bg02.png);
    color: var(--txt);
    opacity: 80%;
    text-align: center;
}

#footer p {
    margin-top: 10px;
    color: var(--txt);
}

#footer .copyright img {
    display: flex;
    flex-direction: row;    
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
}
#footer .copyright a {
    width: 50px;
    height: auto;
    display: inline-table;
    margin-right: 10px;
}

#links img:hover {
  filter: invert(80%);
  transition: 0.5s ease;
}
