/* Monochrome Brown Theme */
:root {
    --primary-color: #6D4C41; /* Dark Brown */
    --secondary-color: #8D6E63; /* Medium Brown */
    --background-light: #D7CCC8; /* Light Brown */
    --background-dark: #4E342E; /* Deep Brown */
    --text-light: #3E2723; /* Darker Brown */
    --text-dark: #FFFFFF; /* White for contrast */
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: var(--background-light);
    color: var(--text-light);
    transition: background 0.3s, color 0.3s;
}

/* Top Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: var(--primary-color);
    color: var(--text-dark);
}

.contact-info a, .social-icons a {
    color: var(--text-dark);
    text-decoration: none;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Main Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #8D6E63; /* Medium Brown */
    color: #FFFFFF; /* White */
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease-in-out, transform 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #4E342E; /* Deep Brown */
    transform: scale(1.1);
}

.logo img {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: bold;
}

nav ul li a:hover {
    color: var(--background-dark);
}

/* Section Styling */
.section {
    padding: 50px 5%;
    text-align: center;
}

.profile-img {
    border-radius: 50%;
    width: 150px;
    margin-bottom: 20px;
}

/* Skills */
.skills-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 1.2rem;
}

.skills-list span {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 5px;
}

/* Contact Form */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background: var(--background-light);
    color: var(--text-light);
}

button {
    padding: 10px;
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: var(--background-dark);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: var(--primary-color);
    color: var(--text-dark);
}
/* midea quari */

/* ✅ Default Desktop View (No Media Query Needed) */

/* ✅ Tablet View (max-width: 768px) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .top-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .contact-info, .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .profile-img {
        width: 120px; /* Smaller profile image */
    }
    .skills-list {
        flex-direction: column;
        align-items: center;
    }
}

/* ✅ Mobile View (max-width: 480px) */
@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    .logo img {
        height: 60px; /* Smaller logo */
    }
    .section {
        padding: 30px 5%;
    }
    form {
        width: 90%; /* Make form more readable on small screens */
    }
    input, textarea {
        font-size: 14px;
    }
}

