:root {
	--primary-black: #231f20;
	--primary-gold: #fecc00;
	--soft-white: #fafafa;
	--light-gray: #f5f5f5;
	--medium-gray: #e0e0e0;
	--text-gray: #4a4a4a;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--text-gray);
	background: linear-gradient(135deg, var(--soft-white) 0%, var(--light-gray) 100%);
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	line-height: 1.6;
}

.background-pattern {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.03;
	background-image: repeating-linear-gradient(45deg, var(--primary-black) 0, var(--primary-black) 1px, transparent 0, transparent 50%),
		repeating-linear-gradient(-45deg, var(--primary-black) 0, var(--primary-black) 1px, transparent 0, transparent 50%);
	background-size: 30px 30px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	position: relative;
	z-index: 1;
}

/* Header & Logo */
.hero {
	text-align: center;
	padding: 3rem 0;
	animation: fadeInDown 1s ease-out;
}

.logo-container {
	display: inline-block;
	padding: 2rem;
}

.logo {
	max-width: 300px;
	width: 100%;
	height: auto;
	display: block;
}

/* Main Content */
.content {
	background: white;
	border-radius: 25px;
	padding: 4rem;
	margin: 2rem 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
	animation: fadeInUp 1s ease-out 0.3s both;
}

/* Intro Section */
.intro {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 2px solid var(--medium-gray);
	position: relative;
}

.tagline {
	margin-top: 2rem;
}

.principle {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-black);
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
}

/* About Section */
.about {
	margin-bottom: 3rem;
	padding: 2rem 0;
}

.description {
	font-size: 1.25rem;
	line-height: 2;
	color: var(--text-gray);
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

/* Contact Info */
.contact-info {
	margin-top: 3rem;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.info-item {
	padding: 2rem;
	background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
	border-radius: 15px;
	border: 1px solid var(--medium-gray);
}

.info-item h3 {
	font-family: 'Sura', serif;
	font-size: 1.4rem;
	color: var(--primary-black);
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--primary-gold);
}

.info-item p {
	margin: 0.75rem 0;
	font-size: 1rem;
	line-height: 1.8;
}

.info-item strong {
	color: var(--primary-black);
	font-weight: 600;
}

.info-item a {
	color: var(--text-gray);
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.3s ease;
}

.info-item a:hover {
	color: var(--primary-black);
}

/* Copyable items */
.copyable-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.copyable-value {
	color: var(--text-gray);
}

.copy-btn {
	background: transparent;
	border: 1px solid var(--medium-gray);
	border-radius: 6px;
	padding: 0.3rem 0.4rem;
	cursor: pointer;
	color: var(--text-gray);
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.copy-btn:hover {
	background: var(--primary-gold);
	border-color: var(--primary-gold);
	color: white;
	transform: scale(1.1);
}

.copy-btn:active {
	transform: scale(0.95);
}

.copy-btn svg {
	display: block;
}

/* Copy Notification */
.copy-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background: var(--primary-gold);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.3s ease;
}

.copy-notification.show {
	opacity: 1;
	transform: translateY(0);
}

/* Address link with map icon */
.address-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	line-height: 1.6;
}

.map-icon {
	flex-shrink: 0;
	margin-left: 0.25rem;
	transition: transform 0.3s ease;
}

.address-link:hover .map-icon {
	transform: scale(1.2);
}

/* Footer */
.footer {
	text-align: center;
	padding: 2rem 0;
	margin-top: 3rem;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.under-development {
	margin-bottom: 1.5rem;
}

.dev-badge {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: linear-gradient(135deg, var(--primary-gold) 0%, #d9a915 100%);
	color: white;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 50px;
	box-shadow: 0 5px 20px rgba(240, 191, 26, 0.3);
}

.copyright {
	font-size: 0.9rem;
	color: var(--text-gray);
	opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 5px 20px rgba(240, 191, 26, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 8px 30px rgba(240, 191, 26, 0.5);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	.content {
		padding: 2rem 1.5rem;
	}

	.principle {
		font-size: 1.1rem;
		padding: 0 1.5rem;
	}

	.principle::before,
	.principle::after {
		width: 30px;
	}

	.description {
		font-size: 1.1rem;
	}

	.logo {
		max-width: 300px;
	}

	.logo-container {
		padding: 1.5rem;
	}

	.info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.info-item {
		padding: 1.5rem;
	}

	.info-item h3 {
		font-size: 1.2rem;
	}

	.copyable-item {
		gap: 0.3rem;
	}

	.copy-btn {
		padding: 0.25rem 0.35rem;
	}

	.copy-notification {
		top: 10px;
		right: 10px;
		left: 10px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.principle {
		font-size: 1rem;
		padding: 0 1rem;
	}

	.principle::before,
	.principle::after {
		width: 20px;
	}

	.description {
		font-size: 1rem;
	}

	.logo {
		max-width: 280px;
	}

	.logo-container {
		padding: 1rem;
	}

	.dev-badge {
		font-size: 0.9rem;
		padding: 0.6rem 1.5rem;
	}
}

/* Print Styles */
@media print {
	.background-pattern {
		display: none;
	}
}
