/* === General Page Styles === */
body {
    font-family: 'Georgia', serif;
    background-color: #f7f6f2;
    color: #1f1f1f;
    margin: 0;
    padding: 0;
}

/* === Header === */
header {
    background-color: #2e4d3d;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* === Logo === */
.logo {
    height: 60px;
}

/* === Navigation === */
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* === Responsive Navigation === */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }
}

/* === Hero Section === */
.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #e5e0d5;
}

.hero h1 {
    font-size: 3em;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    color: #2e4d3d;
}

/* === Footer === */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    background-color: #2e4d3d;
    color: #e6e2d6;
}

/* === Freelance CTA Section === */
.freelance-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4em 1em;
    background-color: #90ad75;
    text-align: center;
}

.freelance-cta h2 {
    font-family: 'Georgia', serif;
    color: #e6e2d6;
    font-size: 2em;
    margin-bottom: 1.5em;
}

.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 0.75em 1.5em;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    background-color: #90ad75;
    color: #f4f4f5;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 200px;
    text-align: center;
}

.cta-button:hover {
    background-color: #e6e2d6;
    transform: scale(1.05);
}

.album-cover {
  max-width: 80%;      /* Prevents overflow on smaller screens */
  width: 300px;         /* Default width on larger screens */
  height: auto;         /* Keeps image proportions */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
  .album-cover {
    width: 90%;         /* Make it nearly full width on small devices */
  }
}

.logo-background {
  background-image: url("img/Quiet-Frontier-Header-transparency.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #e6f2e6; /* soft fallback green */
}

/* Optional overlay to improve text readability */
/*.logo-background::before {
/*  content: "";
/*  position: fixed;
/*  top: 0; left: 0; right: 0; bottom: 0;
/*  background-color: rgba(230, 242, 230, 0.8); /* pale green with some transparency */
/*  z-index: -1;
} */
