@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}

header {
  background: #111;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

nav a {
  color: #f9a826; /* warm highlight for photography */
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

main {
  flex: 1;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.page {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.page.active {
  display: block;
}

p, ul {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #444;
}

ul {
  padding-left: 1.5rem;
  list-style: disc;
}

footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: auto;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

/* Subscribe Form */
form {
  margin-top: 1em;
}

form input, form button {
  padding: 12px 14px;
  margin: 8px 0;
  width: 100%;
  max-width: 400px;
  display: block;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

form input:focus {
  outline: none;
  border-color: #f9a826;
}

form button {
  background-color: #f9a826;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #dd8c00;
}

/* Smooth fade for switching pages */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stripe-button {
  display: inline-block;
  background-color: #635bff;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1em;
  transition: background-color 0.3s ease;
}

.stripe-button:hover {
  background-color: #5548e6;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: 40px;
}
