/* 1. RESET & VARIABLES */ 
* { margin: 0; padding: 0; box-sizing: border-box; } 
:root { --primary: #007AFF; /* Novasoft Blue */ --accent: #64FFDA; /* Teal accent */ --bg-dark: #0A192F; --bg-card-dark: #112240; --text-main: #E6F1FF; --text-dim: #8892B0; --white: #FFFFFF; --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
html { scroll-behavior: smooth; } 
body { font-family: 'Noto Sans Georgian', 'Segoe UI', Tahoma, sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; } 

/* 2. LAYOUT & CONTAINERS */ 
.container { width: 90%; max-width: 1200px; margin: 0 auto; } 
section { padding: 80px 0; } 

/* 3. HEADER & NAVIGATION */ 
header { position: fixed; top: 0; width: 100%; background: rgba(10, 25, 47, 0.85); backdrop-filter: blur(10px); z-index: 1000; padding: 20px 0; border-bottom: 1px solid rgba(100, 255, 218, 0.1); } 
nav { display: flex; justify-content: space-between; align-items: center; } 
.logo img { height: 40px; width: auto; } 
.nav-links { display: flex; list-style: none; gap: 30px; } 
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: var(--transition); } 
.nav-links a:hover { color: var(--accent); } 
.nav-controls { display: flex; align-items: center; gap: 20px; } 

/* 4. HERO SECTION */ 
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; } 
.hero-content { max-width: 800px; } 
.hero span { color: var(--accent); font-family: monospace; font-size: 1rem; display: block; margin-bottom: 10px; } 
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; } 
.hero p { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 40px; max-width: 600px; } /* 5. BUTTONS */ .btn { display: inline-block; padding: 15px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 1px solid var(--primary); } 
.btn-primary { background: var(--primary); color: var(--white); } 
.btn-primary:hover { background: transparent; color: var(--primary); } 

/* 6. SERVICES GRID (Cards) */ 
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; } 
.card { background: var(--bg-card-dark); padding: 30px; border-radius: 8px; transition: var(--transition); border: 1px solid transparent; } 
.card:hover { transform: translateY(-10px); border-color: var(--accent); } 
.card h3 { margin: 20px 0 15px; color: var(--white); } 
.card p { color: var(--text-dim); font-size: 0.95rem; } 

/* 7. LIGHT MODE OVERRIDES */ 
body.light-mode { --bg-dark: #F4F7F6; --bg-card-dark: #FFFFFF; --text-main: #111111; --text-dim: #555555; } 
body.light-mode header { background: rgba(244, 247, 246, 0.9); border-bottom: 1px solid #ddd; } 

/* 8. RESPONSIVE DESIGN (Media Queries) */ /* TABLETS (პლანშეტები) - Max 1024px */ 
@media (max-width: 1024px) { 
	.grid { grid-template-columns: repeat(2, 1fr); } 
	.hero h1 { font-size: 3.5rem; } 
} 

/* MOBILE (ტელეფონები) - Max 768px */ 
@media (max-width: 768px) { 
	header { padding: 15px 0; } 
	.nav-links { display: none; /* აქ დაგჭირდებათ მობილური მენიუ (Hamburger) JS-ით */ } 
	.hero { text-align: center; padding-top: 150px; } 
	.hero p { margin: 0 auto 40px; } 
	.grid { grid-template-columns: 1fr; /* ბარათები ერთ სვეტად */ gap: 20px; } 
	.section-title { font-size: 2rem; text-align: center; } section { padding: 60px 0; } 
} 

/* SMALL MOBILE - Max 480px */ 
@media (max-width: 480px) { 
	.hero h1 { font-size: 2.2rem; } 
	.btn { width: 100%; text-align: center; margin-bottom: 10px; } 
}

.backdrop-blur-md {
    padding: 0;
}

@font-face {
  font-family: square;
  src: url(bpg_square_mtavruli_2009.ttf);
  font-weight: 100;
}

@font-face {
  font-family: square-1;
  src: url(NotoSansGeorgian_Regular.ttf);
  /* font-weight: 100; */
}

@font-face {
  font-family: square-2;
  src: url(NotoSansGeorgian-Light.ttf);
}

@font-face {
  font-family: square-3;
  src: url(Righteous-Regular.ttf);
}
