body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

header {
    background: #fbd8b9;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e16e01 3px solid;
}

header .logo {
    margin: 0;
    font-size: 2.5em;
    transition: transform 0.3s ease;
}

header .logo:hover {
    transform: scale(1.05);
}

main {
    padding-top: 20px;
}

#hero {
    min-height: 200px;
    background: #f8ac89;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about {
    background: #fbd8b9;
    padding: 40px 0;
    color: #333;
}

#about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c77605;
}

.about-text {
    flex: 1;
    text-align: left;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

#services {
    padding: 40px 0;
}

#services .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;
    padding: 20px;
    margin: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 30%;
    min-width: 280px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item h3 {
    margin-top: 0;
    color: #333;
}

@media(max-width: 768px) {
    #about .container {
        flex-direction: column;
        text-align: center;
    }
    .about-text { text-align: center; }

    #services .container {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
    }

    #hero h2 {
        font-size: 2em;
    }
}

#contact {
    background: #fbd8b9;
    padding: 40px 0;
    text-align: center;
}

#contact h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.contact-info {
    margin-bottom: 30px;
    font-size: 1.1em;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

#contact-form button {
    background: #d37a06;
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #784000;
}

footer {
    background: #ffffff;
    color: #000000;
    text-align: center;
    padding: 5px 0;
    margin-top: 5px;
}

footer p {
    margin: 0;
}

.logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

html { 
    scroll-behavior: smooth; 
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d37a06;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

#back-to-top:hover { transform: scale(1.1); }

.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

#instagram-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
#instagram-float:hover {
    transform: scale(1.1);
}
#instagram-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .logo img {
        max-width: 180px;
    }

    #instagram-float {
        width: 40px;
        height: 40px;
        left: 10px;
        bottom: 10px;
    }

    #instagram-float svg {
        width: 20px;
        height: 20px;
    }
}