@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&display=swap');





/* Header */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px;
    text-align: center;
    
    
}

nav {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}
.button-container {
   
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 16px;

}






/* General Button Style */
.btn {
    padding: 10px 10px;
    font-size: 12px;
    border: none;
    border-radius: 21px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: white;
    
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(90deg, #4ca1af, #2c3e50);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    
}

.btn-primary:hover {
    background: linear-gradient(90deg, #35758e, #1b2835);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
    background-size: 100%;
   
   

}

header {
    background: linear-gradient(90deg, #4ca1af, #2c3e50);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons button {
    background: white;
    color: #2c3e50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-buttons button:hover {
    background: #2c3e50;
    color: white;
}

.search-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}




.search-bar {
    display: flex;
    width: 80%;
    max-width: 600px;
    background: #f1f1f1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    outline: none;
}

.search-bar button {
    background: #4ca1af;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-bar button:hover {
    background: #35758e;
}

.language-selector {
    padding: 15px 15px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;    
}

.language-selector select {
    padding: 10px;
    border: none;
    border-radius: 20px;
    background: white;
    font-size: 16px;
    color: #2c3e50;
    cursor: pointer;
}
.ad-space {
width: 90%;
max-width: 800px;
background: linear-gradient(90deg,  #1b2835,  #1b2835);
color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
text-align: center;
position: relative;
overflow: hidden;
margin-left: 40vh;

}






.ad-space::before {
content: '';
position: absolute;
top: -50px;
left: -50px;
width: 200px;
height: 200px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: float 5s infinite ease-in-out;
}

.ad-space::after {
content: '';
position: absolute;
bottom: -50px;
right: -50px;
width: 150px;
height: 150px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: float 7s infinite ease-in-out;
}
@keyframes float {
0%, 100% {
transform: translate(0, 0);
}
50% {
transform: translate(20px, 20px);
}
}

.ad-title {
font-size: 24px;
font-weight: bold;
margin: 0 0 10px;
}

.ad-text {
font-size: 16px;
margin: 0 0 20px;
line-height: 1.5;
}

.admin-container {
    background: linear-gradient(90deg,  #1b2835,  #1b2835);  
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    padding: 30px;
    text-align: center;
    position: relative;
    margin-left: 50vh;
}



.admin-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-container label {
    font-size: 14px;
    color: white;
    text-align: left;
}
.admin-container h1 {
    color: white;
    background: linear-gradient(90deg,  #1b2835,  #1b2835);
    text-align: center;
}
.admin-container input:focus,
.admin-container textarea:focus,
.admin-container select:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
.admin-container textarea {
    resize: none;
    height: 80px;
}
.admin-container button {

    background: linear-gradient(90deg, #4ca1af, #2c3e50);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-left: 15vh;
    /* background: #4caf50;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s; */
}

.admin-container button:hover {
    background: #388e3c;
}

.admin-container .reset-btn {
    background: #f44336;
}

.admin-container .reset-btn:hover {
    background: #d32f2f;
} 

.admin-container  input[type="text"],
.admin-container  input[type="email"],
.admin-container  input[type="number"],  
.admin-container  textarea,
.admin-container  select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}


.ad-button {
padding: 10px 10px;
font-size: 16px;
font-weight: bold;
color: #ff7e5f;
background: white;
border: none;
border-radius: 30px;
cursor: pointer;
text-transform: uppercase;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

.ad-button:hover {
background: #ffe0cc;
transform: scale(1.05);
}

.ad-space form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    margin-bottom: 10px;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-details {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
.login-container ,.signup-container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding: 10px;
}

.login-form {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-form h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.login-form button {
    background: #4ca1af;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-form button:hover {
    background: #35758e;
}

.login-form a {
    display: block;
    margin-top: 10px;
    color: #4ca1af;
    text-decoration: none;
    font-size: 14px;
}

.login-form a:hover {
    text-decoration: underline;
}
.form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.form h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form button {
    background: #4ca1af;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form button:hover {
    background: #35758e;
}

.form a {
    display: block;
    margin-top: 10px;
    color: #4ca1af;
    text-decoration: none;
    font-size: 14px;
}

.form a:hover {
    text-decoration: underline;
}

.rtl {
    direction: rtl;
    text-align: right;
}

.ltr {
    direction: ltr;
    text-align: left;
}





footer {
    background: linear-gradient(90deg, black, #4ca1af);
    color: white;
    text-align: center;
    /* padding: 10px ; */
    margin-top: 150px;
    position: relative;
}


.mustafa{
    background: linear-gradient(90deg, black, #4ca1af);
    color: white;
    text-align: center;
    padding: 7px;
    position: relative;
   
}




footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer .footer-content div {
    margin: 10px;
    text-align: left;
    /* flex: 1 1 300px; */
}

footer h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

footer p, footer a {
    font-size: 14px;
    /* margin: 5px 0; */
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .social-icons {
    display: flex;
    gap: 10px;
}

footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: white;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    transition: all 0.3s;
}

footer .social-icons a:hover {
    background: white;
    color: white;
}

/* footer p.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
} */