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

/* Heading style */
h1 {
    font-weight: 5;
}

/* Navbar styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

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;
    color: #B49BFF;
}

/* Container for all columns */
.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    grid-template-areas:
        "profile maps maps maps"
        "education education experience experience"
        "activities activities awards awards";
}

/* Styles for individual columns */
.column {
    background-color: black;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.column h2 {
    font-size: 16px;
    font-weight: 500;
    text-decoration-line: underline;
    margin-bottom: 10px;
}

.column p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Maps section: Stacked vertically */
.maps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .introduction h1 {
        font-size: 75%;
    }

    .container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "profile maps"
            "education experience"
            "activities awards";
    }
}

@media (max-width: 768px) {
    .introduction h1 {
        font-size: 75%;
    }
    
    .container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "profile"
            "maps"
            "education"
            "experience"
            "activities"
            "awards";
    }
}



/* 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;
}
  
.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: #B49BFF;
}
  
/* 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;
}