/* --- GLOBAL RESET & FONTS --- */
@font-face {
	font-family: "menufont";
	src: url(https://4love.ge/fonts/bpg_mrgvlovani_caps_2010.woff) format("woff");
	font-weight: 400;
	
	/* FIX 1: This stops the 3-second white screen on mobile */
	font-display: swap; 
}

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

body {
	font-family: 'Segoe UI', Tahoma, sans-serif;
	background: #f0f4f8;
	color: #2d3748;
	overflow-x: hidden;
}

/* --- OPTIMIZATION FOR MOBILE --- */
@media (max-width: 768px) {
	/* Hide heavy orbs */
	.orb { display: none; }
	
	/* Simple gradient background */
	body { background: linear-gradient(135deg, #f0f4f8 0%, #e6e9f0 100%); }

	/* FIX 2: Disable heavy glass blur on mobile navbar */
	.navbar {
		backdrop-filter: none !important;
		background: rgba(255, 255, 255, 0.95) !important;
	}
}

/* --- VARIABLES --- */
:root {
	--primary-color: #e55d87;
	--secondary-color: #5fc3e4;
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-border: 1px solid rgba(255, 255, 255, 0.6);
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- BACKGROUND ORBS --- */
.orb { position: fixed; border-radius: 50%; filter: blur(100px); z-index: -1; }
.orb-1 { width: 500px; height: 500px; background: #e55d87; top: -10%; left: -10%; opacity: 0.15; }
.orb-2 { width: 400px; height: 400px; background: #5fc3e4; bottom: -10%; right: -10%; opacity: 0.15; }

/* --- NAVIGATION --- */
.navbar { 
	position: fixed; 
	top: 0; 
	width: 100%; 
	padding: 15px 0; 
	z-index: 100; 
	backdrop-filter: blur(10px); 
	background: rgba(255,255,255,0.8); 
}

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

.logo { 
	font-size: 24px; 
	font-weight: 800; 
	color: var(--primary-color); 
	text-decoration: none; 
	font-family: "menufont"; 
}

.nav-links { 
	list-style: none; 
	display: flex; 
	gap: 20px; 
}

/* --- MENU LINKS --- */
.nav-links a { 
	text-decoration: none; 
	color: #2d3748; 
	font-weight: 600; 
	font-family: "menufont"; 
	font-size: 14px;
	transition: color 0.3s ease, transform 0.3s ease; 
}

.nav-links a:hover { 
	color: var(--primary-color); 
	transform: translateY(-2px); 
}

.nav-links a.active {
	color: var(--primary-color);
}

.hamburger { 
	display: none; 
	font-size: 24px; 
	cursor: pointer; 
}

/* --- HERO SECTION --- */
.hero-section {
	text-align: center;
	padding: 120px 20px 60px;
}

.hero-content h1 {
	font-family: "menufont";
	font-size: 3rem;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #e55d87 0%, #5fc3e4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-content p {
	font-size: 1.2rem;
	color: #718096;
	max-width: 600px;
	margin: 0 auto;
	font-family: "menufont";
}

/* --- CONTACT GRID --- */
.contact-section { padding-bottom: 100px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

/* CARD DESIGN */
.contact-card {
	background: var(--glass-bg);
	border: var(--glass-border);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	text-decoration: none;
	box-shadow: var(--shadow);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.contact-card:hover {
	transform: translateY(-10px);
	background: white;
}

/* ICONS */
.icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 20px;
	transition: 0.3s;
}

/* Specific Colors */
.fb-messenger { background: rgba(0, 132, 255, 0.1); color: #0084FF; }
.pm-mail { background: rgba(229, 93, 135, 0.1); color: #e55d87; }
.fb-group { background: rgba(24, 119, 242, 0.1); color: #1877F2; }
.ai-bot { background: rgba(95, 195, 228, 0.1); color: #5fc3e4; }

.contact-card:hover .icon-wrapper { transform: scale(1.1); }

.contact-card h3 {
	font-family: "menufont";
	font-size: 1.4rem;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.contact-card p {
	color: #718096;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 25px;
	flex-grow: 1; 
}

.btn-text {
	font-weight: 700;
	font-size: 14px;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
	font-family: "menufont";
}

.contact-card:hover .btn-text { gap: 15px; color: var(--primary-color); }

/* --- FOOTER --- */
footer { text-align: center; padding: 40px; border-top: 1px solid rgba(0,0,0,0.05); color: #a0aec0; }
.footer-logo { font-weight: 900; color: var(--primary-color); margin-bottom: 10px; font-family: "menufont"; }

/* --- ANIMATIONS --- */
.fade-in { animation: fadeIn 1s ease forwards; opacity: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
	.hero-content h1 { font-size: 2.2rem; }
	.nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; width: 100%; background: white; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
	.nav-links.active { display: flex; }
	.hamburger { display: block; }
}