/* Modern Organic Nature Design for Dave Tauzell */

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: #2d4a3e;
  background: linear-gradient(135deg, #8fbc8f 0%, #556b2f 50%, #2f4f2f 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(85, 107, 47, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Container */
.cover-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.masthead {
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(47, 79, 47, 0.2);
  border: 2px solid rgba(139, 69, 19, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.masthead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8fbc8f, #556b2f, #8fbc8f);
}

.masthead-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #2d4a3e;
  margin-bottom: 0;
  text-align: left;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 2px rgba(255, 250, 240, 0.5);
}

.nav-masthead {
  justify-content: flex-end;
  margin-top: 0;
}

.nav-masthead .nav-link {
  color: #556b2f;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
  font-family: 'Georgia', serif;
}

.nav-masthead .nav-link:hover {
  color: #2d4a3e;
  background: rgba(143, 188, 143, 0.2);
  border-color: rgba(139, 69, 19, 0.3);
  transform: translateY(-2px);
}

.nav-masthead .nav-link.active {
  color: #8b4513;
  background: rgba(139, 69, 19, 0.1);
  border-color: rgba(139, 69, 19, 0.5);
}

/* Main Content */
.cover {
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(47, 79, 47, 0.2);
  border: 2px solid rgba(139, 69, 19, 0.3);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8fbc8f, #556b2f, #8fbc8f);
}

.cover-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2d4a3e;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #8b4513 0%, #556b2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Georgia', serif;
  text-shadow: none;
}

.lead {
  font-size: 1.3rem;
  color: #556b2f;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Georgia', serif;
}

/* Album Grid and Cards */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.album-card {
  background: rgba(255, 250, 240, 0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(139, 69, 19, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.album-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8fbc8f, #556b2f, #8fbc8f);
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(47, 79, 47, 0.25);
  background: rgba(255, 250, 240, 0.95);
  border-color: rgba(139, 69, 19, 0.5);
}

.album-cover {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(47, 79, 47, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid rgba(139, 69, 19, 0.2);
}

.album-card:hover .album-cover {
  transform: scale(1.02);
  border-color: rgba(139, 69, 19, 0.4);
}

.album-info h3 {
  color: #2d4a3e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.album-info p {
  color: #556b2f;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Georgia', serif;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: 'Georgia', serif;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

.btn-secondary {
  background: linear-gradient(135deg, #8b4513 0%, #556b2f 100%);
  color: #fffaf0;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
  border: 2px solid rgba(139, 69, 19, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.6);
  color: #fffaf0;
  text-decoration: none;
  background: linear-gradient(135deg, #a0522d 0%, #6b8e23 100%);
}

/* Footer */
.mastfoot {
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 250, 240, 0.9);
  font-family: 'Georgia', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cover-container {
    padding: 1rem;
  }
  
  .masthead {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .cover {
    padding: 2rem 1rem;
  }
  
  .cover-heading {
    font-size: 2.5rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .nav-masthead .nav-link {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
  }
  
  .album-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .album-card {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cover, .masthead {
  animation: fadeInUp 0.8s ease-out;
}

.album-card {
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
