/*
Theme Name: Bint Aldeerah
Theme URI: http://example.com
Author: Mohammad
Author URI: http://example.com
Description: Luxury fashion WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bint-aldeerah
*/

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

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --black: #0A0A0A;
    --off-white: #FAF9F6;
    --gray: #6B6B6B;
    --light-gray: #E5E5E5;
}


body {
    font-family: 'Playfair Display', serif;
    background-color: var(--off-white);
    color: var(--black);
    line-height: 1.6;
    padding-top: 0; 
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html[lang^="ar"] body {
    font-family: 'Tahoma', sans-serif;
}



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

header {
    background-color: var(--black);
    color: var(--gold);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-text {
    font-size: 20px; 
    font-weight: 700;
    letter-spacing: 1.5px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    font-weight: 600;
}

nav a:hover {
    color: var(--off-white);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--off-white);
}

.lang-toggle {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.lang-toggle:hover {
    background-color: var(--dark-gold);
}

/* Hero Section */
.hero {
    margin-top: 0;/* margin-top: 80px; */
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--gold);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l2 2-2 2-2-2 2-2zm0 56l2 2-2 2-2-2 2-2zM0 30l2 2-2 2-2-2 2-2zm56 0l2 2-2 2-2-2 2-2z' fill='%23D4AF37' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--off-white);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: white;
    /* margin-top: 100px;  */
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-highlight {
    background-color: var(--black);
    color: var(--gold);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid var(--gold);
}

.about-highlight p {
    color: var(--gold);
    font-size: 20px;
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--gold);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    font-size: 20px;
}

.social-links a:hover {
    transform: scale(1.1);
    background-color: var(--off-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0.8;
}

/* القوائم الرئيسية أفقية */
.main-menu {
    list-style: none; /* إزالة النقاط */
    display: flex;    /* عرض العناصر أفقياً */
    gap: 30px;        /* المسافة بين العناصر */
    align-items: center;
}

.main-menu li {
    position: relative; /* لعمل dropdown لاحقاً */
}

.main-menu a {
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--off-white);
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    nav {
        width: 100%;
        justify-content: center;
    }

    .header-content {
        justify-content: center;
        text-align: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
