body, html {
    background-size: cover;
    height: 100vh;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("./img/loadingV2.svg");
    transition: background-image 1s ease-out;
}

.scroll-content {
    height: 100vh;
    width: 100%;
    overflow: auto;
}

.glass-container {
    display: none;
    max-width: 100%;
    justify-content: space-evenly;
    align-items: center;
    height: 650px;
}

.glass-container-delta {
    display: none;
    justify-content: center;
    align-items: center;
    height: 650px;
}

.main-column {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 650px;
}

.right-side-column {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 650px;
}

/*Components under navbar and links*/
.glass-rectangle-alpha1 {
    position: relative;
    overflow: hidden;
    width: 800px;
    height: 310px;
    margin-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.87);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: transform 0.3s;
}

.glass-rectangle-alpha1:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-rectangle-alpha1:hover::before {
    opacity: 1;
}

.glass-rectangle-alpha2 {
    position: relative;
    overflow: hidden;
    width: 800px;
    height: 310px;
    background-image: url("./img/ombre-rectangle.svg");
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: transform 0.3s;
}

.glass-rectangle-alpha2:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-rectangle-alpha2:hover::before {
    opacity: 1;
}

/*smaller right-side components*/
.glass-rectangle-bravo {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 300px;
    background-color: #3EA0E0;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: transform 0.3s;
}

.glass-rectangle-bravo:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-rectangle-bravo:hover::before {
    opacity: 1;
}

/*smaller component charlie*/
.glass-rectangle-charlie {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.87);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: transform 0.3s;
}

.glass-rectangle-charlie:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-rectangle-charlie:hover::before {
    opacity: 1;
}


.glass-interior {
    object-fit: contain;
    width: 200px;
}

.center-text {
    display: flex;
    text-align: center;
}

.navbar {
    display: none;
    background: transparent;
    justify-content: normal;
    align-items: center;
    height: 90px;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(16, 15, 15, 0.61);
    padding: 0;
}

/*logo in navbar*/
.image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    overflow: clip;
    z-index: 1;
}
.link-bar {
    display: none;
    flex-direction: row;
    background: rgba(42, 42, 42, 0.5);
    justify-content: space-evenly;
    align-items: center;
    margin-top: 0;
    margin-bottom: 20px;
    max-height: 60px;
    width: 100%;
    filter: drop-shadow(0 0 0.55rem rgba(23, 22, 22, 0.5));
    overflow: auto;
}
.custom-link {
    font-family: "monospace", sans-serif;
    color: #d7d4d4;
    font-size: 18px;
    text-decoration: none;
    max-height: 40px;
    font-weight: normal;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease-in-out;
}

.custom-link:hover {
    border-bottom-color: #ece9e9;
    box-shadow: #232222;
}

.custom-link:active {
    border-bottom-color: #e0dbdb;
}

.custom-link:visited {
    border-bottom-color: #e3e0e0;
}

/*Drop down for location results*/
/*do hover effect for individual elements in navbar*/
.search-container {
    display: none;
    flex-direction: row;
    margin-left: 320px;
    width: 20%;
}

.search-button {
    background: transparent;
    border: solid 3px #eeeeee;
    margin-bottom: 6px;
    margin-left: 30px;
    border-radius: 10px;
    color: #eeeeee;
    width: 150px;
    padding: 8px;
    font-size: 18px;
    font-weight: bolder;
}

.search-button:hover {
    color: black;
    cursor: pointer;
    background: white;
    /*backdrop-filter: drop-shadow(0 0 0.55rem rgba(23, 22, 22, 0.5));*/
}

.search-font {
    font-family: "monospace", sans-serif;
    color: #d9d8d8;
    font-size: 20px;
    text-decoration: none;
    font-weight: normal;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease-in-out;
}

.transparent-input {
    border: none;
    margin-left: 90px;
    margin-bottom: 10px;
    background: transparent;
    border-bottom: 3px solid #252424;
    border-radius: 20px;
    color: #eeeeee;
    outline: none;
    width: 400px;
    padding: 10px;
    font-size: 18px;
}

/*center and edit text inside input element*/
input[type="text"]::placeholder {
    text-align: center;
    font-family: "Al Nile", sans-serif;
    color: #e7e2e2;
    line-height: inherit;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

input[type="text"]:focus::placeholder {
    opacity: 0;
}

/* Style for input element on focus */
.transparent-input:focus {
    border: solid 2px #d9d8d8;
    border-bottom: 2px solid #232222; /* Change border color on focus */
}

a {
    text-decoration: none;
}

/*Weather reaction*/

.top-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 20%;
    width: 100%;
    filter: drop-shadow(0 0 0.55rem rgba(23, 22, 22, 0.5));
    background: rgba(42, 42, 42, 0.78);
}
.top-container-sunrise {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 20%;
    width: 100%;
    background: rgba(42, 42, 42, 0.78);
}
.bottom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 180px;
    height: 20%;
    width: 100%;
    background: rgba(42, 42, 42, 0.78);
}
.inner-text {
    color: rgba(236, 233, 233, 0.89);
    font-family: "monospace", sans-serif;

}
.weather-text {
    font-size: 45px;
    color: #ffffff; /* White text color */
    text-shadow: 2px 2px 4px #444444; /* Dark gray drop shadow */
    filter: drop-shadow(0 0 0.20rem rgba(23, 22, 22, 0.5));
    background: rgba(42, 42, 42, 0.78);
    border-radius: 10px;
}
.time-text {
    font-size: 45px;
    color: #ffffff; /* White text color */
    text-shadow: 2px 2px 4px #444444; /* Dark gray drop shadow */
    filter: drop-shadow(0 0 0.20rem rgba(23, 22, 22, 0.5));
    border-radius: 10px;
}
.now-weather {
    font-size: 45px;
    color: #ffffff; /* White text color */
    text-shadow: 2px 2px 4px #444444; /* Dark gray drop shadow */
}
.weather-info {
    width: 50%;
}
.inline-text {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
#high-temp {
    margin-right: 50px;
}
#right-col-weather {
    background-image: url("./img/sunrise-icon.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

