/* 🌐 GS Services CSS Layout */
/* Χρήστος — 2025 Layout με χαρακτήρα, ισορροπία και φροντίδα */

:root {
  --gs-orange: #ff6a00;
  --gs-dark: #111;
  --gs-light: #fff;
  --gs-font: 'Orbitron', sans-serif;
  --gs-radius: 8px;
}

/* ✅ Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--gs-dark);
  color: var(--gs-light);
  font-family: var(--gs-font);
  line-height: 1.6;
}
a {
  color: var(--gs-orange);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ✅ Header & Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #000;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gs-light);
}
.accent {
  color: var(--gs-orange);
}
nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
nav li a {
  font-weight: 500;
}

/* ✅ Hero Section */
.hero {
  padding: 4rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* ✅ Services Grid */
.services-section {
  padding: 2rem;
  text-align: center;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
}
.service-card {
  background-color: #222;
  border-radius: var(--gs-radius);
  padding: 1.2rem;
  max-width: 300px;
  color: var(--gs-light);
  text-align: center;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: scale(1.03);
}
.service-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* ✅ Footer */
footer {
  background-color: #000;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
}
main {
  display: flex;
  justify-content: center;
}
.services-grid {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.services-section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}
.contact-section {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
input, textarea {
  padding: 0.8rem;
  border-radius: var(--gs-radius);
  border: none;
  font-size: 1rem;
}
button {
  background-color: var(--gs-orange);
  color: var(--gs-light);
  padding: 0.8rem;
  border: none;
  border-radius: var(--gs-radius);
  font-weight: bold;
  cursor: pointer;
}
button:hover {
  background-color: #e65c00;
}
.gs-phrase {
  margin-top: 2rem;
  color
/* 🔧 GS Chrome Compatibility Fix – July 2025 */

body, html {
  width: 100%;
  overflow-x: hidden;
}

main, section, .services-grid, .contact-section, .gallery-section {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card, .gallery-grid figure {
  flex: 1 1 300px;
  max-width: 300px;
  text-align: center;
}

button, input, textarea {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

h1, h2, p, a {
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  text-align: center;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.infrastructure-section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.infrastructure-section article {
  background-color: #222;
  border-radius: var(--gs-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gs-light);
}
.infrastructure-section h2 {
  margin-bottom: 0.5rem;
}
.infrastructure-section p {
  font-size: 1rem;
  color: #ccc;
}
.gs-phrase {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--gs-orange);
}
/* ✨ GS Starlight — Reintroducing Glow and Character */

h1, h2 {
  text-shadow: 0 0 10px var(--gs-orange);
  color: var(--gs-light);
}

.gs-phrase {
  color: var(--gs-orange);
  font-weight: bold;
  text-shadow: 0 0 5px var(--gs-orange);
}

button {
  background-color: var(--gs-orange);
  color: var(--gs-light);
  box-shadow: 0 0 10px var(--gs-orange);
  transition: box-shadow 0.3s ease;
}

button:hover {
  box-shadow: 0 0 15px var(--gs-orange);
}

nav ul li a:hover {
  text-shadow: 0 0 5px var(--gs-light);
}

footer p {
  text-shadow: 0 0 5px #999;
}
