/* ZÉ-Jelenlét Műhely - Color Scheme */
:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #C5A02E;
  --accent-silver: #E8E8E8;
  --dark-blue: #0a1f3a;
  --darker-blue: #051016;
  --text-light: #F5F7FB;
  --text-muted: #b0b5c1;
  --border-color: rgba(212, 175, 55, 0.15);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
  background: linear-gradient(135deg, var(--darker-blue), var(--dark-blue));
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(5, 16, 22, 0.95);
  border-bottom: 2px solid var(--primary-gold);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-brand img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
  padding: 3rem 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 232, 232, 0.03), transparent);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 8px 16px rgba(212, 175, 55, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

h1 {
  font-size: 3.2rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--accent-silver);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--darker-blue);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section */
section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: linear-gradient(135deg, rgba(15, 30, 50, 0.8), rgba(10, 31, 58, 0.6));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.card ul {
  list-style: none;
  margin-top: 1.5rem;
}

.card li {
  color: var(--text-muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: rgba(15, 30, 50, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--darker-blue);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.team-member h3 {
  font-size: 1.3rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.philosophy {
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--primary-gold);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--accent-silver);
}

/* Services Section */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-item {
  background: linear-gradient(135deg, rgba(15, 30, 50, 0.8), rgba(10, 31, 58, 0.6));
  border-left: 4px solid var(--primary-gold);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-left-color: var(--accent-silver);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.service-item h4 {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-item ul {
  list-style: none;
}

.service-item li {
  color: var(--text-muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 30, 50, 0.5);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(5, 16, 22, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--darker-blue);
  font-weight: 600;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
  background: var(--darker-blue);
  border-top: 2px solid var(--primary-gold);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Service page enhancements */
.service {
  background: linear-gradient(180deg, rgba(7,22,35,0.6), rgba(6,16,25,0.6));
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.service-hero {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-hero .icon {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--darker-blue);
  font-weight: 700;
  font-size: 1.6rem;
  box-shadow: 0 8px 18px rgba(212,175,55,0.12);
}

.service-hero h1 { margin: 0; color: var(--primary-gold); font-size: 1.9rem; }
.service-hero .lead { color: var(--text-muted); margin-top: 0.3rem; max-width: 800px; }

.details-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-card {
  background: rgba(10,20,30,0.6);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 10px;
}

.price-badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  color: var(--primary-gold);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-list li { padding-left: 1.6rem; position: relative; color: var(--text-muted); }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-gold); }

@media (max-width: 900px) {
  .details-grid { grid-template-columns: 1fr; }
  .service-hero { flex-direction: column; align-items: flex-start; }
}

/* Dropdown navigation */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(5,16,22,0.98);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0;
  border-radius: 8px;
  min-width: 200px;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 1000;
}

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover { color: var(--primary-gold); }

.dropdown:hover .dropdown-menu { display: block; }

@media (max-width: 768px) {
  .dropdown-menu { position: static; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
}
