.atlasTitle {
    font-family: "gravesend-sans", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-size: 6em !important;
    padding-bottom: 40px;
}

.atlasSubtitle {
    font-family: "century-gothic", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 2em !important;
}

html, body {
    height: 100%;
    margin: 0;
    background: url('../img/gradient.png') no-repeat center center fixed;
    background-size: cover;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
    min-height: 60px;
}

.locationIcon {
    width: 55px;
    position: absolute;
    top: 50%;
    margin-left: 5px;
    transform: translateY(-50%);
}

form {
    width: 100%;
}

.destination-wrapper {
    position: relative;
    width: 650px;
    margin: 0 auto;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row {
    justify-content: center;
    text-align: center;
    padding: 10px 0;
}

.row .dest {
    margin-bottom: 0px;
}

.col-6, .col-md-3 {
    justify-content: center;
}

.destination {
    font-family: "century-gothic", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    border-radius: 12px;
}

.dDate,
.rDate {
    font-family: "century-gothic", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    width: 325px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 5px;
    border-radius: 12px;
}

.date-row .col-auto {
    margin: 0 8px;
}

button.submitDestination {
    font-family: "century-gothic", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    background-color: black;
    color: white;
    outline: none !important;
    border: none !important;
    width: 8%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0px;
    border-radius: 12px;
    transition-duration: 0.3s;
    min-width: 100px;
}

button.submitDestination:hover {
    background-color: white;
    color: #FF33FF;
    outline: none !important;
    border: none !important;
}

footer .nav-link {
    font-family: "century-gothic", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 0.9em !important;
    position: relative;
    padding-bottom: 4px;
}

footer .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #FF33FF; 
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

footer .nav-link:hover::after, 
footer .nav-link:focus::after {
    width: 80%;
}

/* Date Placeholder Text */
.date-wrapper {
    position: relative;
    display: inline-block;
}

.date-wrapper input {
    width: 325px;
}

.date-placeholder {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: "century-gothic", sans-serif;
}

/* Hide placeholder when user selects a date */
input[type="date"]::-webkit-datetime-edit {
    color: transparent;
}

input[type="date"].has-value::-webkit-datetime-edit {
    color: #333;
    font-family: "century-gothic", sans-serif;
}

.date-wrapper input:not(.has-value) + .date-placeholder {
    opacity: 1;
}

.date-wrapper input:focus + .date-placeholder,
.date-wrapper input.has-value + .date-placeholder {
    opacity: 0;
}

/* RESPONSIVE */
html, body {
    overflow-x: hidden;
    overflow-y: hidden;
}

/* PHONES */
@media (max-width: 576px) {
    .destination-wrapper {
        width: 325px;
        position: static;
    }

    .destination-wrapper input {
        width: 300px;
    }

    .date-wrapper input {
        width: 225px;
    }

    .locationIcon {
        position: static;
        transform: none;
        margin: 10px auto;
        display: block;
    }
}

/* TABLETS */
@media (max-width: 768px) {

}
/* SMALL LAPTOP */
@media (max-width: 992px) {

}