@font-face {
    font-family: 'Abordage-Regular';
    src: url('/fonts/Abordage-Regular.woff') format('woff');
    src: url('/fonts/Abordage-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mattone-Bold';
    src: url('/fonts/Mattone-Bold.woff') format('woff');
    src: url('/fonts/Mattone-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HAT-UL';
    src: url('/fonts/HAL-UL.woff') format('woff');
    src: url('/fonts/HAT-UL.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HAT-ULI';
    src: url('/fonts/HAL-ULI.woff') format('woff');
    src: url('/fonts/HAT-ULI.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AQEEQ';
    src: url('/fonts/AQEEQSANSPRO-Thin.woff') format('woff');
    src: url('/fonts/AQEEQSANSPRO-Thin.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NEUE';
    src: url('/fonts/NeueMontreal-Light.woff') format('woff');
    src: url('/fonts/NeueMontreal-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    display:flex;
    flex-direction: column;
    font-family: 'HAT-UL', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    margin: 0;
    padding: 0; 
    padding-top: 80px;   
}

html, body {
    font-family: 'HAT-UL', Arial, sans-serif !important;
    height: 100%;        
    margin: 0;
    padding: 0;
    background-color: #000; 
    color: #d6d3d3;
    font-size: 15px;
}

header {
    font-family: 'HAT-ULI', Arial, sans-serif !important;
    position: fixed;
    font-size: 20px;
    z-index: 1000;
    justify-content: space-between;
    top: 0;
    left: 0;
    display: flex;                   /* Use flex for layout */
    align-items: center;             /* Align items vertically */                      /* Space between logo and nav */
    padding: 0px;                   /* Add some padding */
    width: 100%;              /* Full width */

}

header nav a {
    font-family: 'HAT-ULI', Arial, sans-serif !important;
    color: #d1c6d0;
}



.logo img {
    width: 150px;                    /* Set logo width */
    height: auto;                   /* Maintain aspect ratio */
    display: block;                 /* Remove any default spacing */
}

nav {
    display: flex;
    justify-content: left;          /* Align links to the left */
    align-items: center;            /* Center items vertically */
    gap: 30px;                      /* Space between links */
    padding: 10px 20px;             /* Add padding inside navbar */
    border-radius: 5px;                   
    
}

nav a {

    margin: 0;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d59bca;             /* Your light purple hover color */
}


a {
    font-family: 'Abordage-Regular', Arial, sans-serif;
    color: inherit;              /* Inherit the text color from parent */
    text-decoration: underline;      /* Remove underline */
    transition: color 0.3s ease; /* Smooth color transition */
}

a:hover {
    color: #d59bca;            /* Light purple hover color */
    
}



nav a::after {
    content: '/';
    margin-left: 3px;
    color: #d59bca;
}

.left-column-text {
    font-family: 'HAT-UL', Arial, sans-serif;
    color: #d8d7d8;
    width: 500px;
    padding: 20px;
    position: absolute;
    top: 80px;
    left: 1px;
    text-align: left;
    line-height: 1.3;
    font-size: 14.5px;
}

.big-margin-text {
    margin: 20px 90px 20px 90px; /* top, right, bottom, left */
    font-size: 1.2em; /* Optional: Makes the text a bit bigger */
    line-height: 1.4; /* Optional: Improves readability */
}

/*.projects {
    padding-top: 3em;
    text-align: center;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
    padding: 0 2em;
}

.project-item {
    position: relative;
    display: inline-block;
    /*border-radius: 20px; Rounded corners
    overflow: hidden;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.project-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: start;
    color: #fff;
    font-family: 'HAT-UL', Arial, sans-serif;
    font-size: 18px;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 0 0 20px 20px; 
}

.project-item:hover {
    background-color: #b09eb2;
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.project-item:hover img {
    opacity: 0.9;
} */


footer {
    text-align: center;
    padding: 1em 0;
    background: #000;
}

.about-page {
    background: url('images/about-bg.jpeg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}


.projects-page {
    background: url('images/projects-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project1-page {
    background: url('images/project1-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project2-page {
    background: url('images/project2-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project3-page {
    background: url('no') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project4-page {
    background: url('images/project4-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project5-page {
    background: url('images/project5-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project6-page {
    background: url('images/project6-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project7-page {
    background: url('images/project7-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.project8-page {
    background: url('images/project8-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}
.project9-page {
    background: url('images/project9-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.contact-page {
    background: url('images/contact-bg.jpg') no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #000; 
}

.image-top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    height: auto;
}

.image-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: auto;
}

.image-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
}

.right-image {
    float: right;
    max-width: 60%;
    height: auto;
    margin-left: 10px;               /* Space between text and image */
}

.right-imagee {
    float: right;
    max-width: 40%;
    
    margin-left: 70px;  
    margin-right:50px;            /* Space between text and image */
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}


.centered-image {


    max-width: 80%;                /* Prevent the image from exceeding 80% of the page width */
    max-height: 80vh;              /* Limit the height to 80% of the viewport height */
    height: auto;                  /* Maintain aspect ratio */
    display: block;                /* Prevent extra space below the image */
    margin: 20px auto;             /* Center the image horizontally */
    border-radius: 10px;           /* Add rounded corners */
    object-fit: contain;
}


body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

section {
    margin: 10px;
    padding-top: 50px;
}

.centered-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.go-back-btn {
    position: absolute;
    top: 30px;
    left: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.go-back-btn:hover {
    transform: scale(1.2);
    color: #d59bca;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

li {
    position: relative;
    padding-left: 20px;
}

li::before {
    content: "→"; /* Arrow character */
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.carousel {
    position: relative;
    max-width: 100%; 
    width: 80%;     
    margin: auto;
    overflow: hidden; 
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 30%;
}

.carousel-container img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    flex: 0 0 100%;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 20px;
}

.carousel-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.carousel-btn:hover {
    color: #d59bca; 
}

.bilingual-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.column {
    flex: 1;
    max-width: 50%;
}
.arabic {
    font-family: 'AQEEQ', Arial, sans-serif;
    text-align: right;
    direction: rtl;
    font-size: 19px;
    text-decoration: solid;
    unicode-bidi: bidi-override;
}
.english {
    text-align: left;
}
.centered-columns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    margin: 0 auto;
    max-width: 80%; 
    min-height: 90vh;
}


/*.rounded-media {
    border-radius: 5px; 
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-media:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}*/

.bilingual-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.column {
    flex: 1;
    max-width: 50%;
}
.arabic {
    text-align: right;
    direction: rtl;
    unicode-bidi: bidi-override;
    font-size: 17px;
}
.english {
    text-align: left;
    font-size: 14.8px;
}
.centered-columns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 60%;
}

/* Styles for the contact sidebar and toggle button */
.contact-sidebar {
    position: fixed;
    top: 10%;
    right: -350px; /* Hidden off-screen */
    width: 180px;
    height: auto;
    opacity: 85%;
    background-color: #785a77;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px 0 0 20px;
    transition: right 0.6s ease;
}

.contact-sidebar.open {
    right: 0; /* Slides in when open */
}

.contact-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #c99bc9;
    color: #e4cde9;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.nav-contact, .contact-toggle {
    /* Style your nav contact button as desired */
    color: #d7c7dd;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
}

.contact-apricot {
    display: block;        /* Ensures it can center horizontally */
    width: 1px; 
    font-size: 20px;          /* Adjust as needed for how tiny you want it */
    height: auto;          /* Keeps the aspect ratio */
    margin: 0 auto 1em;    /* Centers horizontally, adds space below the icon */
}











.projects {
    text-align: center;
    padding: 3em 0;
    font-family: 'HAT-UL', Arial, sans-serif !important;
  
}

.project-list {
    display: flex;
    color: #ad82b0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    padding-left:20px;
    line-height: 2px;
    letter-spacing: 1px;
    padding-top: 150px;
    font-family: 'HAT-UL', Arial, sans-serif !important;
    font-size: 1.4em;

}

.project-link {
    text-decoration: none;
    font-family: 'HAT-ULI', Arial, sans-serif !important;
    color: #d5c9d6;
    position: relative;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #e6d5f7;
    font-style: italic;
    text-decoration: underline;
}

.project-preview {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
    /*transform: translateY(-50%, -50%);
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    height: 300px;*/
}

.project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border: 0.3px solid #898686;
    border-radius: 0;
    box-shadow: none;
}



#preview-image {
    position: fixed; 
    width: 300px;
    height: 300px;        /* Fixed so it sticks to the viewport */
    display: none;
    border: 1px solid #565454;
    pointer-events: none;
    z-index: 999;
} 

.image-strip {
    display: flex;
    justify-content: flex-start; /* Or use 'center' or 'flex-start' */
    gap: 0.1px; /* Add space between images */
    padding: 10px;
    overflow: hidden; /* Prevent scroll if you want a fixed strip */
}

.image-strip img {
    max-height: 200px; /* Control image height */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Crop or fit the image */
}


.project-footer {
    padding: 20px;
    background-color: #000000;
    text-align: center;
    border-top: 1px dotted #797878;

}   

.footer-nav {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}

.footer-link {
    text-decoration: none;
    font-family: "HAT-ULI";
    color: #b37fb0;
    letter-spacing: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c1c1c1;
}
