/*
  Updated Color Palette:
    LightPurple:   #b670eb
    DarkPurple:    #7a47d7
    LightGrey:     #f4f4f4
    DarkGrey:      #a9a9a9
    AccentColor:   #D64045
*/

@import "../node_modules/bootstrap/scss/utilities";

.background-image-bubbles {
    display: inline-block;
    background-image: url(../Images/headBackground.png);
    background-size: cover;
}

body {
  background-color: #f4f4f4; /* LightGrey */
  color: #333; /* Dark text for better readability */
}

.view-height-85 {
    display: inline-block;
    height: 85vh!important;
}

.contact-btn {
    text-align: center;
    background-color: #D64045; /* AccentColor */
    color: white;
}

.social-icon {
    max-width: 5%;
}

.footer-icon {
  max-width: 8%;
}

.content a:link {
    text-decoration: none;
    color: #D64045;
}

a:visited {
    color: #b670eb; /* LightPurple */
}

.reading {
  display: block;
  font-size: large; 
  line-height: 2.2em; 
  font-weight: 400;
  color: #333;
  max-width: 50%;
  text-align: left;
}

.project-thumbnail {
  max-width: 70%;
}

.resume-frame {
  max-width: 100%;
  height: auto;
}

.card-color {
  background-color: #fff!important; /* White card background */
  border: 1px solid #a9a9a9; /* DarkGrey border */
}

.navbar .nav-link.nav-link-custom {
  color: #D64045;
  font-weight: bold;
}

.nav-link-custom:hover {
  color: #b670eb; 
}


.collapse-color {
  border-color: #7a47d7!important; /* DarkPurple */
  width: 30px!important;
  height: 30px;
}

/* Styles for project section */
.projects-section {
  text-align: center;
  margin-bottom: 5rem;
  color: #333;
}

.section-title {
  font-weight: bold;
  padding: 1rem 0;
  margin-top: 5rem;
  font-size: 3rem;
  color: #a9a9a9;
  font-weight: bold;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border: 1px solid #a9a9a9; /* DarkGrey border */
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow */
}

.project-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #a9a9a9; /* DarkGrey */
}

.project-info {
  margin-top: 1rem;
  color: #333; /* Dark text for readability */
}


/* Responsive adjustments */
@media (max-width: 991px) {
  /* For tablets and smaller desktops: 2 columns */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  /* For landscape phones and smaller tablets: 1 column */
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Adjusting the .project-thumbnail size for mobile devices */
@media (max-width: 767px) {
  .project-thumbnail {
    max-width: 100%; /* Allow thumbnails to use the full width of the card */
  }
}

/* Making the .reading content more mobile-friendly */
.reading {
  max-width: 100%; /* Allow text blocks to use the full width on smaller screens */
}

@media (min-width: 768px) {
  .reading {
    max-width: 50%; /* Restrict text block width on larger screens */
  }
}

/* Adjust social icons for smaller screens */
@media (max-width: 767px) {
  .social-icon, .footer-icon {
    max-width: 15%; /* Increase size slightly for better visibility on small screens */
  }
}