*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
}
:root{
    --base_Color: #30343f;
    --accent_Color: #f0f0f0;
    --Hover_Color: #5EA0FD;
    --Secondary_Base_Color: #f0f0f0;
}
.Navigation{
    position: fixed !important;
    top: 0;
    width: 100%;
    height: 5rem;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: transparent;
    transition: 0.6s;
    z-index: 15;
}
#Fixed_Navigation{
    background-color: var(--base_Color);
}
.Navigation.Solid{
    background-color: var(--base_Color);
}
.Navigation:hover{
    background-color: var(--base_Color);
}
.Navigation .Logo_Container{
    display: flex !important;
    align-items: center !important;
}
.Navigation .Logo_Container img{
    height: 4rem;
    align-items: center;
}
.Navigation .Logo_Text{
    font-size: 2rem;
    color: var(--accent_Color);
    font-weight: medium;
    text-decoration: none;
    padding-left: 1rem;
}
.Navigation_Links{
    list-style: none;
    display: flex;
}
.Navigation_Links li{
    margin-left: 1rem;
}
.Navigation_Links a{
    color: var(--accent_Color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.Navigation_Links a:hover{
    color: var(--Hover_Color);
}
.Hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
@media (max-width: 768px){
    .Navigation_Links{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 5rem;
        right: 0;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 1rem;
        width: 100%;
        z-index: 10;
        text-align: right;
    }
    .Navigation{
        background-color: var(--base_Color);
    }
    .Navigation_Links.show{
        display: flex;
    }
    .Hamburger{
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: var(--accent_Color);
    }
    .Navigation_Links{
        display: none;
    }
    .Navigation_Links a{
        font-size: 1.2rem;
    } 
}
#Sidebar{
    width: 17rem;
    height: 100%;
    position: fixed;
    top: 0;
    right: -17rem;
    background-color: var(--base_Color);
    color: var(--accent_Color);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.5s ease;
    z-index: 1000;
    padding: 1rem;   
}
#Sidebar.active{
    right: 0;
}
.Sidebar_Content{
    display: flex;
    flex-direction: column;
}
.Sidebar_Close_BTN{
    font-size: 3rem;
    cursor: pointer;
    align-self: flex-start;
    padding-bottom: 2rem;
}
.Sidebar_Close_BTN:hover{
    color: var(--Hover_Color);
    transform: scale(1.1);
}
.Sidebar_Content h2{
    font-size: 2rem;
    padding-top: 1rem;
}
.Sidebar_Content p{
    padding: 0.5rem 0;
}
.Sidebar_Name{
    font-size: 1.2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
}
.Sidebar_Line{
    border-bottom: .1rem solid var(--accent_Color);
    margin: 1rem 0;
}
.Sidebar_Social_Icons{
    display: flex;
    gap: 1rem;
}
.Sidebar_Social_Icons a{
    text-decoration: none !important;
    color: var(--accent_Color);
}
.Sidebar_Social_Icons a:hover{
    color: var(--Hover_Color);
    transform: scale(1.2);
}
.Sidebar_Image{
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.Sidebar_Image img{
    max-width: 80%;
    height: auto;
}
.Landing_Video{
    position: relative !important;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.Landing_Video video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.Landing_Video:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
.About_Image img{
    width: 80%;
    height: auto;
    object-fit: cover;
}
.Fullscreen_Panels{
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--base_Color);
}
.Fullscreen_Panels .Panel{
    position: relative;
    flex: 1;
    height: 100vh;
    overflow: hidden;
    transition: flex 0.75s ease, transform 0.75s ease;
    cursor: pointer;
}
.Fullscreen_Panels .Panel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease, filter 0.75s ease;
}
.Fullscreen_Panels .Panel .overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    color: var(--accent_Color);
    opacity: 1;
    text-align: center;
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.Fullscreen_Panels .Panel:hover{
    flex: 6;
    z-index: 10;
    box-shadow: none;
}
.Fullscreen_Panels .Panel:hover img{
    transform: scale(1.1);
}
.Fullscreen_Panels .Panel:hover .overlay{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.Fullscreen_Panels:hover .Panel:not(:hover){
    flex: 1;
    box-shadow: 0px 50px 50px rgba(0, 0, 0, 1)
}
.Fullscreen_Panels:hover .Panel:not(:hover) img{
    filter: brightness(0.75);
}
.Fullscreen_Panels .Panel:hover .overlay{
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}
.Footer{
    background-color: var(--base_Color);
    color: var(--accent_Color);
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}
.Footer_Content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.Footer_Left{
    display: flex;
    flex-direction: column;
}
.Footer_Logo{
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.Footer_Social{
    display: flex;
    gap: 10px;
}
.Footer_Social a{
    color: var(--accent_Color);
    font-size: 1.2rem;
    text-decoration: none;
}
.Footer_Social a:hover{
    color: var(--Hover_Color);
}
.Footer_Center{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Footer_Right{
    display: flex;
    flex-direction: column;
}
.Footer_Links{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.Footer_Links a{
    color: var(--accent_Color);
    text-decoration: none;
    font-size: 0.9rem;
}
.Footer_Links a:hover{
    text-decoration: underline;
    color: var(--Hover_Color);
}
.Footer_Contact h3{
    font-size: 1rem;
    margin-bottom: 10px;
}
.Footer_Bottom{
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--Hover_Color);
}
@media (max-width: 768px){
    .Footer_Content {
        flex-direction: column;
        align-items: center; 
        text-align: center;
    }
    .Footer_Left, .Footer_Center, .Footer_Right{
        width: 100%;
    }
    .Footer_Social{
        justify-content: center;
        padding-bottom: 2rem;
    }
    .Footer_Links{
        justify-content: center;
        padding-bottom: 1rem;
    }
}
.Projects{
    width: auto;
    height: auto;
    background-color: var(--Secondary_Base_Color);
    overflow: hidden;
}
.Project_Header h2{
    padding-top: 6rem;
    padding-left: 1rem;
    font-size: 3rem;
    font-weight: 400;
}
.Project_Header_Line{
    border-bottom: .15rem solid var(--base_Color);
    width: 15rem;
    padding-top: 0.25rem;
    margin-left: 1rem;
}
.Property_Grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    padding-top: 3rem;
}
.Property_Card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
    height: auto;
    position: relative;
}
.Property_Card .Property_Image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Property_Card .Address{
    font-size: 16px;
    color: var(--accent_Color);
    font-weight: bold;
    margin: 10px 0;
    position: absolute;
    bottom: 50px;
    left: 10px;
}
.Property_Card .Property_Details{
    margin-top: auto;
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.Property_Card .Property_Details p{
    margin: 5px 0;
    font-size: 1rem;
    color: var(--accent_Color);
}
.Property_Card:hover{
    transform: scale(1.01);
}
@media (max-width: 768px){
    .Property_Grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media (max-width: 1024px){
    .Property_Grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.About{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 3rem;
}
.About_Container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.About_Text{
    width: 50%;
    align-self: flex-start;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 5rem;
    text-align: left;
}
.About_Title h2{
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}
.About_Line{
    border-bottom: .15rem solid var(--base_Color);
    width: 20rem;
}
.About_Text p{
    font-size: 1.1em;
    margin-top: 1rem;
    line-height: 1.6;
}
.About_Image{
    width: 50%;
    display: flex;
    padding-top: 5rem;
    align-self: flex-start;
    align-items: center;
    padding-right: 1.5rem;
}
.About_Image img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.About_Button{
    margin-top: 5rem;
}
.About_Button button{
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: var(--base_Color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.About_Button button:hover{
    transform: scale(1.025);
}
.About_Socials{
    display: flex;
    padding-top: 0.25rem;
    gap: 0.5rem;
}
.About_Socials a{
    color: var(--base_Color);
    font-size: 1.2rem;
    text-decoration: none;
}
.About_Socials a:hover{
    color: var(--Hover_Color);
}
@media (max-width: 1350px){
    .About_Container{
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem; 
    }
    .About_Text, .About_Image{
        width: 100%;
        text-align: left;
    }
    .About_Image{
        padding-top: 3rem;
        padding-left: 1rem;
    }
    .About_Button{
        margin-top: 1rem;
        text-align: left;
    }
}
