* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}
header{
    position: fixed;
    top:0;
    width: 100%;
}

body {
    top: 0 !important;
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background:black;
    min-height: 130vh;
    width: 100vw;
    font-family: "Lora", serif !important;
}
.navbar {
    position: fixed;
    top: 0;
    left:0;
    width: 100vw;
    height: 9%;
    background: rgba(255, 255, 255, 0);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}
.content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.hamburger{
    display: none;
    width:20px;
    height:20px;
    flex-direction: column;
    cursor: pointer;
}
.hamburger .list {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 4px 0;
}
.close{
    display: none;
    margin-right: 20px;
    flex-direction: column;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1;
    color: white;
}
.close.active {
    display: block;
    z-index: 1002;
}
.hamburger.hide {
    display: none;
}
.content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1.5rem;
    gap: 1.5rem;
}
.navbar .name h1{
    font-size: 36px;
    font-family: "Calibri Light" , sans-serif;
    cursor: pointer;
}
.navbar .content a {
    margin: 0 15px;
    text-decoration: none;

    color: white;
    font-weight: 600;
}
.navbar nav a:hover {
    color: #0073e6;
}
.social-icons{
    width: 100px;
    display: flex;
    justify-content: space-around;

}
.social-link {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social-link:hover {
    color: #0073e6;
}

section{
    margin-top: 5%;
    flex:1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.sign-thumbnail{
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    gap: 10px;
}
.sign-thumbnail img{
    width: 100%;
    color: white;
}
.no-horoscope{
    width: 100%;
    text-align: center;
    color: white;
}

.reading-section{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    color: white;
}
.blogs-container{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.reading{
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.reading-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}
.modal-overlay{
    backdrop-filter: blur(5px);
}
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: purple;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 300px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.modal.active,
.modal-overlay.active {
    display: block;
}
.modal form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.modal form label{
    display: none;
}
.modal form input{
    width: 80%;
    height: 30px;
    padding: 5px;
    outline: none;
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 10px;
}
.modal form button{
    width: 100px;
    height: 30px;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    font-family: cursive;
    color: black;
    transition: 0.5s ease-in-out;
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.4);
}
.modal form button:hover{
    background: #0073e6;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}




.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
}
.footer {
    position: relative;
    bottom: 0;
    left:0;
    width: 100%;
    height:30vh;
    backdrop-filter: blur(5px);
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.designed-by{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:10px;
}
.designed-by a{
    text-decoration: none;
    color:white;
}

.footer p {
    margin: 0;
}
.goog-te-gadget-simple img{
    display: none;
}
.skiptranslate iframe{
    display: none;
}
.skiptranslate span {
    color: black;
}
@media Screen and (max-width: 1121px) {
    .content {
        display:none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        z-index: 1002;
        color: #f0f0f0;
    }
    .hamburger {
        display:block;
        z-index: 1002;
    }
    section{
        margin-top: 10%;
    }

}
@media screen and (max-width: 600px) {
    section{
        margin-top: 15%;
    }
}
@media screen and (max-width: 400px) {
    section{
        margin-top: 18%;
    }
}