/* style.css - Custom styles for AstroDev website */

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Logo image styling */
.logo-image {
  height: 50px;
  vertical-align: middle;
}

/* Header layout */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

/* Navigation */
.main-nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .header .container {
    align-items: flex-start;
  }
  .main-nav {
    flex-direction: column;
    gap: 10px;
  }
}
/* Gallery Enhancements */
.gallery .box .caption .links-container {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery .box .caption a.project-btn {
  padding: 8px 15px;
  border: 1px solid #6c5ce7;
  border-radius: 20px;
  color: #e0e0e0;
  font-size: 14px;
  transition: 0.3s;
  background: rgba(108, 92, 231, 0.1);
}

.gallery .box .caption a.project-btn:hover {
  background: #6c5ce7;
  color: white;
}

.gallery .box .caption .credentials {
  margin-top: 15px;
  font-size: 13px;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  border: 1px dashed rgba(108, 92, 231, 0.4);
  width: 100%;
}

.gallery .box .image .caption .credentials div {
  margin-bottom: 3px;
}

/* Footer Call Button */
.footer .call-btn {
  background-color: rgba(108, 92, 231, 0.2);
  color: white;
  padding: 6px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: 1px solid #6c5ce7;
  margin-top: 5px;
  cursor: pointer;
}

.footer .call-btn:hover {
  background-color: transparent;
  color: #6c5ce7;
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.4);
}
