/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

/* General Styles */
body {
	font-family: 'EB Garamond', serif;
	font-size: 200%;
	margin: 0;
	padding: 0;
	background-color: #E6E6FA;
}



/* Header Card */
.card {
	text-align: center;
	padding: 20px;
    	background-color: transparent;
    	margin: 20px auto;
}

/* Center the Logo */
.card img {
    	display: block;
    	margin: 0 auto;
	width: 150px;
	height: 150px;
}

/* Title Styling */
h1 {
    	color: #800000;
        font-family: 'EB Garamond', serif;
    	/*font-family: 'Yatra One', cursive;*/
    	text-align: center;
    	font-size: 2.6em;
    	margin: 0px 0;
}

.card hr {
	border: none;
	height: 4px;
	width: 900px;
	background-color: #800000;
	margin: 1px auto;
}


h2 {
	color: #800000;
        font-family: 'EB Garamond', serif;
    	/*font-family: 'Merriweather', serif;*/
    	text-align: center;
	font-size: 90%;
	margin: 10px 0;
}



/* Navigation Menu */
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: transparent;
	text-align: center;
}

ul li {
	display: inline-block;
	margin: 18px
}

ul li:last-child{
	margin-right:0;

}

ul li a {
	display: inline-block;
	color: black;
	background-color: #B0C4DE;
	text-align: center;
	padding: 14px 30px;
	margin: 0;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	font-size: 25px;
}

ul li a:hover {
	background-color: #D3D3D3;
}

ul li a.active{
	background-color: #D3D3D3;
	font-weight: bold;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.3s ease-in-out;
}


/*The Home Page Content */

.home-content {
	display: flex;
	justify-content: center;
	gap: 100px;
	margin: 180px;
}

.home-box-one {
	flex: 1;
	background-color: #D2B48C;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	text-align: justify;
        overflow: scroll;
	height: 700px;
}

.home-box-two {
        display: inline-block;
	flex: 2;
        border-radius: 10px;
	background-color: #F5F5F5;
        padding: 20px;
	text-align: justify;
        overflow: scroll;
	height: 500px
}

.home-box-one h3{
	font-weight: bold;
	font-size: 35px;
	font-family: 'EB Garamond', serif;
	letter-spacing: 1.5px;
	color: #191970;
}

.home-box-one hr {
        border: none;
        height: 2px;
        width: 350px;
        background-color: #191970;
        margin: 0px auto;
}

.home-box-two h4 {
	font-weight: bold;
	font-size: 50px;
	font-family: 'EB Garamond', serif;
	text-align: left;
	letter-spacing: 0.75px;
}
.home-box-two p {
	font-size: 25px;
	color: #2F4F4F; /* Dark Slate Gray */
	font-family: 'EB Garamond', serif;
	letter-spacing: 1px;
	text-align: justify;
}

/*newsletter section*/
.issues {
	background-color: #E6E6FA;
    	border-radius: 10px;
    	font-family: 'EB Garamond', serif;
    	letter-spacing: 1px;
    	text-align: center;
    	padding: 20px;
    	margin: 20px auto;
    	width: 850px; /* Match the width of the horizontal line */
}

.issue-grid {
    	display: grid;
    	grid-template-columns: repeat(3, 1fr);
    	gap: 20px;
    	margin: 0 auto;
    	width: 100%; /* Ensure the grid takes up the full width */
}

.issue-link {
    	text-decoration: none; /* Remove underline from the link */
    	color: inherit; /* Inherit text color from parent */
    	display: block; /* Make the link a block element */
}

.issue-box {
    	background-color: #FFFFFF;
    	border-radius: 10px;
    	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    	overflow: hidden;
    	transition: transform 0.3s ease, box-shadow 0.3s ease;
    	aspect-ratio: 1.95; 
    	display: flex;
    	flex-direction: column;
    	justify-content: space-between; /* Space out top and bottom sections */
	width: 250px;
}

.issue-box:hover {
    	transform: scale(1.05);
    	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}	

.issue-top {
    	background-color: #2F4F4F;
    	padding: 15px;
    	text-align: center;
    	flex: 1.5; /* Allow the section to grow and fill the box */
    	display: flex;
    	align-items: center;
    	justify-content: center;
}	

.issue-bottom {
    	background-color: #F5FFFA;
    	padding: 15px;
    	text-align: center;
    	flex: 1; /* Allow the section to grow and fill the box */
    	display: flex;
    	align-items: center;
    	justify-content: center;
}	

.issue-number {
	font-weight: bold;
    	font-size: 1em;
    	font-weight: bold;
    	color: #F5FFFA;
    	margin: 0;
}

.issue-month {
    	font-size: 0.6em;
    	color: #2F4F4F;
    	margin: 0;
	padding: 0;
}

/*The team*/

.team{
	width: 80%;
	background-color: transparent;
	padding: 20px;
	border-radius: 10px;
	text-align: center; 
	align-items: center;
	justify-content: center;
	margin: 20px auto;
}

.team h3{
	font-size: 40pt;
	font-color: #800080;
	background:  #e4d1d1;
	border-radius: 5pt;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	margin: 30px auto;
	width: 30%; 
	text-align: center;
}

.students, .volunteers, .president{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	margin-top: 20px;
}

.students-title, .volunteers-title, .president-title{
	font-size: 38px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border: 2px solid #ddd;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	background:  #c2d4dd;
        border-radius: 5pt;
	width: 50%;
}

.students-box, .volunteers-box, .president-box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 75%;
	font-size: 28pt;
	background: #F0F8FF;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.students-box ul, .volunteers-box ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr); 
	gap: 10px 40px; 
	font-size: 20pt;
	text-align: center;
	justify-content: center; 
}


.students-box li, .volunteers-box li{
	margin: 5px 0;
	padding: 3px;
	font-size: 20pt;
}

.president-details{
	padding: 5px;
	text-align: center;
}

/* Footer */
.footer {
    	text-align: center;
    	padding: 10px;
    	background-color: #708090;
    	color: white;
    	position: relative;
    	bottom: 0;
    	width: 100%;
	height: 50%;
    	font-size: 0.9em;
}

