/*
Theme Name: My Custom Theme
Author: Tim
Version: 1.0
Description: A clean and modern WordPress theme for a freelance web designer.
*/

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

main {
  padding: 0; /* No padding for full-bleed image sections */
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.2;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Links */
a {
  color: #0073aa;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #005077;
  text-decoration: underline;
}

/* Buttons */
.btn, a.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover, a.button:hover {
  background-color: #005077;
}

/* Section Styling */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section.fullscreen-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background-color: #f3f3f3;
  color: #666;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

/* Blog Post Previews */
article {
  margin-bottom: 40px;
}

article h3 a {
  font-size: 1.3rem;
  font-weight: 600;
}

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

  p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
  }

  section {
    padding: 40px 15px;
  }
}

