@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
:root {
    --primary-color: #d6a9a9;
    --secondary-color: #121011;
    --accent-color: #f0e4d7;
    --text-color: #333;
    --background-color: #fff;
}
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    list-style: none;
    text-decoration: none;
}
/*img{
    width: 100%;
}*/
body{
    color: #121011;
}
header{
    position: relative;
    width: 100%;
    top: 10;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 18px 100px;
}

.annonce {
    background-color: #121011;
    color: #fff;
    padding: 0.5rem;
    text-align: center;
}

.annonce span {
    color: #d6a9a9;
    font-weight: bold;
}

.logo{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #121011;
    text-transform: uppercase;
}
.logo .bx{
    font-size: 24px;
    color: #d6a9a9;
}



.navbar{
    display: flex;
}
.navbar a{
    padding: 8px 17px;
    color: #121011;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}
.navbar a:hover{
    color: #d6a9a9b4;
}
#menu-icon{
    font-size: 24px;
    color: #121011;
    z-index: 10001;
    cursor: pointer;
    display: none;
}
.header-icon{
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    column-gap: 0.8rem;
    align-items: center;
}
.header-icon .bx{
    color: #fff;
    padding: 7px;
    background: #d6a9a9;
    border-radius: 0.9rem;
}
.header-icon .bx:hover{
    background: #d6a9a9b4;
}
.header-icon i{
    position: relative;
}
.header-icon span{
    position: absolute;
    top: -7px;
    right: -7px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #121011;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 500;
}

.search-box{
    position: relative;
    width: 200px;
    box-shadow: 0 0 16px 1px rgb(14 52 54 / 15%);
}
.search-box input{
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    padding: 0px;
    color: #d6a9a9;
}
.search-box input::placeholder{
    font-size: 1rem;
    font-weight: 500;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 2rem;
}

.payment-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 600px;
}

.payment-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.card-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.card-icons i {
    font-size: 2rem;
    color: var(--secondary-color);
}

footer {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-box a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-box a:hover {
    color: var(--primary-color);
}

.social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social a i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.social a i:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

    .navbar {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
    }

    .navbar li {
        margin: 0.5rem 0;
    }

    #menu-icon {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .form-row {
        flex-direction: column;
    }

    footer {
        grid-template-columns: 1fr;
    }
}