/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f4f4f4;
}

header {
    position: relative;
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

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

header p {
    font-size: 1.2em;
}

header .btn {
    background: #e91e63;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
}

header .btn:hover {
    background: #c2185b;
}

/* Navigation */
#navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#navbar ul {
    list-style: none;
    padding: 0;
}

#navbar ul li {
    display: inline;
    margin: 0 15px;
}

#navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

#navbar ul li a:hover {
    text-decoration: underline;
}

#navbar-toggle {
    display: none;
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    #navbar ul {
        display: none;
        flex-direction: column;
    }
    
    #navbar ul li {
        display: block;
        margin: 10px 0;
    }
    
    #navbar ul.active {
        display: flex;
    }

    #navbar-toggle {
        display: block;
    }
}

/* Sections */
section {
    padding: 60px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #333;
}

p {
    text-align: center;
    font-size: 1.1em;
    color: #555;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    border-radius: 10px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Portfolio Gallery */
#portfolio {
    background: #fff;
    padding: 60px 20px;
}

.filters {
    text-align: center;
    margin-bottom: 20px;
}

.filters button {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.filters button:hover {
    background: #c2185b;
}

.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-items .item {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-items .item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-items .item:hover img {
    transform: scale(1.05);
}

/* Contact Form */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

#contact-form button {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

#contact-form button:hover {
    background: #c2185b;
}

/* Resume Section */
#resume {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

#resume a {
    color: #e91e63;
    text-decoration: none;
}

#resume a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    position: relative;
}

footer p {
    margin: 0;
}

footer a {
    color: #e91e63;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Scroll-to-Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    display: none;
}

#scroll-to-top:hover {
    background: #c2185b;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    .carousel-prev, .carousel-next {
        font-size: 1.2em;
        padding: 8px;
    }
}
