/* Modern 2025 Design System - Minimalist & Bold */
:root {
  /* Updated color palette for modern minimalist design */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-tertiary: #efefef;
  --accent-primary: #000000;
  --accent-secondary: #1a1a1a;
  --text-primary: #000000;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Dark mode */
[data-theme="dark"] {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #252525;
  --accent-primary: #ffffff;
  --accent-secondary: #f0f0f0;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-tertiary: #999999;
  --border-color: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.nav-logo a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

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

.hero-text h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  color: var(--text-primary);
}

.hero-text h1 .gradient {
  background: linear-gradient(135deg, #000000, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .hero-text h1 .gradient {
  background: linear-gradient(135deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero-location {
  color: var(--text-tertiary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  height: 500px;
  background: var(--bg-secondary);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* Stats Section */
.stats {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 0;
  text-align: left;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--text-primary);
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Featured Section */
.featured {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: left;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -1px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.featured-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: 0;
  text-align: left;
  transition: all 0.3s ease;
}

.featured-card:hover {
  border-color: var(--text-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.featured-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.featured-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: var(--text-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  width: 100%;
  height: 200px;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

.project-link {
  display: inline-block;
  color: var(--text-primary);
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.project-link:hover {
  color: var(--text-secondary);
  text-decoration: underline;
}

/* CTA Section */
.cta {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta .btn-primary {
  background: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="dark"] .cta {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

[data-theme="dark"] .cta .btn-primary {
  background: var(--text-primary);
  color: var(--bg-secondary);
}

/* Timeline */
.timeline-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.timeline-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--text-primary);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.timeline-item h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.timeline-date {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-secondary);
}

/* Page Header */
.page-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 4rem 2rem;
  text-align: center;
}

.page-header-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.page-header-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Bio Section */
.bio-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.bio-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bio-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 800;
}

.bio-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.bio-image img {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

/* Media Section */
.media-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.media-subsection {
  margin-bottom: 4rem;
}

.media-subsection h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 800;
}

.tweets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tweet-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.tweet-card:hover {
  border-color: var(--text-primary);
  box-shadow: var(--shadow-lg);
}

.tweet-name {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.tweet-handle {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tweet-content {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tweet-date {
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

/* Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Business Section */
.business-hero {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.business-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.why-card,
.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.why-card:hover,
.product-card:hover {
  border-color: var(--text-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 0;
}

.contact-form-wrapper h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.info-item h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.info-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-item a:hover {
  color: var(--text-primary);
}

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

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

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--text-primary);
}

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

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

.social-links a:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.footer-bottom a{
  color: #000;
  text-decoration: none;
}

/* Animations */
.reveal-text,
.reveal-image,
.reveal-up {
  opacity: 0;
  animation: revealAnimation 0.8s ease forwards;
}

.reveal-text {
  animation-delay: 0.2s;
}

.reveal-image {
  animation-delay: 0.4s;
}

@keyframes revealAnimation {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-secondary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-content,
  .bio-container,
  .business-hero-content,
  .contact-container,
  .stats-container,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu a {
    padding: 1rem;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}.skills-container{
  padding: 35px;
}

.skills-container h3{
  text-decoration: underline;
}
.skills-container p{
  margin-bottom: 15px;
  font-size: 16px;
}

.media-cta{
  padding-top: 15px;
}

.timeline-paragraph{
  padding-bottom: 5%;
}