@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");


/* Overall page designs, fonts and colors */
:root {
    --primary: #000000; /* Black from the text */
    --secondary: #f5edea; /* Light beige from the background of the figure */
    --green: #8B8D77; /* Subtle greenish tint for a neutral tone */
    --secondary-light: #F5F0ED; /* Lighter shade of beige */
    --secondary-light-2: #F9F7F5; /* Very light, almost white tone */
    --white: #FFFFFF; /* Pure white */
    --black:  rgb(38, 56, 1); /* Black, for text and accents */
    --shadow: 0px 2px 8px 0px var(--green); /* Subtle shadow effect */
  }

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif; /* Body text */
}
  
body {
    /* background-color: var(--secondary-light-2); */
     /* Soft background to keep it light and neutral */
    color: var(--black); /* Text in black for better readability */
    /* width: fit-content;
    height: auto; */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif; /* Headings for a bold and elegant style */
  }

h1 {
    font-size: 2.5rem; /* Large heading */
}
h2 {
    font-size: 2rem; /* Medium heading */
}
p {
    font-size: 1.1rem; /* Standard paragraph size */
}

/* Navigation bar */
.nav {
    display: flex;
    z-index: 3;
    position: fixed;
    width: 100%;
    align-items: center;
    justify-content: space-between; 
    height: 75px;
    background-color: var(--secondary);
    box-shadow: var(--shadow);
}


/* Logo on the left */
.logo {
    height: 70px; /* Adjusted height to match the navbar */
    padding: 0 5%;   /* Removed the large padding */
    border-radius: 100px;
}

/* Navbar links on the right */
.navbar {
    justify-content: flex-end; /* Aligns links to the right */
    align-items: center; 
}

.navbar a {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--black); /* Black for the base color */
    text-decoration: none;
    margin: 0 2rem;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

nav a:hover {
    color: #8B8D77; /* Subtle greenish tone */
}

