/* ===========================
   Rich Strong Photography
   Placeholder Site Styles
   =========================== */

/* CSS Variables for easy customization */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --text-color: #333;
  --light-gray: #f4f4f4;
  --white: #ffffff;
  --max-width: 1200px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

/* Container */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.logo h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 300;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.hero {
  max-width: 800px;
  text-align: center;
}

.hero h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.description {
  margin: 2rem 0;
  text-align: left;
}

.description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #555;
}

/* Call to Action */
.cta {
  margin-top: 3rem;
}

.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

/* Footer */
footer {
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #eee;
  background-color: var(--light-gray);
}

.social {
  margin-bottom: 1rem;
}

.social p {
  color: #666;
  font-size: 0.9rem;
}

.copyright p {
  font-size: 0.85rem;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .description p {
    font-size: 1rem;
  }

  .button {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }

  .logo h1 {
    font-size: 1.75rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .description {
    text-align: center;
  }
}