/* style.css - Global Styles for ReadyGmail */
:root {
  --primary-color: #4F46E5; /* Indigo */
  --primary-hover: #4338CA;
  --bg-color: #F3F4F6;
  --text-main: #111827;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  --success: #10B981;
  --danger: #EF4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

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

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  display: inline-block;
}

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

/* Header/Nav */
header {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

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

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-color) 100%);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
