/* styles.css - Shared site-wide styles for kickitwithmax.uk */

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

body {
  background-color: #000;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  font-size: 20px;
  line-height: 1.8;
  min-height: 100vh; /* Ensures footer pushes down if added later */
}

/* Header & Logo */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

/* Title (used on some pages) */
.title {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 3rem;
  color: #9d00ff;
  font-weight: bold;
}

/* Navigation */
nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid #39ff14;
  padding: 0.7rem 1.2rem;
  color: #39ff14;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #39ff14;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
}

nav a:hover {
  background-color: #9d00ff;
  color: #000;
  border-color: #9d00ff;
  box-shadow: 0 0 20px #9d00ff;
}

/* Main Content */
.content {
  max-width: 800px;
  margin-top: 1rem;
  font-family: Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 2.5rem;
  color: #9d00ff;
  margin-bottom: 0.5rem;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.meta {
  color: #39ff14;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: Helvetica, Arial, sans-serif;
}

p {
  margin-bottom: 1rem;
  font-family: Helvetica, Arial, sans-serif;
}

/* Photo Gallery (used on homepage and possibly others) */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 2rem auto;
}

.responsive-photo {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .title {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  nav {
    justify-content: center;
  }

  .content {
    padding: 0 1rem;
  }

  .logo {
    max-width: 180px;
    margin-bottom: 1rem;
  }
}

/* Global link styles (lists, content, etc.) */
a {
  color: #39ff14;
  text-decoration: none;
  font-weight: bold;
}

a:visited {
  color: #39ff14;
}

a:hover,
a:focus {
  color: #9d00ff;
  text-shadow: 0 0 8px #9d00ff;
}

a:active {
  color: #39ff14;
}
.review-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.review-list li {
  margin-bottom: 0.8rem;
}
.review-list li::before {
  content: "▸ ";
  color: #39ff14;
}

