* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') no-repeat center center/cover;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.logo {
    font-size: 3rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    margin: 15px 0;
}

.btn {
    padding: 12px 25px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    color: white;
    z-index: 10;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ddd;
}
.portfolio {
    padding: 60px 50px;
    text-align: center;
}

.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.categories {
    margin-bottom: 30px;
}

.categories button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.categories button:hover {
    background: #444;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.photo img:hover {
    transform: scale(1.05);
}
.about {
    padding: 60px 50px;
    background: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}
.services {
    padding: 60px 50px;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #f4f4f4;
    padding: 25px;
    width: 300px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    margin: 10px 0;
}

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.testimonials {
    padding: 60px 50px;
    background: #111;
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: #222;
    padding: 25px;
    width: 300px;
    border-radius: 10px;
    font-style: italic;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-card h4 {
    margin-top: 15px;
    font-style: normal;
    font-weight: normal;
    color: #ccc;
}
.cta {
    padding: 60px 20px;
    text-align: center;
    background: black;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
}

.cta-btn {
    padding: 12px 25px;
    margin: 5px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.contact {
    padding: 60px 20px;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
}

.contact-form button {
    padding: 12px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

.socials {
    margin-top: 20px;
}

.socials a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
}
.footer {
    padding: 20px;
    background: #111;
    color: white;
    text-align: center;
}

.footer-links,
.footer-socials {
    margin-top: 10px;
}

.footer a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}

.favorites {
    padding: 60px 50px;
    font-size: larger;
    text-align: default;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}