/* TierMe Website Styles */
:root {
  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --dark-color: #121212;
  --light-color: #f4f4f4;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --max-width: 1200px;
}

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

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav {
  display: flex;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.app-store-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
}

.app-store-btn img {
  height: 20px;
  margin-right: 10px;
}

.app-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--primary-color);
}

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

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: #666;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--primary-color);
}

.content-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.support-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.support-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.footer-links a {
  color: #fff;
  margin: 0 15px;
  transition: color 0.3s;
}

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

.copyright {
  font-size: 0.9rem;
  color: #aaa;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .nav a {
    margin-top: 10px;
    margin-left: 0;
  }
}

/* Privacy and Terms Pages */
.legal-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}

.legal-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content ul li, .legal-content ol li {
  margin-bottom: 10px;
} 