/* General Styles */
body {
   
    font-family: 'Inter', sans-serif;
    background: white;
    color: black;
    margin: 0;
    padding: 0;
}

/* Password Screen */
#password-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-box {
    background: white;
    padding: 20px;
    color: black;
    border-radius: 10px;
}

#password-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px); /* Blurs the background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}



/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: linear-gradient(to bottom right, rgba(127, 176, 169, 0.9), rgba(127, 176, 169, 0.1));
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
	z-index: 1000; 
}

header {
    display: flex;
    align-items: center;  /* Aligns items vertically */
   /*justify-content: space-between; /* Logo on left, nav on right */
    padding: 10px 20px;
    background: linear-gradient(to bottom right, rgba(127, 176, 169, 0.9), rgba(127, 176, 169, 0.1));
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* Adjust based on design */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.logo img {
    max-height: 60px; /* Ensures the logo is no taller than 60px */
    width: auto; /* Maintains aspect ratio */
}
/* Push down the main content to avoid overlap */
main {
    padding-top: 80px; /* Adjust based on header height */
	padding-left:80px;
	padding-right:80px;
}
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}


nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 50px;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        padding: 20px;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* Expandable Sections */
.expandable h2 {
    background: rgba(90, 137, 131, 0.9);
    width: fit-content;
    padding: 10px 10px;
    border-radius: 5px;
	min-width: 200px;
}

.content {
    display: none;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.timeline-item .date {
    font-weight: bold;
    min-width: 120px;
    text-align: right;
}

.timeline-item .line {
    width: 2px;
    background: lightgray;
    flex-grow: 1;
}

.timeline-item .details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    flex-grow: 2;
}

//*.timeline::before {
    content: "";
    position: absolute;
    left: 160px;
    width: 2px;
    height: 100%;
    background: lightgray;
}*/
#contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
}
.contact-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

#image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
}

#full-image {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

#image-viewer span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.expandable h2 {
    background: rgba(90, 137, 131, 0.3); /* 30% transparency */
}

.content {
    display: block; /* Ensure it's block for smooth height transition */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.content.show {
    max-height: 2000px; /* Large enough to cover any content dynamically */
    opacity: 1;
}
.timeline {
    position: relative;
}
.timeline-item {
    display: flex;
    align-items: center;
}
.timeline .date {
    width: 150px;
    text-align: right;
}
.timeline .line {
    width: 2px;
    height: 100%;
    background: lightgray;
    margin: 0 15px;
}
.timeline .details {
    flex-grow: 1;
}
.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item .date {
    font-weight: bold;
    min-width: 120px;
    text-align: right;
    margin-right: 20px;
}

.timeline-item .line {
    width: 2px;
    background: lightgray;
    height: 100%;
    position: absolute;
    left: 150px;
    top: 10px;
}

.timeline-item .details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    flex-grow: 2;
    max-width: 500px;
}
.thumbnail {
    max-height: 100px;
    width: auto;
    cursor: pointer;
    border-radius: 5px;
}
.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-box textarea {
    height: 120px;
    resize: none;
}

.contact-box button {
    background: #5a8983;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-box button:hover {
    background: #48746c;
}
.expand-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(90, 137, 131, 0.7);
    width: 100%;
    padding: 15px;
    border-radius: 5px;
}

.expand-header h2 {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    font-size: 20px;
}

.expand-btn {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #222;
}
/* About Section */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 40px;
    width: 100%;
}

.profile {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and text */
    max-width: 800px; /* Adjust width as needed */
}

/* Text Styling */
.profile .info {
    flex-grow: 1;
}

/* Profile Image */
.profile-img {
    width: 150px; /* Adjust the size as needed */
    height: auto;
    border-radius: 50%; /* Makes the image circular */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        width: 120px; /* Slightly smaller for mobile */
        margin-top: 15px;
    }
}
/* Hide extra details initially */
.extra-details {
    display: block; /* Ensure it's block for smooth height transition */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

/* Show extra details with fade-in effect */
.extra-details.show {
    opacity: 1;
    max-height: 500px; /* Adjust based on content */
}




/* Style the "More" button */
.more-btn {
    background: #5a8983;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 5px;
    border-radius: 5px;
    transition: background 0.3s;
}

.more-btn:hover {
    background: #48716a;
}
.personal-quote {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    color: #444;
    margin-top: 10px;
    padding: 10px;
    border-left: 4px solid #5a8983;
    display: inline-block;
}
footer {
    background: rgba(0, 0, 0, 0.8); /* Dark semi-transparent */
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    position: relative;
    width: 100%;
    bottom: 0;
}
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px; /* Added padding to the whole container */
}

/* Left Column - Contact Info */
.contact-info {
    flex: 1;
    min-width: 250px;
    padding: 20px; /* Add padding inside the column */
    border-radius: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin: 10px 0;
}

.contact-info i {
    font-size: 20px;
    color: #5a8983; /* Icon color */
}

/* Right Column - Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px; /* Add padding inside the column */
    border-radius: 10px;
    background: rgba(90, 137, 131, 0.1); /* Light background for better contrast */
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #5a8983;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #48706a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 10px; /* Reduce padding on smaller screens */
    }

    .contact-info,
    .contact-form {
        padding: 15px; /* Keep a nice spacing in mobile view */
    }
}
/* ✨ Blurred Background Instead of Black */
#password-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(7px); /* Blurred effect */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ✨ Modern Password Box */
.password-box {
    background: white;
    padding: 25px;
    color: black;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
}

.password-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-box button {
    width: 100%;
    background: #5a8983;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.password-box button:hover {
    background: #4a7770;
}

/* ✨ Request Access Pop-Up */
#request-access-popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 350px;
}

.popup-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-box button {
    width: 100%;
    background: #5a8983;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-box button:hover {
    background: #4a7770;
}
