:root {
    --accent-color:rgb(251, 176, 64);
	--accent-color-dark: rgb(228, 159, 57);
}


html{
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.parallax {
	/* The image used */
	background-image: url("/eclipse-meeting/eclipse_2.jpg");

	/* Set a specific height */
	min-height: 80vh;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.parallax img {
    margin: 20px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 1));
}

.header {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	padding: 20px;
	/* text-align: center; */
}
.header-title {
	color: whitesmoke;
	font-size: 2.5rem;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.header-sub-title {
	color: whitesmoke;
	font-size: 1.5rem;
	margin: 0 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(0deg, #303130, black);

	/* background: #303130; */
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
}

.nav-brand {
	color: #00ffff;
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: whitesmoke;
	margin: 3px 0;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 8px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	color: whitesmoke;
	text-decoration: none;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.5rem 0;
	display: block;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-color);
	transition: width 0.3s ease;
}

.nav-menu a:hover {
	color: var(--accent-color);
}

.nav-menu a:hover::after {
	width: 100%;
}

/* Mobile Styles */
@media (max-width: 977px) {
	.nav-toggle {
		display: flex;
	}
	
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 70%;
		max-width: 300px;
        background: linear-gradient(0deg, #303130, black);
		/* background: rgba(26, 0, 51, 0.98); */
		flex-direction: column;
		gap: 0;
		padding: 5rem 2rem 2rem;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
		transition: right 0.3s ease;
	}
	
	.nav-menu.active {
		right: 0;
	}
	
	.nav-menu li {
		width: 100%;
		border-bottom: 1px solid #303130;
	}
	
	.nav-menu a {
		padding: 1rem 0;
		font-size: 1.1rem;
	}
	
	.parallax {
		background-attachment: scroll;
	}
}


.content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #333;
}

/* Event Boxes */
.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-box h4 {
    color: #303130;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.event-box i {
    display: block;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-box p {
    margin: 0.75rem 0;
    color: #555;
}

.event-box p strong {
    color: #303130;
}

.event-box button {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
    border: none;
    border-radius: 25px;
    padding: 0;
    margin-top: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(251, 176, 64, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.event-box button a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

button {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
    border: none;
    border-radius: 25px;
    padding: 0;
    margin-top: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(251, 176, 64, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

button a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .events-container {
        grid-template-columns: 1fr;
    }
}


.media-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 20px;
}

.recreation-eat ul {
	list-style-type: disc;
	padding-left: 20px;
}

.recreation-eat li {
	margin-bottom: 8px;
}

.recreation-eat a {
	color: var(--accent-color);
	text-decoration: none;
}


.footer {
    background: #303130;
	background: linear-gradient(0deg,  black,#303130);

    color: whitesmoke;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 2rem;

	display: flex;
	flex-direction: row;
	justify-content: center; /*make this so on mobile it is changed to flex-start*/
	align-items: center;
	flex-wrap: wrap;
}

.footer-contact{
	display: flex;
	flex-direction: column;
	
	padding:25px;
	justify-content: center;
	align-items: flex-start;
}

.footer-contact p {
	margin:4px;
}