/* contact section */

/* first part info contact */ 


/* Contact Section Full CSS */
#contact {
    width: 100vw;
    min-height: 130vh;
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-section {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-information {
    width: 80%; /* Increased from 60% to allow more space on smaller screens */
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Ensures items stay on one line */
}

.contact-left-column,
.contact-right-column,
.contact-middle-column {
    width: 30%; /* Equal width for all columns */
    display: flex;
    justify-content: center;
    align-items: center;
}

.queen-image,
.passport-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%; /* Ensures image doesn't overflow its container */
}

/* Override for passport image */
.passport-image {
    width: 200%; /* Or whatever size you want */
    max-width: none; /* Remove the max-width restriction */
}
.contact-section-details {
    width: 60%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    background-color: rgba(50, 50, 50, 0.10);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.contact-info-item {
    display: flex;
    align-items: center; 
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    border-radius: 10px;
}

.contact-info-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.contact-info-item img {
    width: 30px;
    opacity: 0.9;
}

.contact-info-item span {
    font-size: 1.2rem;
    color: #f0f0f0;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
}

.contact-info-item:hover span {
    color: white;
}

.additional-section {
    width: 100vw;
    height: 100vh; 
    position: relative; 
    z-index: 10;
}

.additional-section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 70%;
}

.additional-black-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0.6;
}

.additional-section-content {
   position: relative; 
   z-index: 2; 
   width: 100%; 
   height: 100%; 
   display: flex; 
   justify-content: center; 
   align-items: center; 
}

.half-image {
   width: auto; 
   height: 100vh; 
   object-fit: cover; 
   z-index: 2; 
   opacity: 0.5;
}

.facebook-embed {
   position: absolute; 
   top: 50%; 
   left: 50%; 
   transform: translate(-50%, -50%); 
   z-index: 3; 
   display: flex; 
   flex-direction: column; 
   align-items: center; 
   width: 350px; 
}

.facebook-embed iframe {
   width: 350px; 
   height: 550px; 
}

.messenger-link {
   display: flex; 
   flex-direction: column; 
   align-items: center; 
   text-decoration: none; 
   margin-top: 20px; 
   color: white; 
   transition: transform .3s ease; 
   z-index: 4; 
}

.messenger-link img {
   width: 100px; 
   height: 100px; 
}

.messenger-link span {
   margin-top: 10px; 
   font-size: 1rem; 
   color: white; 
   font-family: "Arial", sans-serif; 
}

.messenger-link:hover {
   transform: scale(1.1); 
}
