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

/* Dark Theme Variables */
:root {
  --bg-color: #2d2d2d;
  --text-color: #e8e8e8;
  --text-muted: #b0b0b0;
  --accent-color: #f5f5dc;
  --accent-glow: #f5f5dc;
}

/* Ensure proper scrolling and device compatibility */
html {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  width: 100vw;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  color: #e8e8e8;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #0B1215;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Clean Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0B1215;
  z-index: -1;
}

.full-bg {
  min-height: 100vh;
  height: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
  height: auto;
  position: relative;
  z-index: 1;
}

.scroll-container {
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
}

.main-section {
  width: 100%;
  height: auto;
  min-height: auto;
}

/* Hero Section - Split Layout */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 4rem 3rem;
  position: relative;
  z-index: 2;
}

.hero-right {
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Profile Content - Left Side */
.profile-content {
  text-align: left;
}

.profile-name {
  font-size: 4rem;
  font-weight: 300;
  color: #e8e8e8;
  margin: 0 0 1rem 0;
  letter-spacing: 2px;
  line-height: 0.9;
  position: relative;
}



.profile-bio {
  font-size: 1.3rem;
  color: #f5f5dc;
  margin: 2rem 0;
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  letter-spacing: 1px;
}

/* Interactive Elements - Right Side */
.interactive-area {
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* Contact Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.contact-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  color: rgba(232, 232, 232, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-btn i {
  font-size: 1.2rem;
}

/* About Section - Scrollable Content */
.about-section {
  min-height: 100vh;
  padding: 4rem 2rem;
  position: relative;
  background: #0B1215;
}

/* TLDR Message */
.tldr-message {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.tldr-message.visible {
  opacity: 1;
  transform: translateY(0);
}



.tldr-message h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #e8e8e8;
  position: relative;
  letter-spacing: 2px;
}



.tldr-message p {
  font-size: 1.1rem;
  color: #f5f5dc;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  margin-top: 1.5rem;
  letter-spacing: 1px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Floating Info Cards */
.info-grid {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 4rem;
  justify-content: center;
  align-items: stretch;
}

.info-card {
  background: transparent;
  border: 1px solid rgba(245, 245, 220, 0.2);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5dc;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-card:hover {
  transform: translateY(-1px);
  background: rgba(245, 245, 220, 0.05);
  border-color: rgba(245, 245, 220, 0.4);
}

.info-card:hover h2,
.info-card:hover li,
.info-card:hover li::before {
  color: rgba(232, 232, 232, 0.9);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card h2 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: #e8e8e8;
  position: relative;
  letter-spacing: 1px;
}

.info-card h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: #f5f5dc;
  border-radius: 1px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  margin: 0.6rem 0;
  color: #b0b0b0;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.3rem;
  font-weight: 300;
}

.info-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #f5f5dc;
  font-weight: bold;
}

/* Interests Section - Tag Cloud */
.interests-section {
  margin-top: 4rem;
  text-align: center;
}

.interests-section h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: #e8e8e8;
  position: relative;
  letter-spacing: 1px;
}



.interests-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.interest-tag {
  background: transparent;
  color: rgba(232, 232, 232, 0.7);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 300;
  border: 1px solid rgba(245, 245, 220, 0.2);
  transition: all 0.2s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.interest-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 220, 0.3);
  transition: left 0.3s ease;
}







/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: rgba(245, 245, 220, 0.15);
  border: 1px solid rgba(245, 245, 220, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-dot.active {
  background: #f5f5dc;
  border-color: #f5f5dc;
  box-shadow: 0 0 15px rgba(245, 245, 220, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
  
  .hero-left {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .hero-right {
    padding: 2rem;
  }
  
  .profile-name {
    font-size: 3rem;
  }
  

  
  .profile-bio {
    margin: 2rem auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-left {
    padding: 2rem 1rem;
  }
  
  .hero-right {
    padding: 1rem;
  }
  
  .profile-name {
    font-size: 2.5rem;
  }
  
  .profile-bio {
    font-size: 1.1rem;
  }
  
  .contact-btn {
    width: 70px;
    height: 70px;
  }
  
  .contact-actions {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .scroll-indicator {
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .profile-name {
    font-size: 2rem;
  }
  
  .profile-bio {
    font-size: 1rem;
  }
  
  .contact-btn {
    width: 60px;
    height: 60px;
  }
  
  .info-card {
    padding: 2rem;
  }
  
  .interests-tags {
    gap: 0.8rem;
  }
  
  .interest-tag {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Remove floating animations for cleaner look */

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(245, 245, 220, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(245, 245, 220, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 245, 220, 0.5);
}
  