
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0f0f10;
  color: #eaeaea;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

/* Navbar */
.navbar {
  background-color: #1a1a1d;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: #ff4655;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ff4655;
}

#theme-toggle {
  background-color: #ff4655;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('https://images3.alphacoders.com/110/1108294.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #ffffff;
}

.hero span {
  color: #ff4655;
}

.hero p {
  margin: 1rem 0;
  color: #ccc;
}

.btn {
  background-color: #ff4655;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  margin: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e63946;
}

.btn-outline {
  background-color: transparent;
  color: #ff4655;
  border: 2px solid #ff4655;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: #ff4655;
  color: white;
}

/* Section Styles */
.section {
  padding: 4rem 2rem;
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
  font-weight: bold;
}

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

.project-card {
  background-color: #1a1a1d;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 70, 85, 0.2);
  text-align: left;
}

.project-card h3 {
  color: #ff4655;
}

.project-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #ff4655;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  text-align: center;
  background: #111;
  color: #888;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 4rem;
}

/* Skills Section */
.skills-section h2 {
  font-size: 2.5rem;
  color: #ff4655;
  text-shadow: 0 0 10px rgba(255, 70, 85, 0.5);
  margin-bottom: 2rem;
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.skill-card {
  background-color: #1f1f1f;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 140px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.02);
}

.skill-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.skill-card p {
  font-weight: 600;
  color: #f0f0f0;
  font-size: 1rem;
  margin-top: 5px;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 12px #ff4655;
  border-color: #ff4655;
}

/* Slideshow Section */
.slideshow-section {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  border: 3px solid #ff4655;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 450px;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fade 1s ease-in-out;
}

.slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0.5; }
  to { opacity: 1; }
}
.logo-profile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  border: 3px solid #ff2e63;
  box-shadow: 0 0 15px rgba(255, 46, 99, 0.6);
  transition: transform 0.4s ease;
}

.logo-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.logo-profile:hover {
  transform: scale(1.15) rotate(2deg);
}
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 2s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content h1 span {
  color: #ff4655;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-buttons .btn {
  margin: 0 10px;
}
