/* --- Global Reset and Body Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up the body to be the full height of the viewport */
body {
    display: block;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif; 
    color: #fff; 
    text-align: center;
    position: relative; 
    overflow: hidden; 
    cursor: none; /* Hide default cursor */
}

/* --- Custom Cursor Styling (White Light Particle Effect) --- */
/* --- Custom Cursor Styling (White Light Particle Effect) --- */
/* --- Custom Cursor Styling --- */
body, a, button, .portfolio-button {
    cursor: none !important; /* Hide the default system cursor */
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px; /* Adjust size for your pointer shape */
    height: 20px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none; /* Allows clicks to pass through to elements beneath */
    z-index: 1000; /* Ensure it is on top of everything */
    transform: translate(-50%, -50%); /* Center the cursor element */
    transition: transform 0.1s ease-out, background-color 0.1s; /* Quick transition for hover effects */
}

/* Hover Effect: Scale and Fill on Interactive Elements */
a:hover ~ #custom-cursor,
.portfolio-button:hover ~ #custom-cursor {
    transform: translate(-50%, -50%) scale(2.5);
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Video Background Styling --- */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    overflow: hidden;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.6); 
}

/* --- Main Content Styling --- */
.content {
    padding-top: 5vh; 
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    max-width: 150%;
    z-index: 1; 
}

.logo {
    /* Positioning for Top-Left Corner */
    position: absolute; 
    top: 10px;          
    left: 50px;         
    
    width: 120px; 
    height: auto;
    opacity: 0.9; 
    margin-bottom: 0; 
    z-index: 2; 

}

/* --- Typing Animation Effect --- */
.main-heading {
    /* Simulates Halvar Mittelschrift - Regular */
    font-size: 3.5rem; 
    font-weight: 700;
    margin-bottom: 1000px;
    letter-spacing: 2px;
}

/* The blinking text cursor for the typing animation */
#typing-text.finished-typing {
    border-right: 4px solid #fff; /* White line to act as cursor */
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-right-color: transparent }
    50% { border-right-color: #fff; }
}


.sub-heading {
    /* Simulates Halvar Mittelschrift - Light Slanted */
    font-size: 1.25rem; 
    font-style: italic;
    font-weight: 200;
    margin-bottom: 150px;
}

/* --- Portfolio Section Styling --- */
.portfolio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-text {
    /* Simulates Halvar Mittelschrift - Light Slanted */
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    line-height: 2.7;
    margin-bottom: 50px;

}

/* --- Portfolio Button Styling (Rounded with Shadow) --- */
.portfolio-button {
    /* Simulates Halvar Mittelschrift - ExtraBold */
    display: inline-block;
    padding: 500px 700px;
    
    background-color: #fff; /* White background */
    color: #000; /* Black text */
    
    border-radius: 25px; /* Rounded Corners */
    border: none;
    
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8); /* Shadow Effect */
    
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.portfolio-button:hover {
    background-color: #f0f0f0; 
    color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7); 
    transform: translateY(-3px); 
}

/* --- Footer/Contact Info Styling (Bottom-Left) --- */
/* ===== FOOTER FIX ===== */

.site-footer {
  position: fixed;
  bottom: 50;
  left: 10;
  width: 150%;
  height: 90px;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
}
/* Footer links color FIX */
.site-footer a,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active {
  color: #9e9e9e;        /* gray */
  text-decoration: none;
}

/* CENTER CONTENT */
.footer {
    background: #000;
    color: #fff;
    position: relative;
    padding: 250px 700px;
    min-height: 200px;
}

.footer-center {
    text-align: center;
    font-size: 14px;
}

.footer-center a {
    color: #1e90ff;
    text-decoration: none;
    margin: 0 5px;
}

/* RIGHT CORNER CONTACT */
.footer-contact {
    position: absolute;
    right: 10px;
    bottom: 30px;
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
    font-size: 14px;
}

.contact-item i {
    font-size: 16px;
}

.contact-container {
    position: absolute;
    right: -25px; /* Adjust as needed */
    top: 10px; /* Adjust as needed */
    /* or bottom: 10px; for the bottom right corner */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-info {
    margin: 0;
    padding: 2px 0;
    font-size: 14px; /* Adjust as needed */
    color: #fff; /* Adjust as needed */
}
@media (min-width: 1600px) {
  .content {
    max-width: 1000px;
  }
  /* LOCK DESKTOP WIDTH ACROSS ALL LAPTOP SIZES */
.page-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* balances left-right spacing */
  position: relative;
}

}
