/* Reset default styles */
 /*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}*/

/* Full page settings */
html, body {
    height: 100%;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    background-color: white;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
a {
    transition: 0.2s ease
    ;
}

/* Header container */
header {
    position: relative;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, black , silver);
    padding: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Align header content */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* Title */
header h1 {
    font-size: 28px;
    color: white;
}

/* Desktop Navigation buttons */
.header-buttons {
    display: flex;
    gap: 15px;
}

.button {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(to right, black , silver); /* Button background color */
            color: white; /* Button text color */
            text-decoration: none; /* Remove underline from link */
            border: none; /* Remove button border */
            border-radius: 5px; /* Rounded corners */
            cursor: pointer; /* Show pointer cursor on hover */
        }

/* Styled header buttons */
.header-btn {
    background-color: none;
    color: white;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    /*box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);*/
}

.header-btn:hover {
    background-color: silver;
    color: black;
    text-decoration: underline;
    transform: scale(1.1);
}

/* Mobile Menu Icon (☰) - Positioned at the top-right */
.menu-icon {
    display: none; /* Hide on desktop */
    font-size: 28px;
    cursor: pointer;
    color: black;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%); /* Moves icon to top-right */
}

/* Main content wrapper */
main {
    width: 100%; /* Push content below fixed header */
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*min-height: calc(100vh - 200px); */
    /*overflow-y: auto;
    flex-grow: 1;*/
}

.page-title {
    margin: 0;
}

.button-group button {
    margin-left: 10px;
}

/* Profile container (About Me section only) */
.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 0%;
    max-width: 800px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 0pt;
    margin-bottom: 1pt;
}

/* Profile photo */
.profile-photo {
    width: 300px;
    height: 280px;
    border-radius: 10%;
    flex-shrink: 0;
}

/* About Me section */
/*.content {
    flex: 1;
    text-align: justify;
    font-size: 18px;
}*/

/* Footer */
footer {
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: white;
    background: linear-gradient(to right,black , silver);
    position: flex;
    bottom: 0;
    left: 0;
}

.expanded-corners {
    padding: 25px;
    border-radius: 10px;
  }


a.email-link {
    color: greenyellow; /* Change to your desired color */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
}
a.email-link:hover {
    color: green; /* Change color on hover */
    text-decoration: underline; /* Optional hover effect */
}

h2 {
    margin-bottom: 15px; /* Space below the heading */
    text-align: center;
}

h3 {
    margin-top: 20px; /* Space above the heading */
    text-align: center;
}

p {
    margin-top: 20px; /* Space above the paragraph */
    margin-bottom: 20px; /* Space between paragraphs */
    text-align: justify;
}

footer p {
    margin-bottom: 5px; /* Adjust the space between paragraphs inside the footer */
    margin-top: 5px; /* Adjust space above the paragraph */
}

.element {
    margin-left: 10px; /* Space between elements */
    margin-right: 10px;
}

/* Mobile View */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        margin-top: auto;
    }

    .menu-icon {
        display: block; /* Show menu icon */
        position: absolute;
        top: 30%;
        left: 90%;
        transform: translateX(-50%);
    }

    .header-buttons {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 20px; /* Align to the right side */
        background: silver;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        padding: 10px;
        width: 150px; /* Control menu width */
        text-align: right;
    }

    .header-buttons a {
        display: block;
        padding: 10px;
        font-size: 18px;
        text-align: right;
    }

    /* Show menu when active */
    .header-buttons.active {
        display: flex;
    }

    .profile-container {
        flex-direction: column;
        text-align: center;
        width: 90%;
        height: 80%;
        margin-top: 80px;
    } /* Closing bracket added here */

    .profile-photo {
        width: 180px;
        height: 190px;
        margin-bottom: 15px;
    }

    .content {
        text-align: center;
        width: 90%;
    }
    .container{
        flex-direction: column;
        text-align: center;
        padding: 25px;
        margin-top: 100px;
        margin-bottom: auto;
    }
    .expanded-corners {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        margin-top: px;
      }
}

@media (min-width: 769px) {
    .header-buttons {
        display: flex; /* Show buttons on larger screens */
        position: static; /* Reset position */
        background: none; /* Remove background */
        box-shadow: none; /* Remove shadow */
        padding: 10px; /* Reset padding */
        height: auto; /* Reset height */
    }
    .header-container {
        flex-direction: column;
        text-align: center;
        margin-top: auto;
    }
    .container {
        flex-direction: row; /* Align items in a row */
        text-align: left; /* Align text to the left */
        padding: 20px; /* Reset padding */
        margin-top: 50px; /* Reset margin */
    }
    .profile-container {
        flex-direction: row; /* Align items in a row */
        text-align: left; /* Align text to the left */
        width: 90%; /* Full width */
        height: auto; /* Reset height */
        margin-top: 50px; /* Reset margin */
    }

    .menu-icon {
        display: none; /* Hide menu icon on larger screens */
    }
}

@media (max-width: 768px) {
    html, body {
        padding-top: 0%; /* Less space on mobile */
        overflow-y: auto;
    }
    main {
        margin-top: 1px;
    }
}

@media (min-width: 769px) {
    html, body {
        padding-top: 0%; /* Less space on mobile */
        overflow-y: auto;
    }
    main {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

ul {
    margin-left: 25px;
    text-align: left;
}

h4 {
    margin-top: 20px; /* Space below the heading */
}

ul, ol {
    padding-left: 1em; /* default for top-level list */
  }
  
  ul ul, ol ol,
  ul ol, ol ul {
    padding-left: 0.5em; /* adjust this for sub-levels */
}

li {
    margin-bottom: 10px;
}

.small-gif {
    width: 300px;
    height: auto;
}

.medium-gif {
    width: 100px;
    height: auto;
}

.large-gif {
    width: 20px;
    height: auto;
}



