
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941D;
    --light-gold: #E8D4A0;
    --white: #FFFFFF;
    --dark-text: #1A1A1A;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    --shadow-hover: 0 15px 50px rgba(212, 175, 55, 0.25);
    --fixed-header-height: 120px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {padding: 30px;
    
    font-family: 'Lora', serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    border: 5px solid #EAD9A8 ;
    border-radius: 8px;
    padding-top: var(--fixed-header-height);
}



.fixed-header {
    position: fixed;
    top: 0.9px;                
    left: 3px;
    right: 3px;

    height: var(--fixed-header-height);
    background: #EAD9A8;

    z-index: 1000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;

    
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);

    
    box-sizing: border-box;
}


.lang-button-container {
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.fixed-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex: 1;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-fixed {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.logo-fixed:hover {
    transform: scale(1.05);
}

.lang-toggle {
    background: var(--white);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

.lang-toggle:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}



.header2 {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.header2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 0;
}

.header-content2 {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.building-section {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
    padding: 2rem;
}

.building {
    width: 60vw;
    max-width: 900px;
    height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 12px 30px rgba(212, 175, 55, 0.35));
    margin-bottom: 2rem;
}

.building:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 16px 40px rgba(212, 175, 55, 0.5));
}




.about {
    padding: 80px 2rem;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}



.team {
    padding: 80px 2rem;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.team-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.team-card-link:hover .team-card {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-15px);
}

.team-card-link:hover .team-card::before {
    opacity: 1;
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card-link:hover .team-image img {
    transform: scale(1.12) rotate(1deg);
}

.team-card > div:not(.team-image),
.team-card > h3,
.team-card > p {
    position: relative;
    z-index: 1;
}

.team-card > h3,
.team-card > p {
    padding: 0 1.5rem;
}

.team-card > h3:first-of-type {
    padding-top: 1.5rem;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.team-role {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}



.contact {
    padding: 80px 2rem;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-10px);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.location-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--primary-gold);
}

.location-btn:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: var(--white);
}


.footer {
    background: linear-gradient(135deg, var(--dark-text), #2a2a2a);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--primary-gold);
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.9;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



@media (max-width: 1024px) {
    :root {
        --fixed-header-height: 110px;
    }

    .logo-fixed {
        height: 80px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        border: 3px solid var(--primary-gold);
        margin: 5px;
        padding-top: 100px;
    }

    :root {
        --fixed-header-height: 100px;
    }

    .fixed-header {
        height: 100px;
        padding: 0.5rem 1rem;
    }

    .lang-button-container {
        right: 1rem;
        top: 0.5rem;
    }

    .logo-fixed {
        height: 70px;
    }

    .lang-toggle {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .building-section {
        padding: 1rem;
    }

    .building {
        width: 80vw;
        max-width: 600px;
    }

    .tagline {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .team-image {
        height: 250px;
    }

    .about {
        padding: 60px 1rem;
    }

    .team {
        padding: 60px 1rem;
    }

    .contact {
        padding: 60px 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        border: 2px solid var(--primary-gold);
        margin: 3px;
        padding-top: 90px;
    }

    :root {
        --fixed-header-height: 90px;
    }

    .fixed-header {
        height: 90px;
        padding: 0.3rem 0.5rem;
    }

    .lang-button-container {
        right: 0.5rem;
        top: 0.3rem;
    }

    .logo-fixed {
        height: 60px;
    }

    .lang-toggle {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .building-section {
        padding: 0.5rem;
        min-height: 80vh;
    }

    .building {
        width: 90vw;
        max-width: 400px;
    }

    .tagline {
        font-size: 1.3rem;
        padding: 0.8rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-image {
        height: 200px;
    }

    .about-text {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
}
