: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-Text a{
    text-decoration: none;
    color: #6c8aa3;
}
.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;
    padding: 0.5rem;
}
.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; }
}

body.locked {
    overflow: hidden;
}

#start-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Changed from 100vh to 100% for better mobile support */
    background-color: #000000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 2. NEW: Force the wrapper content to center */
.content-wrapper {
    display: flex;
    flex-direction: column; /* Stacks the Title on top of Button */
    align-items: center;    /* Centers them horizontally */
    justify-content: center;
    text-align: center;     /* Centers text if it wraps to two lines */
    width: 100%;            
    max-width: 90%;         /* Prevents it from touching edge of phone screen */
}

/* Optional styling for the button */
#start-btn {
    /* Typography */
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light weight */
    font-size: 1.25rem; 
    text-transform: uppercase;
    letter-spacing: 4px; /* Adds that elegant spacing common in light fonts */
    color: white;
    text-decoration: none;

    /* Resetting standard button styles */
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    
    /* Smooth hover transition */
    transition: opacity 0.3s ease, letter-spacing 0.3s ease;
}

#start-btn:hover {
    /* Subtle interaction feedback */
    opacity: 0.7; 
    letter-spacing: 6px; /* Optional: expands slightly on hover */
}

/* Helper class to hide the overlay */
.fade-out {
    opacity: 0;
    pointer-events: none; /* Allows clicks to pass through to the site below */
}
@media (min-width: 769px) {
    .Image-list img {
        /* 1. Don't force fixed height. Use MAX height instead. */
        height: auto; 
        max-height: calc(100vh - 4rem); 
        
        /* 2. Allow width to be 100% if needed, but respect aspect ratio */
        width: auto;
        max-width: 100%;
        
        /* 3. Center the image and remove object-fit (since we aren't forcing size anymore) */
        display: block;
        margin: 0 auto;
        object-fit: contain; 
    }
    
    /* Optional: Ensure the container centers images properly */
    .Image-list {
        align-items: center; 
    }
}