/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@300;400;900&family=Oranienbaum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@300;400;900&family=Orbitron:wght@400;700&display=swap');

/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* 🔹 Body Styling */
body {
    background-color: #A0A0A0; /* Black background */
    color: #FFFFFF; /* White text for better contrast */
    font-family: 'comic-sans', serif;
    padding-top: 320px;
    text-align: center;
}

/* 🔹 Top Banner */
.top-banner {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
}

.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.top-banner:hover img {
    transform: scale(1.05);
}

/* 🔹 Container */
.container {
    width: 80%;
    margin: auto;
    padding-top: 320px;
}

/* 🔹 Profile Section */
.profile-container {
    background-color: #FFFFFF; /* White box */
    color: #000000; /* Black text */
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid black;
}

/* 🔹 Separator Line */
.separator {
    width: 80%;
    height: 2px;
    background-color: black;
    border: none;
    margin: 15px auto;
    opacity: 0.6;
}

/* 🔹 Headings */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 60px;
    color: black;
    font-weight: bold;
}

h2 {
    font-family: 'Londrina Solid', sans-serif;
    font-size: 50px;
    color: black;
    font-weight: bold;
}

h3 {
    font-size: 35px;
    font-weight: bold;
    color: black;
}

/* 🔹 Paragraphs */
p {
    font-size: 25px;
    color: black;
}

/* 🔹 Navigation */
nav {
    margin: 20px 0;
}

nav a {
    font-size: 25px;
    margin: 0 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav a:hover {
    color: gray;
}

/* 🔹 Project Section */
.project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 50px auto;
    background: #D0D0D0; /* White box */
    color: black;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(255, 255, 255, 0.25);
}

/* 🔹 Project Image */
.project-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out;
}

.project-image img:hover {
    transform: scale(1.05);
}

/* 🔹 Project Info */
.project-info {
    width: 100%;
    text-align: center;
    color: black;
    margin-top: 15px;
}

.project-info h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 20px;
    line-height: 1.5;
}

/* 🔹 Social Links */
.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin: 10px;
}

.social-links img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* 🔹 About Me Section */
.about-container {
    display: flex;
    align-items: center;
    background: #FFFFFF; /* White box */
    color: black;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.about-image img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #000000;
    margin-right: 20px;
}

.about-info {
    flex: 1;
}

.about-info h2 {
    font-size: 30px;
    color: black;
    margin-bottom: 10px;
}

.about-info p {
    font-size: 18px;
    color: black;
    line-height: 1.6;
}

/* 🔹 Contact Section */
.contact-container {
    background-color: #FFFFFF; /* White box */
    color: black;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    width: 80%;
    margin: auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.contact-container h2 {
    font-size: 40px;
    color: black;
    margin-bottom: 10px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.contact-links a {
    color: black;
    font-size: 22px;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #ddd;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.contact-links a:hover {
    background-color: #bbb;
}

/* 🔹 Subheadings for Project Categories */
.subheading {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin: 40px 0 20px;
}

/* 🔹 Divider Between Sections */
.project-divider {
    width: 80%;
    height: 4px;
    background-color: white;
    border: none;
    margin: 40px auto;
    opacity: 0.7;
}

/* 🔹 Section Divider */
.section-divider {
    width: 80%;
    height: 4px;
    background-color: white;
    border: none;
    margin: 40px auto;
    opacity: 0.7;
}
