/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #4a3500;
    background-color: #FFE0B2; /* Light orange background */
}

/* Header styles with sun */
header {
    background-color: #ff835d; /* Warm orange background for the header */
    color: #4a3500;
    text-align: center;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: #FF5722; /* Sunset red-orange sun */
    border-radius: 50%;
    top: -350px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 0 0 70px rgba(255, 87, 34, 0.5);
}

header h1, header p {
    position: relative;
    z-index: 1;
}

header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.7);
}

header p {
    font-weight: 400;
    font-size: 1.2rem;
    color: #5D4037; /* Darker brown for contrast */
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 250px);
}

.container h2 {
    color: #FF6F00; /* Bright orange for subheadings */
    font-weight: 600;
    margin-top: 2rem;
    border-bottom: 2px solid #FF8A00; /* Darker orange underline */
    padding-bottom: 0.5rem;
}

/* Portfolio Section */
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 10px;
    width: 100%;
}

.portfolio-box {
    position: relative;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    padding-bottom: 20px;
/*    background-color: #FF7043; */ /* Warm orange for portfolio box */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px; /* Fixed height */
}

.portfolio-box:hover {
    transform: translateY(-10px);
/*    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */ /* Slightly stronger shadow */
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.portfolio-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .portfolio-box {
        width: 100%;
    }
}

/* Footer styles */
footer {
    background-color: #FF5733;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.4);
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: invert(0) brightness(10%) contrast(100%);
}

/* General text styling */
p {
    color: #5D4037; /* Darker brown for readability */
    font-weight: 400;
}

/* Links */
a {
    color: #9e4200; /* Warm orange links */
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #FF3D00; /* Darker orange for hover */
}

/* Button style */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF6F00; /* Bright orange for buttons */
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.button:hover {
    background-color: #FF3D00; /* Darker orange for hover */
    transform: translateY(-2px);
}

