/* 1. Reset */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}

/* 2. THE FRAME (Fixed Overlay) */
/* We use a pseudo-element on the HTML tag so it stays above the body */
html::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 40px solid white !important; 
    pointer-events: none;     
    z-index: 9999; 
}

/* 3. LOGO (Center Top) */
.navbar-logo {
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    height: 40px !important;                
    line-height: 40px !important;           
    z-index: 10000 !important;              
    
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
}

/* 4. ABOUT (Center Bottom) */
.navbar-right {
    position: fixed !important;
    bottom: 0 !important;                   
    left: 50% !important;
    transform: translateX(-50%) !important; 
    height: 40px !important;                
    z-index: 10000 !important;              
}

.navbar-right a {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    line-height: 40px;
    display: inline-block;
}

.about {
    padding: 20% 20%;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.8vh;
    line-height: 1.6;
    letter-spacing: 2px;
    color: #000;
}

/* Media query for smaller screens */
@media only screen and (max-width: 767px) {
  .about {
    padding: 10% 10%;
    font-size: 1.8vh;
    line-height: 1.6;
    color: #000;
  }
}

/* 5. IMAGES (Content) */
.image-holder-desktop, .image-holder-mobile {
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    display: block;
}

.image-holder-mobile { display: none; }

/* 7. MOBILE FIX */
@media only screen and (max-width: 767px) {
    html::after { border-width: 25px !important; }
    
    .navbar-logo {
        height: 25px !important;
        line-height: 25px !important;
        font-size: 12px;
    }
    
    .navbar-right {
        height: 25px !important;
        bottom: 0 !important;
    }
    
    .navbar-right a {
        line-height: 25px !important;
        font-size: 12px;
    }

    .image-holder-desktop { display: none; }
    .image-holder-mobile { display: block; }
    
}