/* --- nicheanalyzer.css --- */

:root {
    --primary-color: #e74c3c; /* A strong, aggressive red */
    --background-color: #0c0c0c;
    --panel-color: #1a1a1a;
    --text-color: #e0e0e0;
    --secondary-text-color: #a0a0a0;
    --border-color: #333;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Header --- */
header { /* ... (same structure as before, but with na- classes) ... */ }
.na-logo { /* ... */ }
.na-nav { /* ... */ }
.na-nav-link { /* ... */ }

/* --- Main Content --- */
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}
h1 { text-align: center; color: var(--primary-color); margin-bottom: 0.5rem; }
.na-tagline { text-align: center; color: var(--secondary-text-color); margin-bottom: 2rem; }

#na-analysis-form {
    background-color: var(--panel-color);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}
.na-form-group {
    margin-bottom: 1.5rem;
}
.na-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
}
.na-form-group input,
.na-form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
}
.na-form-group input:focus,
.na-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.na-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.na-submit-btn:hover {
    background-color: #c0392b;
}

/* --- Results --- */
#na-results-container {
    background-color: var(--panel-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    min-height: 200px;
}
.na-initial-prompt {
    text-align: center;
    color: var(--secondary-text-color);
    font-size: 1.1rem;
    padding: 3rem 1rem;
}
.na-results-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.na-results-content p {
    margin-bottom: 1rem;
    white-space: pre-wrap; /* To preserve formatting from AI */
}
.na-results-content strong {
    color: var(--text-color);
}

/* --- Footer --- */
footer { /* ... (same as before, but with na- classes) ... */ }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    main {
        padding: 0 0.5rem;
    }
    #na-analysis-form {
        padding: 1.5rem;
    }
}
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
/* Button links */
.share-buttons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s ease;
}

/* Facebook */
.share-buttons a.facebook {
  background: #1877f2;
}

/* Instagram */
.share-buttons a.instagram {
  background: #e4405f;
  border: 1px solid #333; /* Adds a dark border for visibility */
}


/* LinkedIn */
.share-buttons a.linkedin {
  background: #0077b5;
}

/* Twitter */
.share-buttons a.twitter {
  background: #1da1f2;
}

/* Reddit */
.share-buttons a.reddit {
  background: #ff4500;
}

/* Hover effect */
.share-buttons a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
/* Add this to your helpmechoose.css */

/* Style for the new Copy Link button */
.share-btn-insta-copy-link-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn-insta-copy-link-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.share-btn-insta-copy-link-btn.copied {
    background-color: var(--success-color);
}
/* --- Footer --- */
footer {
    text-align: center; padding: 2rem 1rem; margin-top: 3rem;
    background-color: var(--dark-color); color: var(--light-color);
}
.share-buttons a {
    text-decoration: none;
    margin: 0 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #fff;
    background: #111;
    border-radius: 4px;
    font-weight: bold;
}

.share-buttons {
    margin-top: 20px;
}
/* FILTR Social Buttons */
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.share-buttons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  background: #fff;
  color: #121212;
  transition: all 0.2s ease-in-out;
}

/* Hover Neon Effect */
.share-buttons a:hover {
  background: #6200EA;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 8px rgba(98, 0, 234, 0.6);
}
.instagram-copy {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s, transform 0.2s;
}

.instagram-copy:hover {
    background-color: #6a5acd;
    transform: translateY(-2px);
}

.instagram-copy.copied {
    background-color: #28a745; /* success indicator */
}
  /* Navigation Bar */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    transition: 0.2s ease-in-out;
}

.nav-menu li a:hover {
    color: #0078FF;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }
}