/* ============================================
   MODERN PROFESSIONAL PORTFOLIO STYLES
   ============================================ */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  /* Color Palette */
  --primary-gold: #f59e0b;
  --primary-dark: #0f172a;
  --secondary-dark: #1e293b;
  --accent-blue: #3b82f6;
  --text-light: #f1f5f9;
  --text-gray: #cbd5e1;
  --text-dark: #94a3b8;
  --border-color: #334155;
  --success-green: #10b981;
  --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-dark: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-light);
  background: var(--primary-dark);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

/* Fixed Background with Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("my_image.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  z-index: -2;
  opacity: 0.15;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.95) 100%);
  z-index: -1;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 3rem;
  position: relative;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1s ease;
}

.profile-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-gold);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.profile-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.credential {
  color: var(--primary-gold);
  font-size: 2rem;
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  font-weight: 300;
}

.roles {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.role-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-normal);
  min-width: 250px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.role-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.role-icon {
  font-size: 2rem;
}

.role-info h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.role-info p {
  color: var(--text-dark);
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--primary-gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 4rem 0;
  animation: fadeInUp 1s ease 0.3s both;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-gray);
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-section {
  padding: 4rem 0;
  animation: fadeInUp 1s ease 0.4s both;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  text-align: center;
}

.expertise-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.expertise-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.expertise-card h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.expertise-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.inline-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.inline-link:hover {
  text-decoration: underline;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 4rem 0;
  animation: fadeInUp 1s ease 0.5s both;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 4rem 0;
  animation: fadeInUp 1s ease 0.6s both;
}

.contact-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn {
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: var(--transition-normal);
  cursor: pointer;
  aspect-ratio: 1;
  font-size: 2rem;
}

.contact-btn:hover {
  transform: translateY(-5px);
  color: var(--primary-gold);
}

.contact-btn.primary {
  background: transparent;
  border: none;
}

.contact-btn.whatsapp:hover {
  color: #25d366;
}

.contact-btn.instagram:hover {
  color: #e4405f;
}

.contact-btn.youtube:hover {
  color: #ff0000;
}

/* App Download Section */
.app-download {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: none;
  text-align: center;
  margin-bottom: 3rem;
}

.app-download h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--primary-gold);
  padding: 1.5rem 3rem;
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition-normal);
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

.app-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.app-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.app-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.app-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Location Tag - Removed */

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-content p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .credential {
    font-size: 1.5rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .profile-image {
    width: 150px;
    height: 150px;
  }
  
  .roles {
    flex-direction: column;
  }
  
  .role-card {
    min-width: auto;
    width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .about-card {
    padding: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .app-btn {
    flex-direction: column;
    text-align: center;
  }
  
  .app-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  main {
    padding: 2rem 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}
