/* #1a1d23 - colour */

* {
    font-family: 'Ubuntu', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0; 
  }
  
body {
    background: #2b323c;
    width: 100%;
    height: 100vh;
}

/* BACKGROUND */
canvas {
    display: block;
}

#background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vh;
    height: 100vh;
    z-index: 0;
}

#background {
    width: 100%;
    height: 100%;
    display: block;
}

/* NAVBAR */
  .navigation {
    position: fixed;
    width: 60px;
    height: 100%;
    background: #1a1d23;
    transition: 0.5s;
    overflow: hidden;
    border-top-right-radius: 20px;
    z-index: 10;
  }

.navigation:hover {
  width: 300px;
}

.navigation .buttonContainer {
    position: absolute;
    width: 100vh;
    height: 100vh;
}

.navigation .buttonContainer .topButton {
    position: relative;
    width: 100%;
    list-style: none;
}

.navigation .buttonContainer .topButton:hover {
    background: #787ba3;
}

.navigation .buttonContainer .topButton a {
    position: relative;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: white;
}

.navigation .buttonContainer .topButton a .icon {
    position: relative;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.navigation .buttonContainer .topButton a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}

.navigation .buttonContainer .spanishButton {
    width: 100vh;
    list-style: none;
    position: absolute;
    bottom: 0;
}

.navigation .buttonContainer .spanishButton:hover {
    background: #787ba3;
}

.navigation .buttonContainer .spanishButton a {
    position: relative;
    width: 100vh;
    display: flex;
    justify-content: flex-start;
    text-decoration: none;
    color: white;
}

.navigation .buttonContainer .spanishButton a .icon {
    position: relative;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.navigation .buttonContainer .spanishButton a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}

/* FADE-IN EFFECT */
.header2 {
    display: flex;
    flex-direction: column;
    color: white;
    min-height: 100vh;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-left: 90px;
    padding-right: 30px;
}

.header2 h2 {
    margin-bottom: 25px;
}

h2 {
    font-size: 25px;
    opacity: 0;
    overflow: hidden;
    max-width: auto;
    transition: opacity 2s, transform 2s;
}

.fadeIn {
    opacity: 1;
    transform: translateY(-30px);
}

/* INDEX TEXT */
.header1 {
    display: flex;
    flex-direction: column;
    color: white;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
  
h1 #typewriter1 {
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    font-size: 65px;
    max-width: auto;
    margin-bottom: 80px;
}

h1 #typewriter2 {
    position: fixed;
    margin-top: 40px;
}

h1 #typewriter3 {
    font-size: 40px;
    position: fixed;
    margin-top: 120px;
}

h1 #typewriter4 {
    font-size: 20px;
    position: fixed;
    margin-top: 440px;
}

.pageHeader {
    display: flex;
    color: white;
    height: auto;
    justify-content: center;
}

/* ABOUT ME */
.pageHeader #headerTypewriter {
    margin-top: 25px;
    font-size: 65px;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
}

/* WORK & PROJECTS */
.pageHeader #workTypewriter {
    margin-top: 25px;
    font-size: 65px;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
}

/* QUIROZ 2025 STYLES */
.trip-table-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    overflow-x: auto;
    background: rgba(26, 29, 35, 0.8);
    border-radius: 10px;
    padding: 20px;
}

.trip-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
    font-size: 16px;
}

.trip-table th,
.trip-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #787ba3;
}

.trip-table th {
    background: #1a1d23;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #787ba3;
}

.trip-table tr:hover {
    background: rgba(120, 123, 163, 0.2);
    transition: background 0.3s ease;
}

.trip-table tbody tr:last-child td {
    border-bottom: none;
}

/* Flight status styling */
.trip-table td a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.trip-table td a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

.trip-notes {
    margin-top: 30px;
    padding: 20px;
    background: rgba(26, 29, 35, 0.6);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trip-notes h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
}

.trip-notes ul {
    color: white;
    list-style-type: none;
    padding: 0;
}

.trip-notes li {
    padding: 12px 15px 12px 35px;
    border-bottom: 1px solid rgba(120, 123, 163, 0.3);
    position: relative;
    line-height: 1.5;
}

.trip-notes li:before {
    content: "✈️";
    position: absolute;
    left: 10px;
    top: 12px;
}

.trip-notes li:last-child {
    border-bottom: none;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .trip-table-container {
        padding: 10px;
        margin: 20px 10px;
    }
    
    .trip-table {
        font-size: 14px;
    }
    
    .trip-table th,
    .trip-table td {
        padding: 8px 10px;
    }
}

/* FIN DE QUIROZ */

