body {
    position:relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 3000px; 
    background-color: #F4EFEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}


/* Header */
.header-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: flex-end;
    align-items:center;
    padding: 20px;
}


/* Logo */
.header-logo img {
    position:absolute;
    width: 80px;
    top:15px;
    left: 20px;
    cursor: pointer; 
    transition: transform 0.3s ease-in-out;
}


.header-logo img:hover {
    transform: scale(1.1);
}


/* Navigation */
.nav-buttons {
    position: absolute; 
    top: 0; 
    right: 0;
    display: flex;
    gap: 2vw;
    font-size: 1.6rem;
    padding: 2rem;
    font-weight: bold;
    font-family: 'Jockey One', sans-serif;
}


.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 50px 0;
}

.hero-text {
    max-width: 600px;
}

.hero-heading {
    font-family: 'Jockey One', sans-serif;
    font-size: 50px;
    font-weight: bold;
    position:relative;
}

.hero-subtext {
    font-family: 'Times New Roman', serif;
    font-size: 24px;
}


.hero-image img {
    width: 250px;
    transform:scaleX(-1);
    margin-top:250px;
}


/* Container for the entire projects section */
.projects-section {
    width: 80%;
    margin: 50px auto;
    margin-top: 300px;
    text-align: center;
  }
  

  .projects-section h2 {
    font-family: 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight:lighter;
    margin-bottom: 40px;
  }
  
  /* Grid layout for the project boxes */
  .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for 4 boxes */
    gap: 20px;
  }
  
  /* Each clickable project box */
  .project-box {
    background-color: #E9D9D9; 
    aspect-ratio: 1 / 1; 
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  /* Slight zoom effect on hover */
  .project-box:hover {
    transform: scale(1.05);
  }
  
  /* Overlay that appears on hover */
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
  }
  
  /* Reveal overlay on hover */
  .project-box:hover .overlay {
    opacity: 1;
  }
  

.connect-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #f5f0ef; 
    padding: 20px 0;
    position: absolute; 
    bottom: 500px;
    left: 0;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: black;
    margin: 0 20px; 
}

.connect-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.connect-content h2 {
    font-size: 34px;
    font-weight: bold;
    font-family: 'Jockey One', sans-serif;
    margin: 0;
}


.icons {
    display: flex;
    gap: 20px;
    align-items: center;
}
.icons img {
    width: 32px; 
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    vertical-align: middle;
}


.icons img:hover {
    transform: scale(1.1); 
}


footer {
    position: absolute;
    bottom: 0;
    left:0;
    width: auto;
    height:auto;
    padding:1rem;
}


