* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff9800;
    font-family: 'Montserrat', sans-serif;
}

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

.nav-links li {
    margin-left: 45px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.nav-links li a i {
    margin-right: 8px;
    color: #ff9800;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff9800;
}

.nav-links li a:hover i {
    color: white;
}

/* Navbar Hover Effect */
.nav-links li a::after {
    /* content: ""; */
    display: block;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px;
    transition: all 0.3s;
}

.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.toggle span:nth-child(2) {
    opacity: 0;
}

.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: rgba(51, 51, 51, 0.9);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
    }


    .nav-links {
        background-color: rgba(0, 0, 0, 0.8); 
    }

    .hamburger span {
        background-color: #ff9800; 
    }

    .hamburger {
        background-color: rgba(0, 0, 0, 0.8); 
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
        background-color: rgba(0, 0, 0, 0.8); 
    }

    .hamburger span {
        background-color: #ff9800; 
    }
}


.hero {
    display: flex;
    align-items: center;
    padding: 50px;
    min-height: 100vh;
    background-image: url('adorable-portrait-pomeranian-dog.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    color: white;
    padding-top: 80px; 
}

.hero-content {
    max-width: 40%;
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Pacifico', cursive;   
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    font-family: 'Pacifico', cursive; 
}

.hero-content h1 .highlight {
    color: #ff9800; 
    font-weight: bold; 
    font-family: 'Pacifico', cursive; 
}

.hero .btn {
    background-color: #ff9800;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3; 
    transform: scale(2); 
  }
