/* TytoWorks-Inspired Website Styles */

/* CSS Variables for consistent theming */
:root {
  --primary-bg: #1B365D;
  --secondary-bg: #0F1419;
  --dark-navy-bg: #0F1419;
  --accent-teal: #20B2AA;
  --accent-orange: #FF6347;
  --text-white: #FFFFFF;
  --text-gray: #CCCCCC;
  --text-light-gray: #999999;
  --card-bg: #1a1a1a;
  --border-color: #333333;
  --hover-bg: #222222;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Development Status Banner */
.dev-banner {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dev-banner a {
  color: white;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.dev-banner a:hover {
  text-decoration: none;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 50px; /* Adjusted for banner */
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-teal);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo::before {
  content: "▶▶▶";
  margin-right: 0.5rem;
  color: var(--accent-teal);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-menu a:hover {
  color: var(--accent-teal);
  background-color: var(--hover-bg);
}

/* Email Capture Section */
.email-capture {
  background-color: var(--secondary-bg);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-top: 110px; /* Account for banner + navbar */
}

.email-capture-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.email-capture h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.email-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  background-color: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-white);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.email-input::placeholder {
  color: var(--text-light-gray);
}

.email-submit {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.email-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(32, 178, 170, 0.3);
}

.email-submit:active {
  transform: translateY(0);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url("digital_owl_2.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: -110px; /* Offset for banner + navbar */
  padding-top: 110px; /* Add padding to maintain centering */
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-tagline .see-clearly {
  color: var(--accent-teal);
}

.hero-tagline .build-wisely {
  color: var(--accent-orange);
}

.hero-tagline .align-safely {
  color: var(--accent-teal);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--text-white);
  text-decoration: none;
  border: 2px solid var(--text-white);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(32, 178, 170, 0.3);
}

/* Section Styles */
.section {
  padding: 5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-white);
}

/* Latest Insights Section */
.insights {
  background-color: var(--primary-bg);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.insight-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 1.5rem;
}

.card-author {
  color: var(--text-light-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
  line-height: 1.4;
}

.card-excerpt {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.card-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light-gray);
  font-size: 0.9rem;
}

.like-btn {
  background: none;
  border: none;
  color: var(--text-light-gray);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.like-btn:hover {
  color: var(--accent-orange);
}

/* Vision Section */
.vision {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
               url("digital_owl_2.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-white);
}

.vision-text .tagline {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.vision-text .tagline .see-clearly {
  color: var(--accent-teal);
}

.vision-text .tagline .build-wisely {
  color: var(--accent-orange);
}

.vision-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

/* FAQ Section */
.faq {
  background-color: var(--primary-bg);
}

.faq-subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  font-weight: 300;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--hover-bg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--secondary-bg);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-section h3 {
  color: var(--accent-teal);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--accent-teal);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-teal);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light-gray);
}

/* Coming Soon Sections */
.coming-soon {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url("background_1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0;
  text-align: center;
}

.coming-soon-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.coming-soon h2 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 2rem;
  font-weight: 300;
}

.coming-soon p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.coming-soon .cta-button {
  display: inline-block;
  margin-top: 1rem;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url("background_1.jpeg");
  background-size: cover;
  background-position: center;
  padding: 8rem 0 5rem;
  text-align: center;
  margin-top: 110px;
}

.about-hero h1 {
  font-size: 3.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-hero p {
  font-size: 1.3rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-section {
  padding: 4rem 0;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url("digital_owl_2.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-section h2 {
  font-size: 2.5rem;
  color: var(--accent-teal);
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-section h3 {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-section p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.timeline {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.timeline-date {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  min-width: 120px;
  text-align: center;
  margin-right: 2rem;
}

.timeline-content h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-gray);
  margin: 0;
}

/* Mockup Gallery */
.mockup-gallery {
  background-color: var(--secondary-bg);
  padding: 5rem 0;
}

.mockup-gallery h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 3rem;
  font-weight: 300;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mockup-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.mockup-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.mockup-content {
  padding: 1.5rem;
}

.mockup-content h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.mockup-content p {
  color: var(--text-gray);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dev-banner {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  
  .navbar {
    top: 40px;
  }
  
  .email-capture {
    margin-top: 100px;
  }
  
  .hero {
    margin-top: -100px;
    padding-top: 100px;
  }
  
  .email-form {
    flex-direction: column;
    align-items: center;
  }
  
  .email-input {
    min-width: 100%;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.8rem;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .about-hero {
    padding: 6rem 0 3rem;
    margin-top: 100px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-date {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .mockup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}