@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';


/* Custom styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #1a202c;
  color: #cbd5e0;
  line-height: 1.6;
}

#app {
  max-width: 800px;
  margin: 0 auto;
}

/* Section Gap */
section {
  margin-bottom: 2rem;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #3498db, #6ab0f3);
  color: #fff;
  padding: 4rem;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

#hero p {
  font-size: 1.2rem;
}

/* About Me Section */
#about {
  background-color: #2d3748;
  color: #cbd5e0;
  padding: 2rem;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Skills, Projects, Contact Sections */
#skills,
#projects,
#contact {
  background-color: #2d3748;
  color: #cbd5e0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Skill List */
#skills ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

#skills li {
  background-color: #4a5568;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Project Cards */
.grid div {
  background-color: #4a5568;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Link */
#contact a {
  color: #6ab0f3;
  transition: color 0.3s ease-in-out;
}

#contact a:hover {
  color: #3498db;
}

/* Image Placeholder */
img.placeholder {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Links Section */
#links {
  background-color: #2d3748;
  color: #cbd5e0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Social Media Links */
#links a {
  display: inline-block;
  margin-right: 10px;
}

/* Social Media Logos */
#links img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}



/* New Color Palette */
body {
  background-color: #000000;
  color: #ffffff;
}

/* New Hero Section */
#hero {
  background: linear-gradient(180deg, #564d65ff, #3e8989ff);
  color: #ffffff;
}

/* New About Me Section */
#about {
  background-color: #1a181bff;
  color: #ffffff;
}

/* New Skills, Projects, Contact Sections */
#skills,
#projects,
#contact {
  background-color: #1a181bff;
  color: #ffffff;
}

/* New Skill List */
#skills li {
  background-color: #2cda9dff;
}

/* New Project Cards */
.grid div {
  background-color: #2cda9dff;
}

/* New Contact Link */
#contact a {
  color: #05f140ff;
}

/* New Links Section */
#links {
  background-color: #1a181bff;
  color: #ffffff;
}

/* New Social Media Links with Logos */
#links a {
  display: inline-block;
  margin-right: 10px;
}

/* New Social Media Logos */
#links img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* New Fonts */
body {
  font-family: 'Roboto', sans-serif;
}

/* Person's Name */
#hero h1 {
  font-family: 'Lora', serif;
}

/* Section Titles */
h2 {
  font-family: 'Montserrat', sans-serif;
}

/* Skills */
#skills li {
  font-family: 'Roboto', sans-serif;
}

/* Updated Hero Section */
#hero {
  background: linear-gradient(135deg, #564d65ff, #3e8989ff);
  color: #ffffff;
  padding: 4rem;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Updated About Me Section */
#about {
  background-color: #1a181bff;
  color: #ffffff;
  padding: 2rem;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* Ensure items start at the top */
  box-sizing: border-box;
  /* Include padding in width calculation */
}

#about h2 {
  flex-basis: 100%;
}

#about div {
  flex: 1 0 60%;
  /* Text takes priority, image takes up to 60% of the space */
  margin-right: 2rem;
}

/* Image Placeholder */
img.placeholder {
  max-width: 100%;
  /* Ensure the image doesn't exceed its container */
  height: auto;
  border-radius: 8px;
}


/* Updated Hero Section */
#hero {
  background: linear-gradient(135deg, #564d65ff, #3e8989ff);
  color: #ffffff;
  padding: 4rem;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

}

#hero h1 {
  font-size: 5rem;
  /* Increase font size for the name */
  font-family: 'Roboto Slab', serif;
  /* Use 'Roboto Slab' for a more industrial feel */
  margin-bottom: 0.5rem;
}

#hero p {
  font-size: 1.8rem;
  /* Increase font size for the description */
  margin-bottom: 2rem;
}

/* Updated Hero Section */
#hero {
  background: linear-gradient(135deg, #564d65ff, #3e8989ff);
  color: #ffffff;
  padding: 4rem;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  /* Prevent line breaks */
  text-overflow: ellipsis;
  /* Show ellipsis for overflow */
}

#hero h1 {
  font-size: 4rem;
  /* Increase font size for the name */
  font-family: 'Roboto Slab', serif;
  /* Use 'Roboto Slab' for a more industrial feel */
  margin: 0;
  /* Remove margin */
  text-transform: lowercase;
  /* Convert text to all small-caps */
}

#hero hr {
  width: 80%;
  /* Adjust the line width */
  height: 2px;
  /* Adjust the line thickness */
  background-color: #ffffff;
  margin: 1rem 0;
  /* Add margin above and below the line */
  border: none;
  opacity: 0.1
}

#hero p {
  font-size: 1.8rem;
  /* Increase font size for the description */
  text-transform: lowercase;
  /* Convert text to all small-caps */
  margin: 0;
  /* Remove margin */
}

body {
  text-transform: lowercase;
  /* Convert text to all small-caps */
}

/* Responsive Font Size */
@media (max-width: 600px) {
  #hero h1 {
    font-size: 2rem;
    /* Decrease font size for smaller screens */
  }

  #hero p {
    font-size: 1rem;
    /* Decrease font size for smaller screens */
  }
}

/* Updated Skills Section */
#skills {
  background-color: #1a181bff;
  color: #ffffff;
  padding: 2rem;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Skills List */
#skills ul {
  list-style-type: disc;
  list-style-position: inside;
  padding: 0;
  /* Remove default padding */
  display: flex;
  flex-wrap: wrap;
}

/* Individual Skill */
#skills li {
  background-color: #2cda9dff;
  margin: 0 10px 10px 0;
  /* Add margin between items */
  padding: 10px;
  border-radius: 8px;
  flex-basis: calc(33.33% - 20px);
  /* Three items per row with some margin */
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  max-width: calc(33.33% - 20px);
  /* Prevent items from exceeding three per row */
}

/* Responsive Styles */
@media (max-width: 767px) {
  #skills li {
    flex-basis: calc(50% - 20px);
    /* Two items per row on smaller screens */
    max-width: calc(50% - 20px);
  }
}
