@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&family=Playfair+Display:wght@400;600;800&display=swap');

		:root {
			--fluid-width: 1280.00px;
			--fluid-gap: 54px;
			
			/* 🪐 Fluid Orbits (Golden Ratio Math) */
			--orbit-1: 33.37px;
			--orbit-2: 54.00px;
			--orbit-3: 87.37px;
			--orbit-4: 141.37px;

			--radius: 8px;
			--c-bg: #000000; 
			--c-primary: #E50914; 
			--c-text: #F5F5F5;
			--layer-1: #111111;
			--layer-2: rgba(255, 255, 255, 0.1);
			--edge-light: rgba(255, 255, 255, 0.15);
			--font-body: 'Plus Jakarta Sans', sans-serif;
			--font-heading: 'Playfair Display', sans-serif;
			/* 📏 Fluid Typography Scale */
	--text-xs: clamp(0.75rem, 1vw, 0.875rem);
	--text-sm: clamp(0.875rem, 1.2vw, 1rem);
	--text-base: clamp(1rem, 1.5vw, 1.125rem);
	--text-nav: clamp(1.1rem, 1.5vw, 1.3rem); /* <--- Το νέο δυναμικό μέγεθος για το Header! */
	--text-lg: clamp(1.25rem, 2vw, 1.5rem);
	--text-xl: clamp(1.5rem, 3vw, 2rem);
	--text-xxl: clamp(2rem, 5vw, 3.5rem);

		}

		* { box-sizing: border-box; margin: 0; padding: 0; }
		
		body { 
			background-color: var(--c-bg); color: var(--c-text); 
			font-family: var(--font-body); font-size: 16px; line-height: 1.6; 
			overflow-x: hidden; -webkit-font-smoothing: antialiased;
		}

		.fluid-container { width: 100%; max-width: var(--fluid-width); margin: 0 auto; display: flex; flex-direction: column; position: relative; }
		.fluid-section { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 100px 5%; }
		
		/* --- HERO WRAPPER --- */
		.hero-inner { display: flex; flex-direction: column; max-width: 900px; width: 100%; margin: 0 auto; justify-content: center; position: relative; z-index: 30; }
		.fluid-content { position: relative; z-index: 30; width: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; }
		.no-pad { padding: 0 !important; }
		.fluid-content-wide { max-width: 100%; }

		/* --- BACKGROUNDS & OVERLAYS --- */
		.bg-video, .bg-image, .bg-video-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
		.bg-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)); z-index: 10; pointer-events: none; }

		/* --- TYPOGRAPHY --- */
		.hero-title, .section-title { font-family: var(--font-heading); color: var(--c-text) !important; letter-spacing: -0.03em; }
		.hero-title { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 24px; position: relative; z-index: 30; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
		.section-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 16px; position: relative; z-index: 30; text-align: center; }
		.hero-subtitle, .section-subtitle { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 500; color: var(--c-primary); margin-bottom: 32px; position: relative; z-index: 30; text-shadow: 0 2px 10px rgba(0,0,0,0.5); text-align: center; }
		.hero-text, .section-body { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto 32px auto; position: relative; z-index: 30; line-height: 1.7; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

		/* --- BUTTONS --- */
		.fluid-btn { 
			display: inline-flex !important; 
			width: fit-content !important; 
			padding: 16px 40px; 
			background: var(--c-primary) !important; 
			color: #000 !important; 
			text-decoration: none !important; 
			font-weight: 700; 
			font-size: 1.05rem;
			border-radius: 100px; 
			letter-spacing: -0.01em; 
			transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
			position: relative; z-index: 30; align-self: center; 
			box-shadow: 0 10px 30px rgba(0,0,0,0.2); border: none;
		}
		.fluid-btn:hover { transform: translateY(-4px) scale(1.02); background: #fff !important; box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2); color: #000 !important; }

		/* ========================================================================== */
		/* --- ALIGNMENT MASTERY --- */
		/* ========================================================================== */
		.layout-CENTER { align-items: center !important; text-align: center !important; }
		.layout-CENTER .hero-title, .layout-CENTER .section-title, .layout-CENTER .hero-subtitle, .layout-CENTER .section-subtitle, .layout-CENTER .hero-text, .layout-CENTER .section-body { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
		.layout-CENTER .fluid-btn { align-self: center !important; }

		.layout-LEFT { align-items: flex-start !important; text-align: left !important; }
		.layout-LEFT .hero-title, .layout-LEFT .section-title, .layout-LEFT .hero-subtitle, .layout-LEFT .section-subtitle, .layout-LEFT .hero-text, .layout-LEFT .section-body { text-align: left !important; margin-left: 0 !important; }
		.layout-LEFT .fluid-btn { align-self: flex-start !important; }

		.layout-RIGHT { align-items: flex-end !important; text-align: right !important; }
		.layout-RIGHT .hero-title, .layout-RIGHT .section-title, .layout-RIGHT .hero-subtitle, .layout-RIGHT .section-subtitle, .layout-RIGHT .hero-text, .layout-RIGHT .section-body { text-align: right !important; margin-right: 0 !important; }
		.layout-RIGHT .fluid-btn { align-self: flex-end !important; }


		/* ========================================================================== */
		/* --- NAVIGATION (THE ISLAND FIX) --- */
		/* ========================================================================== */
		.fluid-nav-wrapper { 
			position: sticky; 
			top: 24px; 
			z-index: 1000; 
			width: 100%; 
			padding: 0 24px; 
			pointer-events: none; /* Επιτρέπει κλικ στο κενό δίπλα στο μενού */
		}
		.fluid-nav { 
			pointer-events: auto; /* Επαναφέρει τα κλικ στο ίδιο το μενού */
			width: 100%; 
			max-width: 1200px; 
			margin: 0 auto; 
			padding: 12px 32px; 
			display: flex; 
			justify-content: space-between; 
			align-items: center; 
			box-sizing: border-box; 
			background: rgba(15, 15, 15, 0.65); 
			backdrop-filter: blur(24px); 
			-webkit-backdrop-filter: blur(24px);
			border: 1px solid rgba(255,255,255,0.08);
			border-radius: 100px;
			box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
		}
		.brand { font-weight: 900; font-size: 1.5rem; color: var(--c-text); font-family: var(--font-heading); display: flex; align-items: center; }
		.nav-links { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
		.nav-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
		.nav-link:hover { color: var(--c-primary); }
		
		/* --- FOOTER --- */
		.fluid-footer { padding: 40px 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 30; background: var(--c-bg); margin-top: auto; }
		.footer-text { color: var(--c-text); opacity: 0.5; font-size: 0.85rem; }

		/* --- GRIDS & CARDS --- */
		.fluid-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; width: 100%; padding-top: 20px; }
		.grid-card { 
			background: var(--layer-1); 
			padding: 30px; 
			border-radius: var(--radius); 
			border: 1px solid var(--edge-light); 
			transition: 0.3s; 
			z-index: 30; 
			position: relative; 
			display: flex;
			flex-direction: column;
			text-align: left !important;
		}
		.grid-card:hover { transform: translateY(-5px); border-color: var(--c-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
		.card-icon { margin-bottom: 20px; color: var(--c-primary); font-size: 3rem; display: flex; width: 100%; }
		.card-icon img { width: 100% !important; height: 220px !important; object-fit: cover; border-radius: 6px; }
		.card-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--c-primary); margin-bottom: 10px; }
		.card-desc { font-size: 1rem; opacity: 0.8; line-height: 1.7; color: var(--c-text); margin: 0; }

		/* ========================================================================== */
		/* --- RESPONSIVE FIXES (TABLET & MOBILE) --- */
		/* ========================================================================== */
		@media (max-width: 900px) { 
			.fluid-grid { grid-template-columns: 1fr; }
			
			/* Διορθώσεις για το Μενού σε Tablet/Κινητά */
			.fluid-nav { 
				flex-direction: column; /* Το Logo πάει πάνω, τα links από κάτω */
				gap: 15px; 
				padding: 20px; 
			}
			.nav-links { 
	display: flex; gap: 30px; align-items: center; flex-wrap: wrap; 
}
	.nav-link { 
	color: rgba(255,255,255,0.7); 
	text-decoration: none; 
	font-size: var(--text-nav); /* <--- ΕΔΩ ΑΝΤΙ ΓΙΑ 0.95rem Ή ΑΛΛΟ ΣΤΑΤΙΚΟ! */
	font-weight: 500; /* Μπορείτε να το κάνετε 600 αν θέλετε πιο έντονα γράμματα */
	transition: color 0.3s ease; 
}
	.nav-link:hover { 
	color: var(--c-primary); 
}
			
			/* Μικραίνουμε λίγο τους τίτλους στα κινητά */
			.hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
			.section-title { font-size: 2rem; }
			.fluid-section { padding: var(--orbit-2) 20px; min-height: 60vh;}
		}
	