html{
    height: 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    overflow-x: hidden; /* prevents horizontal scrolling */
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    font-family: Cormorant;
}

.header{
    background: url("27881.jpg") no-repeat top center fixed;
    background-size: cover;
    background-attachment:fixed;
    height: 800px;
    width: 100%;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    font-size: 50px;
    position: relative;
    overflow: hidden;
}
/* Create a pseudo-element for the background */
.header::before {
    content: '';
    position: fixed; /* Use absolute for mobile fallback */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url("27881.jpg") no-repeat center center; */
    /* background-size: cover; */
    z-index: -1;
}
/* Mobile fallback */
@media (max-width: 768px) {
    .header::before {
        position: absolute;
        height: 100%;
    }
    
    .header {
        background-attachment: scroll !important;
        height: 100vh; /* Use viewport height for mobile */
    }
}

.header-600{
    background-size: cover;
    background: url("stripe-400.png") repeat top center;
    height: 400px;
    width: 100%;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    position: absolute;
    top: 600px;
}
.videod{
    width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    margin-top: 100px; 
    font-size: 24pt;
    text-align: center;
    font-family: Cormorant;
}
.content{
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: 100px; 
    font-size: 24pt;
    text-align: center;
}
.w-50{
    display: inline-block;
    position: relative;
    width: 50%;
    text-align: center;
}
@font-face {
 font-family: 'Miama_Nueva'; 
 src: url(/Miama_Nueva.ttf); 
}
@font-face {
 font-family: 'Cormorant'; 
 src: url(/Cormorant-VariableFont_wght.ttf); 
}
.dropdown-container {
            margin-bottom: 15px;
        }
        
        .dropdown-btn {
            background-color: #00000000;
            color: rgb(0, 0, 0);
            padding: 12px;
            width: 60%;
            border: solid 2px black;
            text-align: left;
            cursor: pointer;
            font-size: 16px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .dropdown-btn:hover {
            background-color: #00000000;
        }
        
        .dropdown-content {
            display: none;
            background-color: #f9f9f9;
            width: 60%;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            border-radius: 0 0 4px 4px;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
        }
        
        .dropdown-content div {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            position: relative;
        }
        
        .dropdown-content div:hover {
            background-color: #f1f1f1;
        }
        
        .show {
            display: block;
        }
        .fonted{
            font-family: Cormorant;
            background-color: white;
        }
        .font-base{
            font-size: 20pt;
        }
        .w-80{
            width: 80%;
            margin: 0 auto;
        }
        .w-90{
            width: 90%;
            margin: 0 auto;
        }
        .w-30{
            width: 30% !important;
            margin: 0 auto;
        }
        .w-20{
            width: 20% !important;
            margin: 0 auto;
        }
        textarea.w-90{
            border-width: 1px;
        }
        
        .timeline {display: block;
            position: relative;
            width: 50%;
            max-width: 655px;
            margin: auto;
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 30px;
        }
        
        .timeline-item-even {
            display: flex;
            margin-left: 20%;
            margin-bottom: 30px;
        }
        .time {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            width: 20%;
            margin-right: 10px;
            text-align: right;
        }
        
        .event {
            text-align: left;
            flex: 1;
            width: 70%;
            border-left: 3px solid #d4a76a;
            padding-left: 10px;
            padding-bottom: 10px;
            max-width: 200px;
        }
        
        .event-title {
            font-size: 20px;
            font-weight: bold;
            color: #d4a76a;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
        
        .event-description {
            font-size: 16px;
            color: #555;
            line-height: 1.4;
        }
        .timeline-tile{
            position: relative;
            display: block;
            margin-bottom: 30px;
            margin-left: 10px;
            margin-right: 30%;
            padding: 0;
            text-align: left;
        }
        .timeline-tile-even{
            position: relative;
            display: block;
            margin-bottom: 30px;
            margin-right: 10px;
            margin-left: 30%;
            padding: 0;
            text-align: right;
        }
