/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

/* Header styling */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heading {
  color: #ff6600;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  margin: 0;
}

/* Dropdown menu styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.container-hamburger {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #ff6600;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 3px;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.dropdown-content a {
  color: #333;
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: white;
  transform: translateX(5px);
}

.show {
  display: block;
}

/* About Section with Headshot */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  margin: 20px 0;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 0 0 250px;
  text-align: center;
}

.headshot {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff6600;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
  transition: transform 0.3s ease;
}

.headshot:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 2.2em;
}

.intro-text {
  font-size: 1.3em;
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1em;
}

/* Contact Container */
.contact-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h2 {
  color: #333;
  margin-bottom: 10px;
  font-size: 2.2em;
}

.contact-header p {
  color: #666;
  font-size: 1.1em;
}

/* Form styling */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* Connect Section */
.connect-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  text-align: center;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.connect-section h3 {
  color: #333;
  margin-bottom: 30px;
  font-size: 1.8em;
}

.connect-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.connect-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  min-width: 120px;
}

.connect-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.connect-link i {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.connect-link span {
  font-weight: 600;
  font-size: 1.1em;
}

.connect-link.substack i { color: #ff6600; }
.connect-link.substack span { color: #ff6600; }

.connect-link.spotify i { color: #1db954; }
.connect-link.spotify span { color: #1db954; }

.connect-link.ridehaul i { color: #007bff; }
.connect-link.ridehaul span { color: #007bff; }

/* Spotify player styling */
.spotify-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
}

.spotify-section h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.8em;
}

.spotifyplyr {
  width: 100%;
  height: 352px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Newsfeed styling */
.newsfeed-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.newsfeed-header {
  text-align: center;
  margin-bottom: 30px;
}

.newsfeed-header h2 {
  color: #333;
  margin-bottom: 10px;
  font-size: 2.2em;
}

.newsfeed-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsfeed-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #ff6600;
}

.newsfeed-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.newsfeed-item:last-child {
  margin-bottom: 0;
}

.newsfeed-item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.newsfeed-item-header i {
  font-size: 1.3em;
}

.newsfeed-item-date {
  color: #666;
  font-size: 0.9em;
  font-weight: 500;
}

.newsfeed-item-title {
  color: #333;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.newsfeed-item-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.newsfeed-item-link {
  display: inline-block;
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border: 2px solid #ff6600;
  border-radius: 25px;
  font-size: 0.9em;
}

.newsfeed-item-link:hover {
  background: #ff6600;
  color: white;
  transform: translateY(-2px);
}

.newsfeed-source {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Newsletter section styling - Custom Preview */
.newsletter-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
}

.newsletter-section h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.paragraph {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1em;
}

/* Custom newsletter preview styles */
.newsletter-preview {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: left;
}

.newsletter-preview-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ff6600;
}

.newsletter-preview-header h4 {
  color: #333;
  font-size: 1.5em;
  margin-bottom: 5px;
}

.newsletter-preview-header p {
  color: #ff6600;
  font-weight: 600;
  font-style: italic;
}

.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.newsletter-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #333;
}

.newsletter-benefits li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 1.1em;
}

.subscribe-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .heading {
    font-size: 1.8em;
  }
  
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-image {
    flex: none;
  }
  
  .headshot {
    width: 200px;
    height: 200px;
  }
  
  .connect-links {
    flex-direction: column;
    align-items: center;
  }
  
  .connect-link {
    width: 200px;
  }
  
  .contact-container,
  .spotify-section,
  .newsfeed-container,
  .newsletter-section {
    margin: 20px;
    padding: 20px;
  }
  
  .spotifyplyr {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .headshot {
    width: 150px;
    height: 150px;
  }
  
  .heading {
    font-size: 1.5em;
  }
}