/* Apply a modern, clean font */
body {

    font-family: 'Century Gothic', 'Montserrat', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    text-align: center; /* Center text content globally */
    background-color: #ebe8de;  
  




}

/* Style the header */
header {
    background-color: transparent; /* Let the radial gradient show through */
    color: #333;
    padding: 1.5rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    margin: 0;
}
h2 {
  font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    color: white;
}


/* Profile picture styling */
.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 20px;
    display: block;
    margin-left: auto; /* Ensure it's centered horizontally */
    margin-right: auto; /* Ensure it's centered horizontally */
    margin-bottom: 5px;
}

/* New text styling */
.intro-text {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #333;
}

/* Description text styling */
.description-text {
    font-size: 1rem;
    margin: 0;
    color: #666;
}

/* Section Styles */
section {
    padding: 20px 0;
}

/* About section styling */
section#about {
    margin-top: 15px;
}

section#about h2 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    margin-top: 0;
}

section#about p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

/* Projects section styling */
section#projects h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 15px;
    color: white;
}

section#skills h2 {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

/* List styling */
ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Ensure no margin for the ul */
}

ul li {
    margin: 10px 0;
}

/* Anchor link styling */
a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #ff6347;
}

/* Style the footer */
footer {
    color: #333;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

/* Style for small icons in the footer */
.logo {
    display: flex;
    align-items: center; /* Align icon and text vertically */
    justify-content: center; /* Center the content horizontally */
    font-size: 1rem;
    color: #444;
    text-transform: none;
    margin: 10px 0; /* Adds spacing between logos in the footer */
}

.logo img {
    width: 24px; /* Default width for larger screens */
    height: auto; /* Maintains the aspect ratio of the logo */
    object-fit: contain; /* Ensures the image fits within the given dimensions without distortion */
    padding-right: 10px;
}

/* Responsive styles for tablets and smaller screens */
@media (max-width: 768px) {
    .logo img {
        width: 30px; /* Resize the icon for tablet screens */
    }
}

/* Even smaller screens (mobile) */
@media (max-width: 480px) {
    .logo img {
        width: 16px; /* Further reduce the icon size for mobile */
    }

    .logo a {
        font-size: 0.9rem; /* Adjust the font size to be smaller on mobile */
    }
}

/* Wireframe image styling */
/* Only style general images in the projects section */
section#projects img {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

/* Profile picture stays at fixed size */
.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 5px auto;
}
.castle-rock {
    max-width: 200px; /* or any size you prefer */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.skills-list {
    column-count: 2;
    column-gap: 40px;
    list-style-type: disc;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-left: 20px;
}

.skills-list li {
    margin-bottom: 8px;
}

.skills-container {
    display: flex;
    justify-content: center;
    align-items: center;

}
