* {
    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;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    width: 100%;
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(79, 78, 78, 0.5);
}

#logo {
    width: 60px;
    height: auto;
    background-color: rgba(255, 255, 255, 0);
    padding: 5px;
}

.navbar_menu {
    list-style: none;
    display: flex;
    gap: 20px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.navbar_menu a {
    text-decoration: none;
    color: #eee;
    transition: 0.3s;
}

.navbar_menu a:hover {
    color: #7e7e7e;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.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) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }
    .hamburger {
        display: block;
    }
    .navbar_menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    .navbar_menu.active {
        display: flex;
    }
    .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;
    }
}