/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Biski Trial', Merriweather;
    background: linear-gradient(135deg, #fdf1eb, #ffd8c7);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    text-align: center;
    padding: 3rem 1rem;
    color: #fff;
    border-bottom-left-radius: 50% 15%;
    border-bottom-right-radius: 50% 15%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.profile-pic:hover {
    transform: scale(1.1);
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 2px 2px #33333340;
}

.header p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Navbar */
.navbar {
    background-color: #ff7e5f;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #ffe3db;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

h2 {
    color: #ff7e5f;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff7e5f;
    margin: 0.5rem auto;
    border-radius: 2px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Skills Section */
.skills {
    background: #ffefea;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
    
}

.skills ul {
    list-style-image: url('paw-icon.png');
    padding-left: 2rem;
    font-size: 1.1rem;
}

/* Hobbies Section */
.hobbies {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hobbies ul {
    list-style-image: url('paw-icon.png');
    padding-left: 2rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: #ffefea;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact a {
    display: inline-block;
    text-decoration: none;
    margin: 0.5rem;
    color: #fff;
    background-color: #ff7e5f;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease-in-out;
}

.contact a:hover {
    background-color: #feb47b;
}

/* Footer */
.footer {
    background-color: #ff7e5f;
    text-align: center;
    padding: 1rem 0;
    color: #fff;
    margin-top: 2rem;
    font-size: 0.9rem;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.header h1 {
    animation: fadeIn 1s ease-in-out;
}

.header p {
    animation: fadeIn 1.5s ease-in-out;
}

.profile-pic {
    animation: bounce 2s infinite;
}

/* Button Styling */
.contact a {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact a:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0 1rem;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1rem;
    }

    .container {
        padding: 1rem;
    }

    h2 {
        font-size: 2rem;
        text-align: center;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar a {
        font-size: 1rem;
    }
}

/* Decorative Elements */
.decorative-paw {
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
    animation: fadeIn 1s ease-in-out;
}

.decorative-paw.one {
    top: 10%;
    left: 20%;
    transform: rotate(-15deg);
    width: 100px;
    height: 100px;
    background: url('catu.webp') no-repeat center/contain;
}

.decorative-paw.two {
    top: 50%;
    left: 70%;
    transform: rotate(30deg);
    width: 120px;
    height: 120px;
    background: url('paw-icon.png') no-repeat center/contain;
}

.decorative-paw.three {
    top: 80%;
    left: 30%;
    transform: rotate(-10deg);
    width: 90px;
    height: 90px;
    background: url('paw-icon.png') no-repeat center/contain;
}
/* Footer Styling */
footer {
    background-color: #f4ece2;
    text-align: center;
    padding: 1.5rem 0;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #4a4a4a;
    position: relative;
    margin-top: 2rem;
    border-top: 3px solid #f0b3c5;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: #f88c9d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #d65d7b;
}

/* Skill and Hobby List */
ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-family: 'Quantico', sans-serif;
    background: rgba(91, 16, 27, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.3s;
}

ul li:hover {
    transform: scale(1.05);
    background-color: #fde4e8;
}

ul li::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    background: url('paw-icon.png') no-repeat center/contain;
    animation: bounce 2s infinite;
}

/* Formatted Navbar */
.navbar {
    background-color: #fde4e8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.navbar a {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #4a4a4a;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.3s;
}

.navbar a:hover {
    background-color: #f0b3c5;
    color: white;
    transform: scale(1.1);
}

/* Enhanced Button Effects */
button {
    font-family: 'Quantico', sans-serif;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    color: #fff;
    background: linear-gradient(45deg, #f88c9d, #d65d7b);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: linear-gradient(45deg, #d65d7b, #f88c9d);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Special Touch for Profile Picture */
.profile-pic {
    border: 5px solid #fde4e8;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.profile-pic:hover {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Colorful Background for Sections */
.section {
    padding: 2rem 1rem;
    margin: 1rem 0;
    background: linear-gradient(135deg, #f9d3da, #fce6ea);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-in-out;
}
