/* Premium Styles for PrivateAIServers.com
 * This file contains style overrides to create a more professional, premium look and feel
 */

:root {
  /* Primary color palette - reduced colors for a cleaner look */
  --primary-dark: #0f172a;    /* Deep navy blue - primary dark color */
  --primary-light: #f8fafc;   /* Off-white - primary light color */
  --accent: #3b82f6;          /* Modern blue - accent color */
  --accent-hover: #2563eb;    /* Darker blue for hover states */
  --text-primary: #1e293b;    /* Dark slate for main text */
  --text-secondary: #64748b;  /* Medium slate for secondary text */
  --background-light: #ffffff; /* White background */
  --background-alt: #f1f5f9;  /* Light gray background for sections */
  --border-color: #e2e8f0;    /* Light border color */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.05), 0 4px 6px rgba(0,0,0,0.05);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Base styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background-color: var(--background-light);
}

/* Navigation */
.main-nav {
  background-color: var(--background-light);
  box-shadow: var(--shadow-sm);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Dark background navigation override */
body .main-nav {
  background-color: var(--primary-dark);
}

.logo a {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links a {
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links a:hover, 
.nav-links a.active {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

.cta-button {
  background-color: white;
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: all 0.2s ease;
  border: none;
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  background-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Contact Us button in navigation */
.nav-links .cta-button {
  background-color: white;
  color: var(--primary-dark);
  border: none;
}

.cta-button.secondary-cta,
.cta-button.secondary {
  background-color: #0a2540;
  border: 2px solid #d00;
  color: white;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary-cta:hover,
.cta-button.secondary:hover {
  background-color: #d00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);

}

/* Dropdown menu */
.dropdown-content {
  background-color: var(--background-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.dropdown-content a {
  color: var(--text-secondary);
  border-left: none;
  padding: 0.75rem 1.5rem;
}

.dropdown-content a:hover {
  background-color: var(--background-alt);
  color: var(--accent);
  border-left: none;
  padding-left: 1.5rem;
}

/* Header */
.header, .hero-section {
  background-color: var(--primary-dark);
  background-image: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  color: white;
  padding: 5rem 2rem;
  margin-bottom: 3rem;
  border-radius: 0;
}

.header h1, .hero-section h1, .hero-content h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header p, .hero-section p, .hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.header-cta {
  display: flex;
  gap: 1rem;
}

.primary-cta {
  background-color: var(--accent);
}

.secondary-cta {
  background-color: transparent;
  border: 1px solid white;
}

.video-container {
  position: relative;
}

.video-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.play-button {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  box-shadow: var(--shadow-md);
}

.play-button span {
  color: var(--accent);
}

/* Content sections */
.content {
  padding: 2rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

/* Problem-solution section */
.problem-solution {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem, .solution {
  flex: 1;
  padding: 2rem;
  background-color: var(--background-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.problem h3, .solution h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.problem-list li:before {
  content: '❌';
}

.solution-list li:before {
  content: '✓';
  color: var(--accent);
}

/* Comparison table */
.comparison-section {
  background-color: var(--background-alt);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  margin: 4rem 0;
}

.comparison-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background-color: var(--primary-dark);
  padding: 1.25rem 1rem;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.highlight {
  color: var(--accent);
  font-weight: 500;
}

/* Benefits section */
.benefits {
  margin: 4rem 0;
}

.benefits-grid {
  margin-top: 2rem;
}

.benefit-card {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Testimonial */
.testimonial {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-text {
  position: relative;
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-dark);
}

/* FAQ section */
.faq-section {
  background-color: var(--background-alt);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
}

.faq-item {
  background-color: var(--background-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.25rem;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.faq-toggle {
  color: var(--accent);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 4rem 2rem 1.5rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .header {
    padding: 4rem 1.5rem;
  }
  
  .header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .problem-solution {
    flex-direction: column;
  }
  
  .header {
    padding: 3rem 1rem;
  }
  
  .header h1 {
    font-size: 2rem;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-links {
    background-color: var(--background-light);
  }
  
  .nav-links.active {
    box-shadow: var(--shadow-lg);
  }
  
  .hamburger span {
    background-color: var(--primary-dark);
  }
}

/* Add Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
