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

body {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* font-family: "Playfair Display", Georgia, "Times New Roman", serif; */
    background-image: url("/public/bg5.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.hero {
    text-align: center;
    margin: 30px 0;
}

.hero h1 {
    font-size: 36px;
    color: white;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.hero p {
    color: #d1d5db;
}

.main {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 40px 60px;
    align-items: start;
}

.left {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 20px;
    justify-content: start;
}

.info-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b9babb;
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-item strong {
    font-size: 16px;
    color: ghostwhite;
}

.info-item span {
    color: #fefeff;
}

.right {
    display: flex;
    justify-content: flex-end;
}

.feedback-card {
    width: 380px;
    padding: 20px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-height: 380px;
}

.feedback-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.977);
}

input::placeholder,
textarea::placeholder {
    color: white;
}

textarea {
    height: 130px;
}

/* button {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
} */

button:hover {
    background: white;
    color: black;
}

.footer {
    text-align: center;
    margin: 30px 0;
    color: #d1d5db;
    padding: 20px 0;
}

@media (max-width: 1100px) {
    .main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .right {
        justify-content: center;
    }

    .feedback-card {
        width: 100%;
        max-width: 450px;
    }

    .left {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 28px;
    }

    .main {
        padding: 20px;
    }

    .left {
        grid-template-columns: 1fr;
    }

    .info-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .main {
        padding: 15px;
    }

    .feedback-card {
        padding: 15px;
    }

    input,
    textarea {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}


.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background: rgba(0, 0, 0, 0.85);
    color: rgb(255, 255, 255);
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;

    a {
        text-decoration: none;
        color: white
    }
}



#toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    font-size: larger;
    background: rgba(0, 0, 0, 0.4);
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.sidebar.active {
    transform: translateX(0);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1002;
}

#closeSidebar {
    opacity: 1;
    pointer-events: all;
}

ul {
    list-style: none;

    li {
        margin: 15px 0;
    }
}

button {
    background-color: rgba(0, 0, 0, 0);
}

#closeSidebar {
    border: none;
    color: white;
    font-size: 25px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    left: 200px;
}

.nav-btn {
    font-size: 16px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    text-align: start;
}

.nav-btn:hover {
    background: #ffffff;

    a {
        text-decoration: none;
        color: rgb(0, 0, 0)
    }

    transform: scale(1.15);
}

#logo {
    width: 40px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.head a {
    text-decoration: none;
    color: white;
    display: flex;

    justify-content: center;
    align-items: center;

}

.head {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: var(--space-md);



    display: flex;
    flex-direction: column;
    gap: var(--space-sm);



}

.head h2 {
    text-align: center;
    font-size: 35px;
}


header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    padding-bottom: 40px;

}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.head img {
    width: 50px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 10px;

}