/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Montserrat:wght@200;400;600;800&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #0b4d6b, #447bb9);
  color: white;
}

header {
  display: flex;
  justify-content: center;
  /* gap: 5rem;  */
  padding: 1rem;
  position: fixed;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 10;
}

header a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  cursor: pointer;
}

header a:hover {
  color: #ebdfdf;
}

.hero,
.about,
.portfolio {
  padding: 5rem 0;
  position: relative;
  width: 100%;
}

.hero, .about, .portfolio{
  min-height: 70vh;
}

.hero-content,
.about-content,
.portfolio-container{
  width: 80%;
  margin: 0 auto;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 0.8;
  margin: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  padding-top: 1rem;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}

.portfolio-projects {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px auto;
}

.portfolio-projects .box {
  border: 1px solid rgb(204, 204, 204);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 16px;
  text-align: center;
}

.contact{
  min-height: 20vh;
}
.contact-title, 
.social-links,.footer-text {
  display: flex;
  justify-content: center;
}

.social-icon {
  height: 30px;
  width: 30px;
  padding-inline: 10px;
}

.hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 222%; */
  /* background-image: url('images/image.jpeg'); */
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.4);
}