/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #ecf0f1; /* Light gray background */
    color: #34495e; /* Dark gray text */
}

/* Container for centering content */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(44, 62, 80, 0.7); /* Deep blue background with some transparency */
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    border-bottom: #1abc9c 3px solid; /* Teal accent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header .tagline {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Main Content Styles */
main {
    padding: 20px 0;
}

/* Section Styles */
section {
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
}

section:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

section h2 {
    color: #2c3e50; /* Deep blue for headings */
    border-bottom: 2px solid #1abc9c; /* Teal accent */
    padding-bottom: 10px;
}

/* Services List */
#services ul {
    list-style: none;
    padding: 0;
}

#services li {
    background: rgba(234, 250, 241, 0.7); /* Light teal background with transparency */
    color: #16a085; /* Darker teal text */
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#services li:hover {
    transform: translateX(10px);
    background: rgba(234, 250, 241, 1);
}

/* Portfolio Section */
.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background: rgba(249, 249, 249, 0.7);
    padding: 15px;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Contact Section */
#contact a {
    color: #1abc9c; /* Teal for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact a:hover {
    text-decoration: underline;
    color: #16a085;
}

.social-links {
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    font-size: 2.5rem;
    margin: 0 10px;
    padding: 15px;
    border-radius: 10px;
    color: #34495e;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    border: 2px solid #bdc3c7;
}

.social-link:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px);
    text-decoration: none;
}

.facebook-link:hover {
    background-color: #3b5998;
    box-shadow: 0 10px 20px rgba(59, 89, 152, 0.4);
}

.linkedin-link:hover {
    background-color: #0077b5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
}


/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(44, 62, 80, 0.7); /* Deep blue background with some transparency */
    color: #fff;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Portfolio Link Styles */
.portfolio-item a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #1abc9c;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}

.portfolio-item a:hover {
    text-decoration: none;
    box-shadow: 0 0 20px rgba(26, 188, 156, 0.9);
}

/* Responsive Design */
@media(max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2rem;
    }

    header .tagline {
        font-size: 1rem;
    }
}
