*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1em;
}

/* Header Section */


header {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    position: sticky;
    top: 0;
    padding: 10px 10px;
    z-index: 1000;
    background: rgb(3, 10, 28);
}

header div {
    display: flex;
    align-items: center;
}

header h1 {
    color: white;
    font-size: 1.5em;
    margin-right: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin: 10px;
}


nav ul li a {
    text-decoration: none;
    font-size: 1.15em;
    color: rgb(225, 225, 225);
    padding: 8px 12px;
    margin: 10px;
    border-radius: 30px;
}


nav ul li div {
    display: none;
}

nav ul li a:hover {
    background-color: rgb(255, 230, 125);
    color: rgb(7, 18, 49);
    transition: background 0.3s ease-in-out;
}

header img {
    height: 60px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    margin-left: 15px;
}

.hamburger{
    display: none;
}



/* Mobile Navbar Improvements */
@media (max-width: 768px) {

    header {
        flex-direction: row;
        align-items: center;
        gap: 0;
        justify-content: space-between
    }

    .navbarindex ul {
    display: none; 
    flex-direction: column;
    position: absolute;
    text-align: center;
    font-size: 1.2em;
    top: 60px; 
    left: 0;  
    width: 95%;
    background-color: rgb(3, 10, 28);
    z-index: 999;
    border-radius: 20px;
  }


  /*please so smthin here as it must be connected with .navbarindex ul*/
  
  .navbarindex ul.show-menu{
    display: flex;
    transition: ease-in-out 0.5s;
  }


    nav ul li a{
        font-size: 0.8em;
        display: block;
    }

    header h1{
        font-size: 1em;
        margin-left: 10%;
        text-align: left;
    }

    .hamburger{
        color: #eee;
        font-size: 1em;
        margin-right: 0px;
        text-align: right;
        margin-left: 50%;
        display: flex;
        cursor: pointer;
    }

    header img {
    height: 50px;
    border-width: 1.5px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    margin-left: 15px;
    display: none;
}
    
}

