@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
:root {
    --primary-color: #d6a9a9;
    --secondary-color: #f0e4d7;
    --text-color: #333;
    --light-text: #666;
    --white: #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;
}
/* Contact Header */
.contact-header {
    text-align: center;
    padding: 3rem 0;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card .icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card .icon i {
    font-size: 24px;
    color: var(--white);
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.image-section img {
    width: 75%;
    height: 546px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #c99393;
}

/* Map Section */
.map-section {
    padding: 2rem;
    margin-bottom: 2rem;
}

.map-section iframe {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
}

.footer-box {
    padding: 1rem;
}

.footer-box .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    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;
}

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

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

.social a i {
    font-size: 20px;
    padding: 10px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
}

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

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

@media (max-width: 991px) {
    header {
        padding: 20px;
    }

    .navbar {
        display: none;
    }

    .navbar.active {
        right: 0;
    }

    .navbar a {
        display: block;
        padding: 10px;
        margin: 5px 0;
    }

    #menu-icon {
        display: initial;
    }

    .search-box {
        display: none;
    }

    ul.navbar {
        position: absolute;
        z-index: 200;
        box-shadow: 2px 2px 0 #BEBEBE;
        width: 35%;
        display: none;
    }

    ul.navbar li {
        float: none;
        margin: 0;
    }

    ul.navbar li a {
        border-bottom: 1px dotted #ccc;
        border-right: none;
        color: #000;
        padding: 15px 30px;
    }

    ul.navbar li a:hover {
        color: #d6a9a9;
        background: #eeeeee;
    }

    ul.primary li:hover ul {
        display: block;
        background: #fff;
    }
   
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .image-section img{
        width: auto;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social {
        justify-content: center;
    }
}
