/* Adatvédelem Page Styles */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #f8f9fa;
}

/* Color Variables */
:root {
  --primary-blue: #3498db;
  --primary-dark: #2c3e50;
  --dark-navy: #1a252f;
  --light-blue: #e8f4fd;
  --accent-red: #e74c3c;
  --warm-gray: #f5f5f5;
  --soft-white: #fafafa;
  --text-dark: #2c3e50;
  --text-light: #666666;
  --white: #ffffff;
  --section-bg: #f8f9fa;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #1a252f 0%, #3498db 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

.logo-text .logo-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.logo-text .logo-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
}

.header-nav {
  display: flex;
  gap: 10px;
}

.nav-link {
  background: #e74c3c;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link svg {
  width: 18px;
  height: 18px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

/* Legal Pages Styles */
.legal-main {
  background: var(--section-bg);
  min-height: calc(100vh - 200px);
}

.datenschutz-section {
  padding: 60px 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.datenschutz-content {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.datenschutz-title {
  font-size: 42px;
  color: var(--primary-dark);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.datenschutz-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-blue);
}

.subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 30px;
}

.datenschutz__info h2 {
  font-size: 24px;
  color: var(--primary-dark);
  margin: 35px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-blue);
}

.datenschutz__info h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.info-block {
  background: var(--warm-gray);
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
  border-left: 4px solid var(--primary-blue);
}

.info-block.highlight {
  background: linear-gradient(135deg, rgba(232, 244, 253, 0.5) 0%, rgba(52, 152, 219, 0.1) 100%);
  border-left-color: var(--accent-red);
}

.datenschutz__info p {
  margin: 10px 0;
  line-height: 1.7;
  color: var(--text-dark);
}

.datenschutz__info ul {
  margin: 15px 0;
  padding-left: 25px;
}

.datenschutz__info li {
  margin: 8px 0;
  line-height: 1.7;
  color: var(--text-dark);
}

.datenschutz__info a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.datenschutz__info a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  /* Mobile Header */
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 15px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .logo-text .logo-title {
    font-size: 18px;
  }

  .logo-text .logo-subtitle {
    display: none;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }

  .nav-link span {
    display: none;
  }

  .nav-link svg {
    width: 18px;
    height: 18px;
  }

  /* Content */
  .datenschutz-content {
    padding: 30px 20px;
  }

  .datenschutz-title {
    font-size: 32px;
  }

  .datenschutz__info h2 {
    font-size: 20px;
  }
}

/* Extra small mobile */
@media (max-width: 375px) {
  .site-header {
    padding: 8px 0;
  }

  .header-container {
    padding: 0 10px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .logo-text .logo-title {
    font-size: 16px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav-link svg {
    width: 16px;
    height: 16px;
  }

  .datenschutz-title {
    font-size: 28px;
  }

  .datenschutz-content {
    padding: 20px 15px;
  }

  .subtitle {
    font-size: 16px;
  }

  .datenschutz__info h2 {
    font-size: 18px;
  }

  .datenschutz__info h3 {
    font-size: 16px;
  }
}