/* Hero Section */
.hero-tab {
    text-align: center;
    padding: 30px 15px;
    background: rgb(240, 240, 240);
    border-radius: 0px;
    border-radius: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-content h2 {
    margin: 10px 0;
    font-size: 1.8em;
}

.hero-content p {
    color: #333;
}

/* CTA Section */
.announcement-tab {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0px;
}

.announcement-tab  p{
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.announcement-tab h1{
    align-self: center;

}

@media (min-width: 800px) {
    .cta div{
    max-width: 220px;
}
}



@media (min-width: 768px) {
    .announcement-tab{
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.announcement{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 500px;
}

      

body {
    background: #eee;
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
  }
  
  .carousel-container {
    position: relative;
    width: 80%;
    max-width: 900px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    margin: 50px auto;
    background-color: #4B2C20;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    position: relative;
    flex: 0 0 100%;
  }
  
  .slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.5s ease-in-out;
  }
  
  /* Victorian Caption with text wrapping */
  .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: rgb(255, 230, 125);
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Garamond', serif;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6),
                 0 0 25px rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    width: 90%; /* Adjust width to fit the screen properly */
    max-width: 80%; /* Max width for larger screens */
    word-wrap: break-word; /* Allow text to break onto multiple lines */
    white-space: normal; /* Allow text wrapping */
  }
  
  /* Hover Effect */
  .slide:hover .caption {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
  }
  
  .slide:hover img {
    filter: blur(5px); /* Apply blur effect on hover */
  }
  


.cta div, .stats div {
    box-shadow: 0 0 0 2px black;
    padding: 15px 20px;
    margin-bottom: 20px;
    background-color: #fdfdfd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease-in-out;
    border-radius: 0.5em;
    height: 10em;
}

.cta div:hover, .stats div:hover {
    background-color: rgb(255, 230, 125);
}

.counter-1, .counter-2{
    font-size: 4.5em;
}



/* Mobile CTA Improvements */
@media (max-width: 1100px) {
    .cta, .stats {
        width: 100%;
        max-width: 300px;
        justify-content: space-between;
    }

    .announcement-tab{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 3em;
        padding-bottom: 2em;
    }

    .announcement{
        display: none;
    }
}

/* Footer Section */
footer {
    display: flex;
    flex-direction: column;
    background-color: rgb(3, 10, 28);
    color: rgb(225, 225, 225);
    padding: 22px;
    margin-top: 0;
    align-items: center;
    justify-content: center;
}

.heart {
    color: red;
    font-size: 1.2em;
}

.link a{
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px;
    align-content: center;
}


/* Blog Gallery Section */
.gal-img {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.categories {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-top: 0;
}

.gal-img div {
    border-radius: 12px;
    height: 200px;
    width: 200px;
    margin: 3.5em;
    text-align: center;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.img img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    transition: all 0.35s ease-in-out;
}

.img:hover img {
    opacity: 0.3;
}

.img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2em;
    background: rgb(7, 18, 49);
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.img:hover .img-text {
    opacity: 1;
}

.filter-thingy h1 {
    text-align: center;
    color: rgb(84, 73, 26);
    font-size: 2em;
}

.filter-thingy{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 8px;
    background-color: rgb(255, 244, 198);
    justify-content: center;
    align-items: center;
}

.filter{
    padding: 1em;
    background-color: white;
    margin: 1em;
    width: 97%;
    text-align: center;
    border-radius: 6px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {

    .gal-img {
        flex-direction: column;
        margin: 50px;
        height: 1000px;
        align-items: center;
    }
    .gal-img div {
        margin: 1em;
        width: 80%;
        height: 100%;
    }

    .img-text {
        font-size: 2em;
        padding: 8px 15px;
        opacity: 1;
        box-shadow: 0 0 20px white;
    }



    .img img{
        opacity: 1;
    }

    .img:hover img{

        opacity: 1;

    }

    .filter-thingy h1 {
        font-size: 1.5em;
    }

    .filter {
        font-size: 0.9em;
        padding: 0.8em;
        width: 92%
    }



}


@media (max-width: 100px) {

    .gal-img {
        flex-direction: column;
        margin: 50px;
        height: 1000px;
        align-items: center;
    }
    .gal-img div {
        margin: 1em;
        width: 400px;
        height: 100%;
    }

    .img-text {
        font-size: 1em;
        padding: 8px 15px;
    }

    .filter-thingy h1 {
        font-size: 1.5em;
    }

    .filter {
        font-size: 0.9em;
        padding: 0.8em;
        width: 92%
    }
}

/*TOP RATED Articles in BLOGS*/

.rated-articles{
    background-color: rgb(182, 180, 180);
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
}

.article-grid{
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin: 20px;
}

.article{
    box-shadow: 0 0 3px black;
    padding: 0;
    background-color: white;
    
}

.rated-articles h1{
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 8px;
    background-color: rgb(255, 229, 125);
    color: rgb(69, 60, 21);
    font-size: 2em;
}

.art-img:hover {
    opacity: 0.6;
}

.art-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(7, 18, 49);
    color: white;
    font-size: 1.05em;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.article:hover .art-text{
    opacity: 1;
}

.article{
    border-radius: 12px;
    height: 540px;
    width: 400px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.article:hover img{
    opacity: 0.3;
}


/* Mobile Responsive Design */
@media (max-width: 768px) {
    .article-grid {
        flex-direction: column;
        padding: 10px;
    }

    .article {
        margin: 10px;
        width: 90%; /* Make the articles more compact */
        height: 28em;
        padding: 0px;
    }

    .article img {
        height: 28em;
        width: 100%;
    }

    .rated-articles h1 {
        font-size: 1.5em;
        padding: 6px;
    }

    .art-text {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}

/* ABOUT PAGE ~ Hero Tab */
.about-hero-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: rgb(240, 240, 240);
    align-items: center;
    justify-content: space-evenly; /* Center aligns all content */
    gap: 40px;
    padding: 50px 0;
}

.about-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-image: url('/TU Pride Logo.png'); /* Add your image path */
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 5px solid #f0f0f0;
}

.about-content {
    flex: 1;
    width: 100%;
    padding-right: 100px ;
    text-align: center;
}

.about-content q {
    display: block;
    font-size: 1.25em;
    font-style: italic;
    color: #333;
    margin-top: 15px;
    font-family: 'Georgia', serif;
    line-height: 1.6;
}


/*ABOUT PAGE ~ About ME SECTION*/



.ws-section .abt-all{
    display: flex;
    padding: 40px;
    background-color: rgb(240, 240, 240);
}

.ws-item{
    text-align: center;
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 180px;
    padding: 50px;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    margin: 30px;
}

.ws-item h3{
    padding-bottom: 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.5em;
}
.ws-item:hover{
    background-color: rgb(255, 230, 125);
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5); /* Subtle shadow */
}

.ws-item p{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 0.95em;
}

.abt{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.56em;
    text-align: center;
    box-shadow: 0 0 4px rgb(7, 18, 49);
    padding: 8px;
    background-color: rgb(7, 18, 49);
    color: white;
    word-spacing: 5px;
}

.abt:hover{
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: text-shadow 0.3s ease-in-out;
}

.me-section h2{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.56em;
    text-align: center;
    box-shadow: 0 0 4px rgb(7, 18, 49);
    padding: 8px;
    background-color: rgb(7, 18, 49);
    color: white;
    word-spacing: 5px;
}


/* Mobile Responsive Design */
@media (max-width: 768px) {

    .about-content pre q{
        text-align: center;
    }

    .me-item{
        font-size: small;
    }

    .abt-all{
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .ws-item {
        width: 100%;
        margin: 10px;
        padding: 10px;
        font-size: 0.9em;
        height: max-content;
    }

    .ws-item h3 {
        font-size: 1.1em;
    }

    .abt, .me-section h2 {
        font-size: 1.1em;
        padding: 6px;
    }

    .about-content {
        padding-right: 0;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .about-content q {
        font-size: 0.8em;
    }

    .ws-section{
        padding: 0;
        margin: 0;
    }

    .ws-item p{
        padding-bottom: 10px;
    }
}



/*ABOUT PAGE ~ More About Author Thingy*/

.me-tab{
    padding: 50px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:1.1em;
    background-color: rgb(240, 240, 240);
}

.me-item{
    padding: 20px;
    background-color: white;
    border: 5px solid;
    border-color: rgb(7, 18, 49);
    margin-bottom: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.me-item ol{
    padding-left: 2.5em;
    padding-top: 5px;
}

.me-item li{
    padding-top: 15px;
}

#edu {
    padding-left: 1.5em;
    padding-top: 5px;
}

.me-item p{
    padding-left: 15px;
    padding-top: 15px;
}

.me-item:hover{
    background-color: rgb(255, 230, 125);
    transition: all 0.3s ease-in-out;
}

/*INDEX HTML PAGE ~ Comment Section*/

.comment{
    text-align: center;
    background-color: rgb(255, 244, 198);
    padding-top: 0;
    padding: 1.5em;
}

.comment h1{
    color: rgb(84, 73, 26);
    font-size: 2em;
    padding-top: 1em;
    margin-bottom: 1em;
}

.com-box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.com{
    padding: 2.5em;
    background-color: rgb(255, 230, 125);
    margin: 1.8em;
    width: 35em;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-top: 4em;
    position: relative;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #FFF9E6;
    position: absolute;
    top: -35px; /* Half of avatar height to make it overlap */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px black;
    }

.com p i{
    font-size: 1.1em;
}

.com p{
    font-size: 0.9 em;
}

.mean-box{
    background-color: rgb(240, 240, 240);
    padding: 2.5em;
}

.mean-content{
    display: flex;
    justify-content: space-between;
}


.mean {
    padding: 0.9em;
}

.ques{
    font-size: 4em;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.mean-2 {
    padding: 0.9em;
    font-size: 1.3em;
}

.logo{
    height: 70px;
    transform: translate(0em, 2em);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(3, 10, 28);
}

@media (max-width: 768px){

    
.comment{
    text-align: center;
    background-color: rgb(255, 244, 198);
    padding: 1em
}

.comment h1{
    color: rgb(84, 73, 26);
    font-size: 1.9em;
    padding-bottom: 1.5em;
}

.com-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.com{
    padding: 2.5em;
    background-color: rgb(255, 230, 125);
    margin: 3em;
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-top: 4em;
    position: relative;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #FFF9E6;
    position: absolute;
    top: -35px; /* Half of avatar height to make it overlap */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px black;
    }

.com p i{
    font-size: 1em;
}

.com p{
    font-size: 0.9em;
}

}

/*QUESTIONNAIRE BOX ~ INDEX PAGE*/

.mean-box{
    background-color: rgb(240, 240, 240);
    padding: 2.5em;
}

.mean-content{
    display: flex;
    justify-content: space-between;
}


.mean {
    padding: 0.9em;
}

.ques{
    font-size: 4em;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.mean-2 {
    padding: 0.9em;
    font-size: 1.3em;
}

.logo{
    height: 70px;
    transform: translate(0em, 2em);
}



/*MOBILE RESPONSIVE*/

@media (max-width:800px){
    .mean-box{
        background-color: rgb(240, 240, 240);
        padding: 1em;
        padding-bottom: 2em;
    }
    
    .mean-content{
        display: flex;
        justify-content: space-between;
    }
    
    
    .mean {
        padding: 0.7em;
    }
    
    .ques{
        align-content: center;
        font-size: 2.3em;
        font-family:Georgia, 'Times New Roman', Times, serif;
        text-align: left;
        line-height: 50px;
    }
    
    .mean-2 {
        padding: 0.9em;
        font-size: 1.1em;
    }
    
    .logo{
        height: 50px;
        border-width: 2px;
        transform: translate(0em,2em);
    }
}

/*INDEX PAGE*/

.hero-content p{
    font-size: 1em;
    padding: 1em;
    font-family: Georgia, 'Times New Roman', Times, serif
}

/*FILTER FUNCTIONALITY*/

.submit-function{
    display: block;
}

.search-function{
    display: flex;
    font-size: larger;
    gap: 1em;
}

.search-function i{
    padding-top: 20px;
}

.search-function p{
    padding-top: 8px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    color: rgb(84, 73, 26);
}

.search-function input{
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    padding: 4px;
    border-radius: 20px;
}

.filter{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 5px;
    justify-content: space-between;
}

.filter-function{
    display: flex;
}

.filter-function div{
    margin-right: 25px;
}

.category-filter-function p, .timeline-filter-function p, .tag-filter-function p{
    margin-bottom: 10px;
}

.category-filter-function, .timeline-filter-function, .tag-filter-function{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(84, 73, 26);
    font-weight: 700;
    font-size: larger;
}

@media (max-width: 786px){


    .search-function{
        display: flex;
        font-size: 1em;
        flex-direction: row;
    }
    
    .search-function i{
        padding-top: 10px;
        margin-left: 20px;
    }
    
    .search-function p{
        padding-top: 3px;
        font-family: Georgia, 'Times New Roman', Times, serif;
        font-weight: 700;
        color: rgb(84, 73, 26);
        font-size: 1em;
    }
    
    .search-function input{
        font-family: Georgia, 'Times New Roman', Times, serif;
        text-align: center;
        padding: 2px;
        border-radius: 20px;
        font-size: 1em;
    }
    
    .filter{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 5px;
        justify-content: space-between;
    }
    
    .filter-function{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .filter-function div{
        margin-right: 25px;
    }
    
    .category-filter-function p, .timeline-filter-function p, .tag-filter-function p{
        margin-bottom: 10px;
        font-size: 1em;
    }
    
    .category-filter-function, .timeline-filter-function, .tag-filter-function{
        font-family: Georgia, 'Times New Roman', Times, serif;
        color: rgb(84, 73, 26);
        font-weight: 700;
        font-size: 1em;
        padding-bottom: 15px;
    }
    .submit-function input{
        text-align: center;
        justify-content: center;
        padding: 4px;
        color:rgb(43, 38, 14);
        background-color: rgb(255, 244, 198);
        border-radius: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .submit-function :hover{
        background-color: rgb(255, 230, 125);
        color: rgb(43, 38, 14);
    }

    .submit-function :active{
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }
}

/*INDEX PAGE ~ GUY IN GREEN*/

.blog-content{
    background-color: rgb(255, 244, 198);
    display: flex;
    padding: 2em 0 2em 2em;
}

.guy-in-green-img img{
    height: 400px;
    width: 350px;
    border-radius: 30px;
}

.guy-in-green-img{
    border-radius: 40px;
    background-color: rgb(255, 230, 125);
    padding: 20px;
}

.guy-in-green-txt h1{
    text-align: center;
    font-size: 3em;
    word-spacing: 0.4em;
    padding: 8px;
    margin-bottom: 30px;
    color: rgb(74, 66, 23);
}

.guy-in-green-txt p{
    font-size: 1.3em;
    padding: 1em;
}

.guy-in-green-txt{
    padding: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1000px){
    .blog-content{
        background-color: rgb(255, 244, 198);
        display: flex;
        padding: 1em 0 1em 1em;
        justify-content: space-between;
    }

    .guy-in-green-img{
        border-radius: 40px;
        background-color: rgb(255, 244, 198);
        text-align: center;
        align-items: center;
        padding-top: 50px;
    }

    .guy-in-green-img img{
        height: 300px;
        width: 300px;
        border-radius: 30px;
        border-width: 10px;
        border-color: rgb(255, 230, 125);
        border-style: solid;
    }
    
    .guy-in-green-txt h1{
        text-align: center;
        font-size: 2em;
        word-spacing: 0.4em;
        padding: 8px;
    }
    
    .guy-in-green-txt p{
        text-align: center;
        font-size: 1em;
    }
    
    .guy-in-green-txt {
        font-size: 1em;
    }
}

@media (max-width: 768px){
    .blog-content{
        background-color: rgb(255, 244, 198);
        display: flex;
        flex-direction: column;
        padding: 1em 0 1em 1em;
        justify-content: space-between;
    }

    .guy-in-green-img{
        border-radius: 40px;
        background-color: rgb(255, 244, 198);
        text-align: center;
        padding-bottom: 0;
    }

    .guy-in-green-img img{
        height: 300px;
        width: 300px;
        border-radius: 30px;
    }
    
    .guy-in-green-txt h1{
        text-align: center;
        font-size: 2em;
        word-spacing: 0.4em;
        padding: 8px;
    }
    
    .guy-in-green-txt p{
        text-align: left;
        font-size: 1em;
        padding: 1em;
    }
    
    .guy-in-green-txt{
        padding-top: 0;
        padding: 10px;
        width: 100%;
        text-align: center;
        padding: 3em;
    }
    
}

/*Link Section - About page*/

.link-section{
    padding: 30px;
    background-color: rgb(255, 244, 198);
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
}

.link-section h1{
    color: rgb(43, 38, 14);
    font-size: 2em;
}

.descy{
    display: flex;
    justify-content: space-between;
}

.desc{
    width: 33.33%;
    margin: 20px;
    height: auto;
    background-color: rgb(255, 230, 125);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.desc h1{
    text-align: center;
    word-spacing: 8px;
    margin: 10px;
    font-size: 1.2em;
    color: rgb(43, 38, 14);
    padding-bottom: 1.5em;
}
.descy a{
    text-decoration: none;
    color: black;
}

.linky{
    display: flex;
    padding: 10px;
    color: #f0f0f0;
}

.link{
    margin: 10px;
}

.link i{
    font-size: 1.5em;
    justify-content: space-between;
    padding: 10px;
}

#IG{
    padding-top: 21px;
}

@media (max-width: 786px) {
    .link-section{
        padding: 30px;
        background-color: rgb(255, 244, 198);
        font-family: Georgia, 'Times New Roman', Times, serif;
        text-align: center;
    }
    
    .link-section h1{
        color: rgb(43, 38, 14);
        font-size: 1.7em;
    }
    
    .descy{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .desc{
        width: 90%;
        margin: 20px;
        height: auto;
        background-color: rgb(255, 230, 125);
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    
    .desc h1{
        text-align: center;
        word-spacing: 8px;
        margin: 10px;
        font-size: 1.0em;
        color: rgb(43, 38, 14);
        padding-bottom: 1.5em;
    }
    .descy a{
        text-decoration: none;
        color: black;
    }
    
    .linky{
        display: flex;
        padding: 10px;
    }
    
    .link{
        margin: 10px;
    }
    
    .link i{
        font-size: 1.2em;
        justify-content: space-between;
        padding: 10px;
    }
    
}


/*FORM IN INDEX ~ EMAIL*/

/* Style for the Subscribe button */
#subscribebtn {
    color: red;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

#subscribebtn:hover{
    color: blueviolet;
}
/* Background Blur */
.blur-background {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9998;
}

/* Popup Form */
.popup-form {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* To add blur effect */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: rgb(255, 244, 198);
    padding: 30px;
    border-radius: 5px;
    border: 2px black;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
    width: 400px;
    text-align: center;
    position: relative;
}

.popup-content h2{
    margin: 10px;
    color: rgb(36, 32, 12);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 800;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
}

.popup-content form input{
    margin: 10px;
    text-align: center;
    font-size: medium;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 5px;
}

.popup-content button{
    margin: 10px;
    text-align: center;
    font-size: medium;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 5px;
    background-color: rgb(255, 230, 125);
    border-width: 2px black;
    border-radius: 8px;
}




/*BLOGGING LETTERS PAGE*/

.right-letter {  width: 25%; 
    background-color: white; 
    margin: 25px; 
    padding: 20px; 
    position: sticky; 
    top: 80px; 
    bottom: 30px;
    display: flex; 
    flex-direction: column; 
    gap: 25px;
    height: fit-content;
    overflow-x: auto;
    white-space: wrap; justify-content: center;
}

.right-letter-1{
    height: fit-content;
    padding: 10px;
}

.right-letter-2{
    height: fit-content;
    padding: 10px
}


    .top-bar {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: left;
    position: sticky;
    top: 0;
    padding: 10px 10px;
    z-index: 1000;
    background: rgb(3, 10, 28);
    }

    .top-bar .back-arrow {
      cursor: pointer;
      font-size: 1.5rem;
      margin-right: 16px;
    }

    .top-bar h1 {
      font-size: 1.3rem;
      margin: 0;
      font-weight: normal;
    }


    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
      font-size: 0.95rem;
    }

    .tag {
      background-color: rgb(255, 230, 125);
      padding: 5px 10px;
      border-radius: 4px;
      font-style: oblique;
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .finishing {
      margin-top: 40px;
      border-top: 1px solid #ccc;
      padding-top: 20px;
    }

    .profile-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      margin-top: 20px;
    }

    .signature {
      margin-top: 20px;
      font-weight: bold;
    }

    .jump-link {
      scroll-behavior: smooth;
    }

    .fa-solid.fa-arrow-left{
        color: white;
        font-size: 2em;
    }

    .top-bar h1{
        margin-left: 30px;
        font-size: 30px;
        color: white;
    }

    .letter-section{
        width: 75%;
        background-color:white;
        margin: 25px;
        padding: 30px;
    }

    .Letters{
        display: flex;
        flex-direction:
        row; gap: 10px;
    }
    .top img{
        width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid #FFF9E6;
            box-shadow: 0 0 8px black;
    }


    /*Media Responsiveness*/
    @media (max-width: 768px) {
        
.right-letter-2 > iframe{
    width: 300px;
    height: 200px;
}

.right-letter {
    width: fit-content; 
    text-wrap: wrap;
    background-color: white;  
    padding: 15px; 
    display: block; 
    position:static;
    height: fit-content;
    margin-top: 0px;
    font-size: 13px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.right-letter-1{
    height: fit-content;
    padding: 10px;
    margin-bottom: 20px;
}

.right-letter-2{
    height: fit-content;
    padding: 10px
}


    .top-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: left;
    position: sticky;
    top: 0;
    padding: 10px 10px;
    z-index: 1000;
    background: rgb(3, 10, 28);
    }

    .top-bar .back-arrow {
      cursor: pointer;
      font-size: 1rem;
      margin-right: 3px;
    }

    .top-bar h1 {
      font-size: 10px;
      margin: 0;
    }


    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 10px;
      font-size: 12px;
      margin-bottom: 20px;
    }

    .tag {
      background-color: rgb(255, 230, 125);
      padding: 5px 10px;
      border-radius: 10px;
      font-style: oblique;
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .finishing {
      margin-top: 40px;
      border-top: 1px solid #ccc;
      padding-top: 10px;
    }

    .profile-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      margin-top: 20px;
    }

    .signature {
      margin-top: 15px;
      font-weight: bold;
      font-size: larger
    }

    .jump-link {
      scroll-behavior: smooth;
    }

    .fa-solid.fa-arrow-left{
        color: white;
        font-size: 25px;
        margin-right: 10px;
    }

    .top-bar h1{
        font-size: 23px;
        color: white;
    }

    .letter-section{
        width: fit-content;
        background-color:white;
        padding: 30px;
        margin-bottom: 20px;
        font-size: 13px;
    }

    .Letters{
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;
    }
    .top img{
        width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid #FFF9E6;
            box-shadow: 0 0 8px black;
    }
    }


    /*BLOGGING on BLOG.HTML*/

    
.blog-container {
  width: 70%;
  margin:  auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-card {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  background-color: rgb(255, 230, 234);
  border: 3.2px solid rgb(3, 10, 28);
  cursor: pointer;
}

.blogml-content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 10px;
    width: 100%;
    background-color: rgb(220, 220, 247);
}

@media (min-width: 900px) {
    .blogml-content:hover{
        background-color: rgb(188, 188, 241);
    }
}

.blog-image img {
  width: 150px;
  height: 200px;
  margin: 10px;
  margin-bottom: 7px;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgb(7, 2, 26);
}

.blog-info{
  display: flex;
  flex-direction: row;
  gap: 10%;
}

.blog-info span {
  font-size: 16px;
  color: rgb(45, 32, 32);
}

.blog-author{
    color: rgb(45, 32, 32);
}

a{
    text-decoration: none;
}

@media (max-width: 768px) {
    .blog-title{
        font-size: 20px;
    }

    .blog-container {
        width: auto;
        margin: 0px;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .blog-info span{
        display: flex;
        flex-direction: row;
        font-size: 15px;
        gap: 10%;
    }

}

.Top-Art-Blog{
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 8px;
    background-color: rgb(255, 229, 125);
    color: rgb(69, 60, 21);
    font-size: 2em;
    margin: 0;
}
@media (max-width: 768px) {
    .Top-Art-Blog{
        font-size: 1.5em;
    }
}

/*SLIDES IMAGES INDEX PAGE*/

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/*NEW FOOTER SECTION*/

		.big-footer {
  background-color: #0a0e1b;
  color: #fff3dc;
  padding: 60px 30px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #ffe1f0;
}

.footer-section p,
.footer-section ul li {
  font-size: 0.95em;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #d0c3ff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  border-top: 1px solid #222;
  padding-top: 20px;
  color: #ccc;
}

.heart {
  color: red;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .social-icons{
	justify-content: center;
  }
}
/* SECTION STYLING */
.rainbow-section {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem 1rem;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 10px #0005;
  text-align: center;
}

.rainbow-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 4px #0009;
}

/* SCROLL AREA */
.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
  align-items: center;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CIRCULAR ICONS */
.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border: 4px solid white;
  box-shadow: 0 0 10px #0007;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.circle:hover {
  transform: scale(1.1) rotate(3deg);
}

/* NAME TEXT */
.name {
  position: absolute;
  bottom: -1.8rem;
  width: 100%;
  font-size: 0.85rem;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  font-weight: bold;
}