/* Button styling */
nav button  {
    background-color: var(--green); 
    color: var(--white); /* White text */
    padding: 10px 5px;
    margin-right: 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

nav button:hover {
    background-color: rgb(140, 197, 25); 
}
/* Sticky connect icons */
.ConnectIcons {
    position: fixed;
    bottom: 22px;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
  }
  
  .ConnectIcons a {
    margin: 0 0.4rem;
    color: var(--primary);
    font-size: 1.6rem;
    padding: 10px; /* Increase the padding for larger touch area */
    transition: color 0.3s ease;
}
  
.ConnectIcons a:hover {
    color: var(--green); /* Subtle greenish color on hover */
  }
.img_stats{
    display: flex;
}


/* Home page */

.img_stats{
    display: flex;
    flex: 1;
    
}
/* .Home {
    width: 1200px;
    height: 1920px;
} */
#Homeimg {
    height: 90%;
    width: 160%;
    margin-top: 100px;
    margin-bottom: 0px;
    -webkit-filter: drop-shadow(10px 10px 0 #e2d6d0)
    drop-shadow(-10px -10px 0 #e2d6d0);
    filter: drop-shadow(10px 10px 0 #e2d6d0) 
    drop-shadow(-10px -10px 0 #e2d6d0);
}

.statistics{
    display: flex;
    margin-left: 25%;
    margin-top: 8%;
    width: 20%;
    flex: 1; 
}

.org, .people, .fund, .projects{
    padding: 30px ;
    margin: 30px;
    background-color: #8B8D77;
    border-radius:30px;
    color: #f5edea;
    text-align: center; 
    box-shadow: var(--primary);
    -webkit-filter: drop-shadow(8px 8px 0 #e2d6d0)
    drop-shadow(-8px -8px 0 #e2d6d0);
    filter: drop-shadow(8px 8px 0 #e2d6d0) 
    drop-shadow(-8px -8px 0 #e2d6d0);
}

.org h2, .people h2, .fund h2, .projects h2{
    color: #000000;
    
}

.empowering-quote {
    padding:150px 80px 0px 80px;
    font-family: "Poppins", sans-serif; /* Modern, clean, and bold sans-serif font */
    font-size: 1.8rem; /* Balanced large font size */
    font-weight: 600; /* Bold for impact */
    color: rgb(38, 56, 1); /* Use the subtle greenish tint from your palette */
    text-align: center; /* Center-aligned for visual focus */
    line-height: 1.8; /* Well-spaced lines for readability */
    width: 100%; /* Limit the width for better layout control */
}


/* Background logo styling */
.background-logo {
    z-index: -2;
    position: absolute; 
    top: 12%; /* Align to the top */
    left: 42%; /* Align to the left */
    width: 20%; /* Cover the full width of the container */
    height: 40%; /* Cover the full height of the container */
    opacity: 0.5; /* Low opacity for subtle effect */
    pointer-events: none; /* Make sure it doesn't interfere with clicking or interactions */
}

/* About page */
.About{
    padding-top: 20px;
    background-color: #e2d6d0;
}
.About img{
    height:400px;
    /* opacity: 0.9; */
    width:  100%;
    padding: 0px;
    margin: 0px;
    -webkit-filter: drop-shadow(8px 8px 0 #ffffff)
    drop-shadow(-8px -8px 0 #ffffff);
    filter: drop-shadow(8px 8px 0 #ffffff) 
    drop-shadow(-6px -6px 0 #ffffff);
}

.About h1{
    padding-top: 40px;
    padding-bottom: 30px;
    margin-top: 20px;
    text-align: center;
    font-family:"Poppins", sans-serif;
}
.About p{
    color:  rgb(38, 56, 1);
    text-align:justify;
    font-size: 20px;
    padding: 0px 90px 0px 90px;
    justify-content: center;
    line-height: 1.4;
    font-size: 1.3rem;
    font-weight: 400;
    
}
.About button{
    margin-left: 700px;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    border-radius: 10px;
    align-items: center;
    cursor: pointer;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #ffffff;
    transition: background-color 0.3s ease;
}

.About button:hover{
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
}


/* Project Section */

.Project h1{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    padding: 40px 20px 0px 100px ;
    color:  rgb(38, 56, 1);
}
.Projects{
    height: 480px;
    display: flex;
    margin: 50px;
    margin-left: 20px;
}
.ParsaProject, .HeartheQueer, .Pratidhwani, .ProjectPlaycard{
    flex: 1;
    background-color: #e2d6d0;
    margin-left: 80px;
    border-radius: 10px;
    /* border: 1px solid #8B8D77; */
    box-shadow: var(--shadow);
}
.ParsaProject img, .HeartheQueer img, .Pratidhwani img, .ProjectPlaycard img{
    width: 100%;
    height: 50%;
    border-radius: 10px;
}

.Projects p{
    text-decoration: none;
    font-size: 0.9rem;
    color:  rgb(38, 56, 1);
    padding: 10px 25px;
}
.Projects p.description{
    text-decoration: none;
    font-size: 1rem;
    color: var(--black);
    padding: 10px 25px;
}

.Project a {
    text-decoration: none;
}

.Projects h2{
    text-decoration: none;
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    padding: 0px 25px;
}

/* Add smooth transition to the div itself */
.Projects > div {
    transition: transform 0.5s ease; /* Ensure smooth transform transition */
}

/* On hover, apply transformation and color changes */
.Projects > div:hover {
    transform: translateY(-5px); /* Move the div up */
    color: #8B8D77; /* Change color of the div */
}

/* On hover, change color and transform text and description */
.Projects > div:hover h2, 
.Projects > div:hover p.description {
    color: #8B8D77; /* Change color of text */
    transform: translateY(-5px); /* Move text up */
    transition: color 0.5s ease, transform 0.5s ease; /* Smooth transition for both */
}


/* Collaborated with */

.Collaborated{
    margin-top: 100px;
    background-color: #8B8D77;
}

.Collaborated h1{
    text-align: center;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    font-weight: 500;
    color:#FFFFFF;
    padding-bottom: 30px;
}
.Collab_logo1, .Collab_logo2{
    display: flex;
    align-items: center;
    justify-content:flex-end;
}

.Collab_logo1 img, .Collab_logo2 img{
    height: 140px;
    width: 160px;
    background-color: #FFFFFF;
    border-radius: 500px;
    display: flex;
    margin: 0px 90px 40px 30px;
    padding: 10px;
}



/* Contact Section */
.contact{
    display: flex;
    background-color: #e2d6d0;
}
.social, .contact_logo, .Gallery{
    flex: 1;
}
.contact h1{
    font-family: "Poppins", sans-serif; /* Body text */
    color: #000000;
    font-size: 2rem;
    font-weight: 300;
    margin: 0px 80px;
    padding-top: 30px;
}
.social h2{
    font-family: "Poppins", sans-serif; /* Body text */
    font-weight: 100;
    font-size: 1rem;
    padding: 0px;
    margin: 10px 70px;
    font-family: 'Times New Roman', serif;
    color: #000000;
}
.social a{
    color: #ffffff;
}
.social i{
    padding: 10px;
}

.Gallery img{
    text-align: center;
    height: 200px;
    width: 400px;
    border: #000000 solid 2px;
    border-radius: 50px;
    margin: 20px 0px 20px 70px;
    /* z-index: 3; */
}
.Gallery:hover img {
    opacity: 0.6;
    z-index: 1;
    border: #ffffff solid 2px;
}
.Gallery h1{
    color: #ffffff;
    border-radius: 30px;
    position: absolute;
    z-index: 3;
    margin-top: 130px;
    padding-left:130px ;
}
.contact_logo img{
    height: 180px;
    width: 150px;
    margin: 20px 0px 20px 260px;
}


/* Footer */
footer {
  background-color:#8B8D77;
  color: var(--black);
  text-align: center;
  padding: 0.08rem;
}

/* Hide the hamburger icon by default (on larger screens) */
.icon {
    display: none;  /* Hide the hamburger icon by default */
}

/* Hide the header by default (on larger screens) */
.Header {
    display: none;  /* Hide the header by default */
}

/* Media Queries */
@media only screen and (max-width: 600px)  {
    * {
        scroll-behavior: smooth;
        margin: 0;
        padding: 0;
        list-style-type: none;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif; /* Body text */
        height: auto;
    }
    /* General body styles */
    body {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem; /* Smaller headings */
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem; /* Slightly smaller text */
    }

    .navbar {
        display: none; /* Hide the navbar by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust the top position to make it appear below the navbar */
        right: 0;
        background-color: var(--secondary); /* Background for the dropdown */
        width: 100%;
    }

    .navbar a, .navbar button {
        padding: 10px;
        text-align: center;
        width: 100%; /* Make each link take full width */
        border-bottom: 1px solid #ddd;
    }

    /* Show hamburger menu icon */
    .icon {
        display: block;
        font-size: 1.8rem;
        padding-right: 30px;
        cursor: pointer;
        color: var(--black);
    }

    /* Show header */
    .Header {
        text-decoration: none;
        display: block;
        font-size: 1.5rem;
        text-align: center;
        cursor: pointer;
        color: var(--green);

    }

.ConnectIcons a {
    font-size: 1.2rem;
    padding-right: 2px;
}
  
.Home {
    width: 100%;
    height: auto;
}
#Homeimg {
    height: 50%;
    width: 98%; 
    margin-top: 260px;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
}

.image{
    text-align: center;
    align-items: center;

}

.statistics{
    margin-left: 0%;
    right: 70%;
    width: 20%;
    z-index: -2;
    position: absolute; 
    margin-top: 15%;
    margin-bottom: 5%;
}

.top, .bottom{
    flex: 1;
    padding: 10px ;

}

.org, .people, .fund, .projects{
    padding: 10px ;
    margin: 20px;
    border-radius:20px;
    font-size: 0.8rem;
}

.org h2, .people h2, .fund h2, .projects h2{
    color: #000000;
    font-size: 0.8rem;
    
}

.empowering-quote {
    padding:135px 20px 0px 20px;
    font-size: 0.75rem; /* Balanced large font size */
    font-weight: 500; /* Bold for impact */
    line-height: 1.5; /* Well-spaced lines for readability */
    width: 100%; 
}

/* Background logo styling */
.background-logo {
    position: absolute; 
    top: 12%; /* Align to the top */
    left: 35%; /* Align to the left */
    width: 30%; /* Cover the full width of the container */
    height: 30%; /* Cover the full height of the container */
    pointer-events: none; 
}


/* About page */

.About h1{
    padding: 20px 50px 30px 50px;
    font-size: 1.2rem;
    font-weight: 700;
}
.About p{
    font-size: 20px;
    padding: 0px 30px 0px 30px;
    line-height: 1.3;
    font-size: 1rem;
    font-weight: 400;
    
}
.About img{
    height:200px;
    width:  100%;
    margin-top: 20px;
}

.LearnMore{
    display: none;
}

/* Project Section */
.Project h1{
    font-size: 1.5rem ;
    text-align: center;
}
.Projects {
    flex-direction: column; /* Stack projects vertically */
    height: auto; /* Remove fixed height */
    width: 60%;
    margin-left: 110px;
}

/* Adjust the layout of each project block */
.ParsaProject, .HeartheQueer, .Pratidhwani {
    flex-direction: column; /* Stack image and text vertically */
    margin-bottom: 40px; /* Space between blocks */
    margin-left: 10px;
    margin-right: 10px;
    align-items: center;
    width: 100%; 
}

/* Adjust image size */
.ParsaProject img, .HeartheQueer img, .Pratidhwani img {
    width: 100%; /* Image takes full width */
    height: 200px; /* Let the height adjust automatically */
    border-radius: 10px; /* Make the corners round */
}

/* Description text styling */
.ParsaProject .description, 
.HeartheQueer .description, 
.Pratidhwani .description {
    font-size: 0.6rem;
    padding: 5px;
    margin: 2px;
}

/* Project title and description styling */
.Projects h2 {
    padding: 5px 5px;
    font-size: 1rem;

}

/* Adjust the paragraphs to be more readable on mobile */
.Projects p {
    font-size: 0.8rem;
    padding: 5px 5px;
}

.Projects p.description {
    font-size: 0.8rem;
    padding: 5px 5px;
}
.Project{
    height: auto;
    margin: 0px;
    width: 100%;
}

/* Show only the first set of logos in mobile view */
/* .Collaborated .Collab_logo:nth-child(2) {
    display: none;
} */
.Collaborated{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
}
/* Adjust the logo size for mobile */
.Collab_logo1 img {
    align-items: center;
    border-radius: 100px;
    text-align: center;
    margin: 10px 10px 30px 20px;
    height: 100px;
    padding: 20px ;
    width: 80px; /* Adjust to 30% to fit 3 logos per line */
    background-color: #FFFFFF;
    border-radius: 500px;
}

.Gallery img{
    width: 65%;
}

.Gallery h1{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin:100px 150px 5px 50px;
}

.social{
    display: none;
}

.contact_logo{
    display: none;
}
.HeartheQueer{
    display: none;
}
.Collab_logo2{
    display: none;
}
}



/* When the menu is active, show the navigation links */
.navbar.active {
    display: flex;
}

.navbar a:hover {
    color: #8B8D77; /* Subtle greenish tone on hover */
}