:root{
    --color-primary: #111111;
    --color-secondary: #fff;
    --color-accent: #fff;
}
body{
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-primary, #111111);
    overflow: hidden;
}
h1, h2, h3{
    font-family: 'Montserrat', sans-serif;
}
.Sidebar{
    width: 15rem;
    height: 100%;
    color: var(--color-accent);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
}
.Sidebar h1{
    margin: 0;
    font-size: 1.2rem;
}
.Sidebar h1 a{
    color: inherit;
    text-decoration: none;
}
.Sidebar nav{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Sidebar nav a{
    text-decoration: none;
    color: var(--color-accent);
    font-size: 1rem;
    transition: color 0.3s;
}
.Sidebar nav a:hover{
    color: var(--color-secondary);
}
.Sidebar footer{
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--color-secondary);
}
.Sidebar footer img{
    width: 100%;
    justify-content: center;
}
.Mobile-Nav{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    background: var(--color-primary);
    color: var(--color-accent);
    padding: 0 1rem;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.Mobile-Title{
    margin: 0;
    font-size: 1.2rem;
}
.Mobile-Title a{
    color: var(--color-accent);
    text-decoration: none;
}
.Hamburger{
    width: 2rem;
    height: 1.4rem;
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}
.Hamburger span{
    display: block;
    height: 4px;
    width: 100%;
    background: var(--color-accent);
    border-radius: 2px;
    transition: 0.3s ease;
}
.Hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(6px, 6px);
}
.Hamburger.active span:nth-child(2){
    opacity: 0;
}
.Hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(6px,-6px);
}
.Mobile-Menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    flex-direction: column;
    padding: 1rem;
}
.Mobile-Menu a{
    color: var(--color-accent);
    text-decoration: none;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}
main{
    display: flex;
    margin-left: 15rem;
    flex: 1;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem;
    box-sizing: border-box;
}
#gallery{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.Image-list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
}
.Image-list img{
    max-width: 100%;
}
.Lightbox{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.Lightbox.open{ display: flex;}
:root { --vh: 1vh; } 
.Lightbox { padding: 0 !important; }
.lightbox-image-wrapper{
    position: relative;      
    display: inline-block;
    line-height: 0;         
}
.lightbox-img{
  display: block;
  object-fit: contain;
  width: auto; height: auto;
  max-width: 100vw;
  max-height: calc(var(--vh) * 100);
}
.lightbox-image-wrapper .close{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    color: #fff;
    background: rgba(0,0,0,.55);
    padding: 1rem 0.75rem;
    cursor: pointer;
    z-index: 20;
}
.lightbox-nav{
    position: absolute;
    top: 0; bottom: 0;
    width: 10%;
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
}
.lightbox-nav.prev{ left: 0; justify-content: flex-start; }
.lightbox-nav.next{ right: 0; justify-content: flex-end; }
.lightbox-nav .arrow {
    font-size: 4rem;
    line-height: 1;
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
#Video{
    width: 95%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    color: var(--color-accent);
}
.Video-Container{
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
#Video iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
#Description{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--color-accent);
    max-width: 50rem; 
    padding: 2rem;
}
.Description-Text{
    padding-top: 0rem;
}
.Description-Text p{
    font-size: 1rem;
    line-height: 1.6;
}
.Description-Information h3,
.Description-Price h3{
    font-size: 1rem;
    text-align: center;
    margin: 0;
    padding-bottom: 1rem;
    color: var(--color-accent);
}
#Contact{
    display: flex;
    flex-direction: column;
    justify-content: center;   
    align-items: center;       
    text-align: center;
    padding-top: 10rem;
    color: var(--color-accent);               
}
#Contact a{
    color: var(--color-accent);
    text-decoration: none;
}
#Contact h2{
    font-size: 1.5rem;
    padding: 2rem;
    margin: 0;
}
#Contact h3{
    font-size: 1rem;        
    margin: 0;
    font-weight: 400;
}
#Contact p{
    font-size: 0.75rem;
}
.Contact-Grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.Contact-Column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
.Contact-Row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.Contact-Row p, 
.Contact-Row h3 {
  margin: 0;
}
@media(max-width:768px){
    .Sidebar{
        display: none;
    }
    .Mobile-Nav{
        display: flex;
    }
    .Hamburger{
        display: flex;
    }
    main{
        margin-left: 0;
        padding: 0;
        height: 100svh;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    #Description{
        padding-top: 0;
        height: 100vh;
    }
    .Description-Text{
        padding-top: 0;
        padding-bottom: 1.5rem;
    }
    .Contact-Grid{
        flex-direction: column;
        align-items: center;
    }
    .Lightbox img{
        max-width: 100%;
    }
}
@media(max-width:1000px){
    .Description-Text{
        padding-top: 0;
    }
}
html.is-mobile-landscape .lightbox-img {
    max-width: calc(100vw - 1rem) !important;
    max-height: calc(100svh - 1rem) !important;
    object-fit: contain;
    display: block;
}
:root { --vh: 1vh; }

html.vhfix.is-mobile-landscape .lightbox-img {
  max-height: calc(var(--vh) * 100 - 1rem) !important;
}
@media (orientation: landscape) and (max-height: 500px),
        (pointer: coarse) and (orientation: landscape) {
    .Sidebar { display: none !important; }
    .Mobile-Nav { display: flex !important; }
    .Hamburger { display: flex !important; }
    .Image-list img{
        max-height: auto;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    main { margin-left: 0 !important; padding-top: 3rem; }
}

