/*.henny-penny-regular {
  font-family: "Henny Penny", system-ui;
  font-weight: 400;
  font-style: normal;
}
*/
/*.tinos-regular {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}

.tinos-bold {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: normal;
}

.tinos-regular-italic {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: italic;
}

.tinos-bold-italic {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: italic;
}
*/

/* General Reset */
body, h1, h2, h3, p, ul, ol, nav, footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*header styling*/
header {
    width: max-content;
    display: block;
}




h1.Author_Name {
    font-family: "Henny Penny", system-ui;
    margin-top: 8%;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

/* Body Styling */
body {
    font-family:  "Tinos", serif;
    font-size: x-large;
    background-color: #000000; /* changing currently */
    color: #E7DDFF; /* Dark text for good contrast */
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 0;
}

/* Link Styling */
a {
    color: #E7DDFF; /* Darker purple */
    transition: background-color 0.3s ease, color 0.3s ease;
}

a:visited {
    color: #E7DDFF; /* Slightly different for visited */
}

a:hover {
    background-color: #E7DDFF;
    color: #000;
}

/* Main content wrapper */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centering content */
    width: 100%;
}
#interview {
    display: block;
    text-align: left;
    padding-bottom: 1%;
    padding-left: 1%;
    padding-top: 1%;
    padding-right: 1%;
}

h3 {
    font-size: 0.85em;
}
#extra {
    padding-top: 6%;
}


/* Hero Image: Hidden by default, visible on larger screens or print */
.hero-image {
    display: none;
}

@media screen and (min-width: 550px), print {
    .hero-image {
        display: block;
    }
}

/* Content Wrapper */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.content {
    margin-left: 3%;
    margin-right: 3%;
}

/* Centering Images */
img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

/* Navigation Bar */
nav {
    display: block;
    background-color: rgb(50, 50, 50);
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(0, 0, 0);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px; /* Space between items */
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
    font-weight: bold;
    padding: 0;
    text-align: center;
}

nav ul li a {
    text-decoration: none;
    color: #E7DDFF;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #E7DDFF;
    color: #000;
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 769px) {
    nav {
        background-color:#E7DDFF;
    }
    
    header {
        display: none;
    }
    
    .mobile-nav h3 {
        color: black;
        font-size: 1.5em;
        text-align: center;
        margin: 0;
        padding: 3%;
        font-family: "Henny Penny", system-ui;
    }
    
    .mobile-nav a {
        color: black;
        text-align: left;
        font-size: 1.5em;
        text-decoration: none;
        padding: 3%;
        display: flex;
    }
    
    .mobile-nav a.menu-icon {
        display: flex;
       justify-content: right;
       align-items: center;
       color:#E7DDFF; ;

    }    
    #menu-links a {
        color: black;
    }    
    .menu-icon div {
        height: 50px;
        width: 50px;
        background-color: rgb(50, 50, 50);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .popup {
        display: none;
    }
    #table {
        display: none;
    }
    table, th, td, tr {
        display: none;
    }

    /*Hide tab-desk class*/
 .tab-desk, #menu-links {
    display: none;
}
}

/* Media Query for desktop Viewport  */
@media screen and (min-width: 770px), print {
    /* Tablet Viewport: Show tab-desk class,hide mobile class */
    .tab-desk {
        display: block;
    }
    .mobile, .mobile-nav {
        display: none;
    }
}


/* Footer Styling */
footer {
background-color: rgb(50, 50, 50);
color: #E7DDFF;
width: 100%;
margin-top: 3%;
}

.social {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.social-icon {
    width: 40px;
    height: 40px;
    fill: #E7DDFF; /* Light Cream Color */
    transition: fill 0.3s;
}

.social-icon:hover {
    fill: #bdb4d3; /* Optional hover effect */
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
#table {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Optional: Adjust height as needed */
  }
  
  #table table {
    border-collapse: collapse;
  }
  
  #table th, #table td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
  }
/* Style rules for form elements*/
fieldset, input {
    margin-bottom: 2%;
}

fieldset legend {
    font-weight: bold;
    font-size: 1.25em;
}

label {
    display: block;
    padding-top: 3%;
}
#submit {
    margin: 0, auto;
    color: #E7DDFF;
    display: block;
    padding: 3%;
    background-color: rgb(19, 58, 19);
    font-size: 1em;
}


