* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #111111;
    overflow-x: hidden;
}

/* Base Page Layout for Desktop */
.page-container {
    display: grid;
    grid-template-columns: 300px 1fr; /* Fixed 300px black bar, fluid right content */
    min-height: 100vh;
    width: 100vw;
}

/* Left Black Bar Layout Structure */
.left-sidebar {
    background-color: #111111; /* Sleek black */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    height: 100vh;
    position: sticky;
    top: 0;
}

.logo h2 {
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-menu a {
    color: #dccdbb;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #506648;
}

.sidebar-footer {
    color: #807970;
    font-size: 0.85rem;
}

.location {
    color: #807970;
    text-decoration: none;
   line-height: 1.3;
    font-size: .9rem;
    transition: color 0.3s ease;
}

.location a {
    color: #807970;
    text-decoration: none;
   line-height: 1.2;
    font-size: .9rem;
    transition: color 0.3s ease;
}

.location a:hover, .nav-menu a.active {
    color: #ffffff;
}







.spinning-image {
  width: 135px;
  height: 135px;
  /* Adjust '3s' to change speed (lower = faster, higher = slower) 
  animation: spin 12s linear infinite; */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}












/* Right Side Image Layout Structure */
.main-content {
    width: 100%;
    height: 100vh;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio while filling container */
    display: block;
}

/* Overlaying Text Content over the Right Image */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); /* Gradient for text legibility */
    padding: 60px 40px;
    color: #ffffff;
}

.image-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1.2rem;
    color: #e0e0e0;
}


.ig-image {
  width: 20px!important;
  height: 20px!important;
  }
  

.mobile-footer {
        display: none;
  

    }

/* Responsive Adaptive Layer (Mobile & Tablet Breakpoint) */
/* Responsive Adaptive Layer (Mobile & Tablet Breakpoint) */
@media (max-width: 768px) {
    /* 1. Force the page container into a vertical flex column layout */
    .page-container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    /* 2. Format the left sidebar container as a simple top navigation bar */
    .left-sidebar {
        display: flex;
        flex-direction: column;
        height: auto;
        position: relative;
        padding: 20px;
        align-items: center;
        gap: 15px;
        order: 1; /* Keeps the navbar at the very top of the layout stream */
    }

    .nav-menu {
        flex-direction: row;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    /* 3. Main content area sits in the middle */
    .main-content {
        height: 60vh; /* Set a comfortable responsive height for the photo on mobile */
        order: 2; /* Positions the photo immediately below the navigation menu */
    }

    .image-overlay h1 {
        font-size: 1.8rem;
    }

    .image-overlay p {
        font-size: 0.95rem;
    }

.sidebar-footer {
        display: none;

    }
    
    
    
    
    
    
    
    .mobile-footer {
      display: flex;
        flex-direction: column;
        height: auto;
        position: relative;
        padding: 20px;
        align-items: center;
                text-align: center;

        gap: 15px;
        
    }






}


.soon {
  display: inline-block;
font-family: Courier, "Courier New", monospace;  font-size: 15px;
      color: #db5c45;
letter-spacing: 0.12em;
}


.scrolling-container {
  width: 100%;
  overflow: hidden; /* Hides text when it goes out of bounds */
  white-space: nowrap; /* Prevents text from wrapping to a new line */
  background: #111111;
  padding: 10px 0;
}

.scrolling-text {
  display: inline-block;
  font-family: courier;
  font-size: 15px;
      color: #db5c45;
letter-spacing: 0.12em;
  animation: scroll-left 20s linear infinite;
}

/* Pause the text on hover */
.scrolling-text:hover {
  animation-play-state: paused;
  
}

/* The animation logic */
@keyframes scroll-left {
  0% {
    transform: translateX(100%); /* Start completely off-screen to the right */
  }
  100% {
    transform: translateX(-100%); /* End completely off-screen to the left */
  }
}


