/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa; /* Soft light gray background */
  color: #333; /* Dark text for readability */
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    145deg,
    #2d6a4f,
    #1e4d38
  ); /* Deep emerald green gradient */
  padding: 100px 0;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 50px;
  font-weight: bold;
  color: #ffffff; /* White text for hero title */
}

.hero-subtitle {
  font-size: 22px;
  color: #d4af37; /* Muted gold subtitle color */
}

/* Sections */
h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2d6a4f; /* Deep emerald green for headings */
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #555; /* Softer gray text for body */
}

/* Button Styles */
.btn {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.resume-btn {
  background-color: #d4af37; /* Muted gold for resume button */
  color: white;
}

.resume-btn:hover {
  background-color: #c89b31; /* Slightly darker gold for hover */
}

.project-btn {
  background-color: #2d6a4f; /* Emerald green for project button */
  color: white;
}

.project-btn:hover {
  background-color: #1e4d38; /* Darker emerald green on hover */
}

/* Project Card */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: scale(1.05);
}

.card-img-top {
  object-fit: cover;
  height: 200px;
}

/* Contact Section */
.contact a {
  color: #2d6a4f; /* Emerald green for links */
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #f8f9fa; /* Light background for footer */
  padding: 20px;
  text-align: center;
  color: #333;
  border-top: 1px solid #d4af37; /* Gold border for footer */
}

/* Navbar */
.navbar {
  background-color: #ffffff; /* White navbar for clean look */
  border-bottom: 1px solid #d4af37; /* Gold divider for navbar */
}

.navbar .navbar-brand {
  color: #2d6a4f; /* Emerald green for navbar brand */
}

.navbar .navbar-nav .nav-link {
  color: #333; /* Dark links for readability */
}

.navbar .navbar-nav .nav-link:hover {
  color: #d4af37; /* Muted gold for hover */
}

/* Light Theme Adjustments */
body.theme-light .hero {
  background: linear-gradient(
    145deg,
    #2d6a4f,
    #1e4d38
  ); /* Emerald green gradient for hero */
}

body.theme-light footer {
  background-color: #f8f9fa;
  color: #333;
}

/* Card Image and Hover Effects */
.card-body {
  background-color: #ffffff; /* White background for cards */
  color: #333;
}

.card-body:hover {
  background-color: #f0f0f0; /* Light gray hover effect on card */
}
