/* General Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 0;
}
a {
    color: #333;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background-image: url('images/rob 31 years.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}
.hero h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5em;
    margin-bottom: 20px;
}
.hero p {
    position: relative;
    z-index: 2;
    font-size: 1.2em;
    margin-bottom: 20px;
}
.cta-buttons {
    position: relative;
    z-index: 2;
}
.cta-buttons .btn {
    background-color: #6c63ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    margin: 0 10px;
}

/* Host Section */
#host {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}
.host-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.artist-collaborations {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.artist-photo {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

/* Recognition Section */
#recognition {
    padding: 50px 20px;
    background-color: #fafafa;
    text-align: center;
}
.award-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Fun Section */
#fun {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}
.meme {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    background-color: #fafafa;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}