@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    object-fit: cover;
}

body {
    background-color: #f6f6f6;
}

nav {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav .logo {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center the items vertically */
}

.logo-image {
    width: 50px; /* Adjust the width as needed */
    height: 50px; /* Keep it square for a rounded effect */
    border-radius: 50%; /* Make the image rounded */
    margin-right: 20px; /* Space between the logo and text */
}

nav a.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

nav .logo span {
    margin-left: -10px; /* Adjust this value to move the text to the left */
}

nav .links {
    display: flex;
    gap: 20px;
}

nav .links a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav .links a:hover {
    color: #ff5722;
}

nav .links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: #ff5722;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav .links a:hover::after {
    transform: scaleX(1);
}

.main h1{
    justify-self: center;
    margin-top: 20px;
    color: #ff5722;
}

.feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.star {
    font-size: 30px;
    color: #ffffff; /* Default star color */
    cursor: pointer;
    transition: color 0.3s ease;
}

.star.hovered {
    color: #ff5722; /* Color on hover */
}

.star.selected {
    color: #ff5722; /* Final selected color */
}

textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.submit-btn {
    padding: 10px 20px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1b8ad9; /* Darker shade on hover */
}


footer {
    background-color: #333;
    color: #fff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer h3 {
    font-size: 36px;
}

footer .links a {
    color: #aaa;
    margin: 0 10px;
}

footer .links a:hover {
    color: #fff;
}

footer .social i {
    font-size: 24px;
    color: #ff5722;
    margin: 0 10px;
}


@media screen and (max-width: 1200px) {
    header h1 {
        font-size: 48px; /* Reduce font size on medium screens */
    }
    footer h3 {
        font-size: 30px; /* Adjust footer heading size */
    }
}
