body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
}

h1 {
    font-weight: 5;
}

/* Navbar styles */
header {
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: black;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .hobertlogo {
    height: 25px;  /* Adjust based on logo size */
}

.menu {
    list-style-type: none;
    display: flex;
    gap: 40px;
}

.menu li {
    display: inline-block;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Space Grotesk', sans-serif;
}

.menu li a:hover {
    text-decoration: underline;
}


/* Hero Section */
.hero-content {
    text-align: left;
    padding: 20px;
    padding-bottom: 0px;
    background-color: black; /* Keeping background black */
    margin: 0 auto;
    max-width: 2400px;
}

.introduction h1 {
    font-family: 'Instrument Serif';
    font-size: 67px;
    line-height: 1.1;
    color: white;
    margin-top: 0px;
    margin-bottom: 5px;
    font-weight: '1'; /* Lighter font weight */
    text-align: left;
}

/* CTA (Call to Action) */
.cta a {
    color: white;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
}

.cta a:hover {
    text-decoration: underline;
    color: white; /* Hover color */
}

/* Works Section */
.works {
    margin-top: 10px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px; 
    align-items: center;
    background-color: black;
}

/* Row Container */
.row1, .row2, .row3, .row4, .row5{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 2400px;
}

/* Project Card Styles */
.nova, .everspring, .moonwell, .blume, .horae, .michutac, .feelify, .vinylloop, .vinapockets, .artbook{
    background-color: black;
    border-radius: 5px;
    padding: 0px;
    width: calc(50% - 10px);
    transition: transform 0.3s ease;
    text-align: left; 
}


/* Image Styles */
.nova img, .everspring img, .moonwell img, .blume img, .horae img, .michutac img, .feelify img, .vinylloop img, .vinapockets img, .artbook img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Text Styles inside the Project Cards */
.name {
    font-size: 24px;
    font-weight: 400;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: left; /* Align name text to the left */
}

.scope {
    font-size: 16px;
    margin: 0;
    text-align: left; /* Align scope text to the left */
}

/* Detail Link */
.detail {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Hovering effect */
.detail:hover {
    text-decoration: underline;
}

/* Responsive for Small Screens */
@media (max-width: 768px) {
    .row1, .row2, .row3, .row4, .row5 {
        flex-direction: column;
        align-items: center;
    }

    .nova, .everspring, .moonwell, .blume, .horae, .michutac, .feelify, .vinylloop, .vinapockets, .artbook{
        width: 100%; /* Cards take full width on small screens */
    }
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    padding: 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 2400px;
    margin: 0 auto;
    text-align: center;
    flex-wrap: wrap; /* Ensure items wrap on smaller screens */
  }
  
  .footer .copyright {
    font-size: 16px;
    font-weight: 400;
  }
  
  .social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .sociallogo {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .sociallogo a button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .sociallogo a button:hover {
    background-color: #333;
  }
  
  /* Contact info on the same line */
  .contact-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  
.gmail {
    font-size: 16px;
    font-weight: 300;
}