/* Tabu Master Website Styles */

:root {
  --primary: #FF6B9D;
  --secondary: #4ECDC4;
  --accent: #FFC107;
  --text-primary: #2C3E50;
  --text-secondary: #7F8C8D;
  --bg-gradient-start: #FFD6E8;
  --bg-gradient-mid: #FFF9C4;
  --bg-gradient-end: #B3E5FC;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  font-size: 48px;
}

.logo-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.logo-text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #FF5589;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Privacy Policy Specific Styles */
.privacy-policy {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow);
}

.privacy-policy h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
}

.privacy-policy h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.privacy-policy h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.privacy-policy p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.privacy-policy ul, .privacy-policy ol {
  margin-left: 30px;
  margin-bottom: 16px;
}

.privacy-policy li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.privacy-policy a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  transition: color 0.3s;
}

.privacy-policy a:hover {
  color: #FF5589;
}

.privacy-policy table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.privacy-policy th,
.privacy-policy td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}

.privacy-policy th {
  background: rgba(255, 107, 157, 0.1);
  font-weight: 600;
  color: var(--text-primary);
}

.privacy-policy blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.last-updated {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 20px;
  margin-top: 80px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

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

.copyright {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .privacy-policy {
    padding: 30px 20px;
  }

  .privacy-policy h1 {
    font-size: 28px;
  }

  .privacy-policy h2 {
    font-size: 24px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
