* {
	margin: 0; padding: 0; box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16.5px;
}

body {
	font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
	background-color: #f5f7fa;
	color: #333;
	line-height: 1.5;
	font-size: 1rem;
	font-weight: 300;
	padding-top: 60px;
}

a {
	text-decoration: none;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 50px;
	height: 60px;
}

.logo {
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.logo img {
	height: 50px;
	margin-right: 10px;
	vertical-align: bottom;
}

.logo a {
	color: #262425;
	font-size: 22px;
	font-weight: 600;
	text-decoration: none;
}

.brand-name {
	vertical-align: super;
}
	
.navbar ul {
	list-style: none;
	display: flex;
}

.navbar ul li {
	position: relative;
}

.navbar ul li a {
	display: block;              
	padding: 15px 25px;
	height: 60px;                 
	white-space: nowrap;
	color: #D46A6A;
	text-decoration: none;
	font-weight: 400;
	font-size: 1rem;
	position: relative;          
	transition: color 0.3s;
}

.navbar ul li a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0%;
	height: 2px;
	background-color: #D46A6A;
	transition: width 0.3s ease;
}

.navbar ul li a:not(.active-item):hover::before {
	width: 80%;
}

.navbar ul li a.active-item::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;  
	height: 2px;
	background-color: #D46A6A;
}

.menu-toggle {
	display: none;
	font-size: 1.5em;
	color: #D46A6A;
	cursor: pointer;
}

section {
	padding: 0 20px;
	padding-top: 70px;
}

section p {
	margin-top: 10px;
	text-align: left;
}
    
section h2 {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #6D9976;
}

iframe {
	width: 100%;
	border: 0;
}

footer {
	background-color: #D46A6A;
	color: #fff;
	text-align: center;
	padding: 20px;
}

footer a {
	color: #fff;
	margin: 0 10px;
}

footer a:hover {
	color: #333;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.service-box {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease;
}

.service-box:hover {
	transform: translateY(-5px);
}

section h3 {
	margin-bottom: 10px;
	color: #8183BC;
	font-size: 1.25rem;
	font-weight: 500;
}

.service-box p {
	color: #333;
	line-height: 1.5;
}

.service-box ul {
	padding-left: 25px;
	padding-top: 10px;
}

#contact {
	background-color: #6d997626;
	padding: 60px 20px;
}

#contact p {
	margin-top: 10px;
	text-align: left;
}

.contact_rsvp {
	font-size: 1.1rem;
	font-weight: 300;
	padding-top: 10px;
}

.contact-info {
	margin-bottom: 30px;
	font-size: 1.15rem;
	font-weight: 400;
}

.contact-info a {
	color: #264653;
}

.contact-info a:hover {
	color: #8183BC;
}

.contact-info i {
	margin-right: 10px;
	color: #6D9976;
	font-size: 20px;
}

.fa-map-marker-alt {
	margin-right: 15px !important;
}

.map-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.map-wrapper iframe {
	margin-top: 15px;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#space .intro {
	margin: 0 auto 40px;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.gallery img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.gallery img:hover {
	transform: scale(1.03);
}

.social-links {
	margin-top: 10px;
}

.social-links i {
	font-size: 25px;
}

.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.team-member {
	display: flex;
	background-color: #fff;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	align-items: center;
}

.team-member img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 20px;
}

.member-info {
	flex: 1;
}

.member-info h3 {
	margin: 0 0 10px;
}

.video-block {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 30px 0;
	align-items: center;
	background-color: #fff;
	border-radius: 8px;
    padding: 15px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.video-left {
	flex: 1 1 400px;
	max-width: 640px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
}

.video-left iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.video-right {
	flex: 1 1 300px;
	max-width: 600px;
}

.hero-full {
	position: relative;
	width: 100%;
	min-height: 500px; 
	height: auto;      
	display: flex;
	justify-content: center;
	align-items: center;
	background: url('../images/hero_image.png') no-repeat center center/cover;
}

.hero-overlay {
	position: absolute; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;       
	background-color: rgba(0,0,0,0.45);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 100px 20px;
	box-sizing: border-box;
}

.hero-content {
	max-width: 1000px;
	text-align: center;
	z-index: 2;
	color: #fff;
	padding: 20px;
}

.hero-content h1 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 50px;
	color: #ffffff;
	padding-top: 10px
}

.hero-content .heading-row {
	width: 100%;
}

.hero-content .heading-row.left { 
	text-align: left; 
}

.hero-content .heading-row.right { 
	text-align: right; 
}

.hero-content h3 {
	display: inline-block;
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #f5f5f5;
	background: #8183bc6e;
	padding: 15px;
}

.hero-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #f5f5f5;
}

.hero-button {
	display: block;
	width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
	padding: 12px 25px;
	background-color: #D46A6A;
	color: #fff;
	border-radius: 30px;
	font-weight: 500;
	transition: background 0.3s;
}

.hero-button:hover {
	background-color: #b55454;
}

@media (max-width: 1024px) {
	html {
		font-size: 16px;
	}
	
	.navbar ul {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: #fff;
		flex-direction: column;
		align-items: center;
		display: none;
	}

	.navbar ul.active {
		display: flex;
	}

	.navbar ul li {
		margin: 0;
	}
	
	#nav-menu li {
		width: 100%;
		position: relative;
	}

	#nav-menu li a {
		display: flex;           
		align-items: center;       
		justify-content: center;
		width: 100%;
		height: 65px;
		color: #D46A6A;
		text-decoration: none;
		text-align: center;
		transition: background 0.3s;
		border-right: none;
	}
  
	.navbar ul li a::before {
		display: none;
	}

	.navbar ul li a:hover:not(.active-item) {
		border-right: 4px solid #D46A6A;
		background-color: rgba(212,106,106,0.05);
	}

	.navbar ul li a.active-item {
		border-right: 4px solid #D46A6A;
		background-color: rgba(212,106,106,0.1);
		color: #D46A6A;
	}
  
	.navbar ul li a.active-item::after {
		display: none !important;
		content: none !important;
	}
	
	.navbar ul li a.active-item {
		background-color: rgba(212,106,106,0.15);
		color: #D46A6A;
		border-right: 4px solid #D46A6A;
		font-weight: 500;
	}

	
	.navbar ul li a:hover:not(.active-item) {
		background-color: rgba(212,106,106,0.07);
	}
  
	#nav-menu li + li a {
		border-top: 1px solid rgba(212,106,106,0.1);
	}

	.menu-toggle {
		display: block;
	}
	
	.team-member {
		flex-direction: column;
		text-align: center;
	}

	.team-member img {
		margin: 0 auto 15px;
	}

	.member-info {
		text-align: center;
	}
	
	.video-block {
		flex-direction: column;
	}

	.video-left, .video-right {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 16px;
	}
	
	.hero-content h1 {
		font-size: 1.5rem;
	}
	
	.hero-content h3 {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 15.5px;
	}
	
	.hero-content h1 {
		font-size: 1.35rem;
		margin-bottom: 20px;
	}
	
	.hero-content h3 {
		font-size: 1rem;
	}
	
	.service-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
  
}

@media (max-width: 340px) {
	html {
		font-size: 15px;
	}
	
	.hero-content h1 {
		font-size: 1.25rem;
		margin-bottom: 15px;
	}
	
	.hero-content h3 {
		margin-bottom: 10px;
	}
  
	.service-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}