Path not found: toddvasquez_private/toddvasquez_paths.php

* {
    box-sizing: border-box; /* Ensure padding and border are included in width calculations */
}

/* Global Body styles */
    body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Bentham', 'Helvetica', 'Arial', sans-serif;
    background-color:#333;
 }
 
 html {
    scroll-behavior: smooth;
}
    
/* Desktop Header styles */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: rgba(61, 40, 28);
}

/* Desktop Logo style */
.logo {
    position: relative;
    z-index: 1001; /* Ensures logo is above other elements */
    cursor:pointer;
}

.logo img {
    max-height: 50px; /* Adjust this value to fit your logo size */
    width: auto;
}

/* Desktop Navigation styles */
    .nav {
          display: flex;
          align-items: center;
    }

    nav ul {
            list-style-type: none;
            display: flex;
            justify-content: center;
        }

    nav ul li {
            margin: 0 15px;
        }

    nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }
        
/* Desktop Mobile Menu */
.mobile-menu {
    position: relative;
}

/* Desktop menu list style for links */
.menu-list li a {
    display: block;
    padding: 10px 20px;  /* Space around each link */
    color: #fff;  /* Text color */
    text-decoration: none;  /* Remove underline */
}
  
/* Desktop Global Bordered Content styles */   
.bordered-content {
            max-width: 800px;
            padding: 20px;
            border-radius: 10px;
            color:#FFF;
        }
        
/* Desktop Container style for image plus text */
.content-container {
    display: flex; /* Enables flexbox layout */
    align-items: stretch; /* Makes the items stretch to match each other's height */
    gap: 20px; /* Adds a gap between the image and text */
    margin: 20px; /* Optional: Adds some margin around the whole container */
}
        
/* Desktop Grid Container (two columns) with opaque background */
.two-grid-container {
    background-color: rgba(51, 51, 51, 0.5); /* Opaque #333 background */
    color: white; /* White text color */
    padding: 20px; /* Padding around the content */
    display: grid; /* Uses CSS Grid for layout */
    grid-template-columns: 1fr 1fr; /* Creates two equal columns */
    gap: 50px; /* Gap between the columns */
}

/* Desktop Column styling for Grid Container */
.column {
    line-height: 1.6; /* Increases line height for readability */
}

/* Desktop Text Content styles */
        h1 {
            margin-bottom: 20px;
              font-family: Bentham, helvetica, arial;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
        }

        p {
            font-size: 1.2em;
            margin-bottom: 20px;
        }

/* Desktop Static Panel styles */
.panel {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Changed from height to min-height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    /* Add some padding or margins for better spacing on mobile */
    padding: 20px;
}

/* Desktop Parallax Panel styles */
.parallax {
    background-attachment: fixed; /* Changed from fixed */
    background-size: cover;
    background-position: center;
}

/* Desktop style for section titles */
.section-title {
    font-family: 'Bentham', 'Helvetica', 'Arial', sans-serif; /* Set font family */
    font-size: 2.5rem; /* Larger font size for prominence */
    font-weight: bold; /* Bold text for emphasis */
    text-transform: uppercase; /* Uppercase text for uniformity */
    text-align: center; /* Center align the text */
    margin: 30px 0; /* Add margin above and below for spacing */
    padding: 10px; /* Optional: Add padding around the text */
    line-height: 1.2; /* Adjust line height for readability */
    }


/* Desktop Custom Styles for Academic Profile Section */
#academic-profile {
    background-color: #333; /* No image, just color */ 
}

#academic-profile .section-title{
     border-bottom: 3px solid #666; /* Optional: Add a border for visual separation */
}

#academic-profile .responsive-text {
    font-family: 'Lato', 'Helvetica', 'Arial', sans-serif;
    font-size: 1rem;
}

/* Desktop Custom Styles for Education Section */
#education {
   background-image: url("Reims_Cathedrale_Notre_Dame_interior.jpg"); /* Add your image path */

   
}

/* Desktop Custom Styles for Academic Specialization Section */
#academic-specialization {
    background-image: url("Abbaye_Saint-Victor_de_Paris_en_1655.png"); /* Add your image path */
    border-color:white;
}

#academic-specialization .responsive-image {
        height: 200px; /* Limits max width on smaller screens */
}

