/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f0f4ff, #e0e4ff);
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #222;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
}

.navbar a:hover {
    color: #6b73ff;
    border-bottom: 2px solid #6b73ff;
}

/* Banner Header */
.banner-header {
    background-image: url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    transition: all 0.5s ease;
    padding: 120px 20px;
    position: relative;
}

.banner-header.shrink {
    padding: 40px 20px;
    background-position: center top;
}

/* Banner Content */
.banner-content h1 {
    font-size: 3em;
    margin: 0;
    transition: font-size 0.5s ease;
}

.banner-header.shrink .banner-content h1 {
    font-size: 1.8em;
}

.subtitle {
    font-size: 1.2em;
    color: #ddd;
    margin-top: 10px;
    transition: opacity 0.5s ease;
}

.banner-header.shrink .subtitle {
    opacity: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
}

.profile-pic {
    width: 100px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.button-container button {
    background: linear-gradient(135deg, #6b73ff, #000dff);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.button-container button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #4b54ff, #0009dd);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}

/* Responsive */
@media (max-width: 600px) {
    .banner-content h1 {
        font-size: 2em;
    }

    .profile-pic {
        width: 80px;
    }

    .button-container button {
        font-size: 16px;
        padding: 12px 20px;
    }
}
/* adding padding to my paragraphs and headings so it looks better on the site -J */
p {
    padding: 15px 20px;  
    line-height: 1.6;
}
h1 {
    padding: 15px 20px;
    line-height: 1.6;

}

.text-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;  /* Space between image and text */
    flex-wrap: wrap;  /* For mobile responsiveness issues posisbly ig */
}

.side-image {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.text-content {
    max-width: 500px;
    padding: 15px 20px;
    line-height: 1.6;
}
