/* Reset Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    background: linear-gradient(to right, rgba(252, 234, 187, 0.9), rgba(248, 181, 0, 0.9));
    color: #333;
}

/* Navbar */
header {
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #5a3e2b;
}

ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 50px;
}

ul li a {
    text-decoration: none;
    color: #5a3e2b;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

ul li a:hover {
    color: black;
}

/* Contact Button */
.contact-btn {
    background: #5a3e2b;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: black;
}

/* Skills Section */
.skills {
    max-width: 850px;
    margin: 140px auto 50px;
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: 0.4s ease-in-out;
}

.skills:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.02);
}

/* Headings */
h1 {
    font-size: 38px;
    color: #5a3e2b;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 26px;
    color: #5a3e2b;
    margin-top: 20px;
}

/* Paragraphs */
.skills p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
}

/* Skills Container */
.skill-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

/* Skill Card */
.skill-card {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 242, 204, 0.8));
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.skill-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 242, 204, 0.85));
}

/* Responsive */
@media (max-width: 768px) {
    .skills {
        width: 90%;
        padding: 15px;
    }
}