/* Desktop Custom Styles for Dissertation Section */
#dissertation {
    background-image: url("Writing_By_Candlelight_Pic.png"); /* Add your image path */
}

/* Desktop Custom Styles for Current Research Section */
#current-research {
    background-image: url("The_Great_Isaiah_Scroll.png"); /* Add your image path */
    font-size:2rem;
    font-family:Pinyon Script;
}


/* Desktop Button styles */
.styled-button {
    display: inline-block;
    padding: 6.5px 39px; /* Combining padding-left and padding-right */
    font-family: Lato, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 42px;
    color: rgb(255, 255, 255); /* White text */
    background-color: rgba(61, 40, 28, 0.69); /* Semi-transparent background */
    border: 2px solid rgb(121, 106, 98); /* Combined border properties */
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* Removes underline */
    text-rendering: optimizeLegibility;
    transition: color 0.25s ease-out, border-color 0.25s ease-out, background-color 0.25s ease-out; /* Smooth transition */
    margin-bottom: 13px;
    white-space: nowrap; /* Keeps the text in one line */
}

.styled-button:hover {
    background-color: rgba(61, 40, 28, 0.85); /* Darkens background slightly on hover */
    border-color: rgb(150, 130, 120); /* Lighten border color on hover */
}

/* Desktop Media styles */
    .menu {
        display: block; /* Show menu by default on larger screens */
    }
    
    .mobile-nav-menu {
        display: none;  /* Hide the menu by default on mobile */
    } 
    
    .bg-video {
      position: absolute;
      top: 50%;
     left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      #transform: translateX(-50%) translateY(-50%);
      object-fit: cover;
    }

    .bg-image {
      position: absolute;
      top: 0;
      left: 0;
       width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
    }

    /* Desktop Image styling */
    .responsive-image {
      max-width: 100%; /* Ensures image doesn't exceed its container */
      height: auto; /* Allows the image to maintain aspect ratio */
      object-fit: cover; /* Ensures the image covers the height of the text */
      flex: 1; /* Allows the image to grow/shrink to match text height */
       min-width: 100px; /* Sets a minimum width to prevent it from shrinking too much */
    }

/* Desktop content styling default is hidden with opacity zero */
.content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Desktop to make content visible with transition effects */
.content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive text styling */
.responsive-text {
    flex: 2; /* Allows the text to take up more space if needed */
    display: grid; /* Flexbox to align text within */
    align-items: center; /* Left centers text inside the text blurb */
    font-size: 1.1rem; /* Font size for the text */
    text-align: left
}


/* Desktop Footer default styles */
footer {
    background: #333;
    font-family:Lato; 
    #font-size:1rem;
    color: rgb(148, 148, 148);
    text-align: center;
    padding: 20px;
    }
        
footer h1 {
    font-size: 1rem;
     }
        
        #logo {
            text-align: float-left;
        }
        
    .footer-menu-item ul {
            list-style-type: none;
            display: flex;
            justify-content: center;
            padding: 0; /* Removing default padding */
            margin: 0; /* Removing default margin */
        }

        /* Desktop footer spacing between menu items */
        .footer-menu-item ul li {
            margin: 0 15px; /* Gap between list items */
        }

/* Desktop footer menu item styles and properties */
.footer-menu-item, 
.footer-menu-item ul li a {
    color: rgb(148, 148, 148);
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2; /* Adjusted line-height for readability */
    text-align: center;
    text-decoration: none; /* Simplified text-decoration */
    text-transform: uppercase;
    margin-top: 20px;
}

/* Desktop footer specific style only to the .footer-menu-item if necessary */
.footer-menu-item {
    font-weight: bold; /* This could be redundant if weight is set on links */
}


/* EVERYTHING BELOW THIS IS FOR MOBILE DEVICE SETTINGS */

