/* style/gdpr.css */

/* Variables for consistent styling based on the Black Gold theme */
:root {
  --nustar-primary: #F2C14E; /* Main color */
  --nustar-secondary: #FFD36B; /* Auxiliary color */
  --nustar-card-bg: #111111; /* Card background */
  --nustar-bg-dark: #0A0A0A; /* Section background */
  --nustar-text-main: #FFF6D6; /* Main text color */
  --nustar-border: #3A2A12; /* Border color */
  --nustar-glow: #FFD36B; /* Glow color */
  --nustar-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
}

/* Base styles for the GDPR page content, assuming a dark body background from shared.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--nustar-text-main); /* Light text on dark background */
  background-color: var(--nustar-bg-dark); /* Dark background for main content area */
  line-height: 1.6;
  font-size: 1rem;
}

.page-gdpr a {
  color: var(--nustar-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: var(--nustar-secondary);
  text-decoration: underline;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--nustar-bg-dark);
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background for text */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-top: 20px; /* Space from top */
  margin-bottom: 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  color: var(--nustar-secondary);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2rem;
  color: var(--nustar-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure long words break */
}

.page-gdpr__btn-primary {
  background: var(--nustar-btn-gradient);
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--nustar-primary);
  border: 2px solid var(--nustar-primary);
}

.page-gdpr__btn-secondary:hover {
  background: var(--nustar-primary);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Content Sections */
.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: var(--nustar-bg-dark); /* Default dark background for sections */
  color: var(--nustar-text-main);
}

.page-gdpr__dark-section {
  background-color: var(--nustar-card-bg); /* Slightly different dark background */
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: var(--nustar-primary);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--nustar-secondary);
  border-radius: 2px;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--nustar-text-main);
}