/* Media query for mobile devices */
@media (max-width: 768px) {

     /* Mobile decrease font-size body styles */
     body, html {
         font-size: .75rem; /* Font size for the text */
      }
      
      /* Mobile custom settings for header  */
       header {
         padding:8px;
         position:relative;
         flex-direction: column; /* Stack elements vertically on small screens */
    }
   
     /* Mobile decrease font size, padding for section titles  */
    .section-title {
        padding-top: 10px;
        font-size: 1.5rem; /* Smaller font size for smaler screens */
    }
     
     /* Mobile do not load big panel videos  */
    .bg-video {
        display: none;
    }
    
    /* Mobile custom settings for big image  */
    .bg-image {
        display: block;
    }
    
    /* Mobile custom settings for panels  */
       .panel {
        /* Adjust padding, font-size, etc. for smaller screens */
        padding: 10px;
    }
    
    /* Mobile stack content within containers  */
    .content-container {
        flex-direction: column; /* Stacks image and text vertically on smaller screens */
        align-items: center; /* Centers content on smaller screens */        
        
    }
    
    /* Mobile decrease font-size, padding, width within containers */
     .content-container .responsive-text {
        font-size:.8rem;
        max-width: 300px;
        padding-bottom: 20px;
        
        
    }
    
    /* Mobile custom size responsive images within containers  */
        .content-container .responsive-image {
        width:50%;
        
    }
    
    /* Mobile reduce responsive image size  */
    .responsive-image {
        width: 80%; /* Makes the image smaller on small screens */
        max-width: 250px; /* Limits max width on smaller screens */
    }
    
    /* Mobile reduce responsive text size  */
    .responsive-text {
        padding-top: 10px; /* Adds some space above the text on smaller screens */
        width: 80%; /* Makes the image smaller on small screens */
        max-width: 300px; /* Limits max width on smaller screens */  
    }
    
   /* Mobile custom h2 header size for Current Research  */
   #current-research h2 {
      font-size: 2rem;
    }
    
    /* Mobile custom image width for responsive images in Academic Specialization  */
     #academic-specialization .responsive-image {
      min-width:100px;
      max-width:200px;
    }
    
     /* Mobile decrease font size for responsive text in Academic Specialization  */
    #academic-specialization .responsive-text {
      font-size:1rem;
    }
    
    /* Mobile custom maximum width for styled button  */
    .styled-button {
        max-width: 200px; /* Limits max width on smaller screens */ 
    }
    
    /* Mobile Footer - Hide Menu Item List  */
  .footer-menu-item, .footer-menu-item ul li,  
.footer-menu-item ul li a {
         display:none;
     }
    
    /* Mobile Footer Decrease h1 font size */
    footer h1 {
         font-size: 1rem;
     }
    
    /* Mobile menu initially hidden on mobile */
   .menu {
        display: none; /* Hide desktop menu on smaller screens */
     }
     
/* Mobile nav menu initially hidden on mobile */
.mobile-nav-menu {
    display: none;  /* Start hidden */
    flex-direction: column;  /* Stack items vertically for mobile */
    position: absolute;  /* Positioned relative to the logo */
    top: 60px;  /* Adjust as needed to position below the logo */
    left: 50%;  /* Start at the center */
    transform: translateX(-50%) translateY(-20px);  /* Center horizontally and hide above */
    width: 80%;  /* Adjust the width as needed */
    background-color: #fff;
    padding: 10px 0;  /* Space around the menu items */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  /* Add a subtle shadow */
    opacity: 0;  /* Hidden by default */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;  /* Smooth slide and fade */
    z-index: 999;  /* Ensure it's above other content */
}

/* Show menu when the .active class is added */
.mobile-nav-menu.active {
    transform: translateX(-50%) translateY(0);  /* Drop down into view */
    opacity: 1;  /* Fully visible */
    display: flex;  /* Ensure it switches to flex display */
}

/* Menu items layout */
.mobile-nav-menu ul {
    display: flex;
    flex-direction: column;  /* Stack items vertically */
    align-items: center;  /* Center items horizontally */
    margin: 0;  /* Reset default margin */
    padding: 0;  /* Reset default padding */
    list-style: none;  /* Remove default list styling */
}

/* Menu items spacing */
.mobile-nav-menu ul li {
    margin: 10px 0;  /* Adds spacing between menu items */
}

/* Logo click as menu toggle (ensure it's styled appropriately) */
#logo {
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Smooth fade-out transition */
}

/* Fade-out class for the logo */
#logo.fade-out {
    opacity: 0;  /* Fully transparent */
    visibility: hidden;  /* Makes it unclickable */
}

/* Hide the menu on desktop */
@media (min-width: 769px) {
    .mobile-nav-menu {
        display: none !important;  /* Hide the mobile menu on desktop */
    }
}
  
}
