﻿
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Amatic SC", sans-serif;
    --nav-font: "Inter", sans-serif;
}
/* Global Colors - Modern Fashion Brand Color Scheme
   A sophisticated, contemporary palette ideal for clothing brands with neutral base tones 
   and subtle accent colors that convey elegance and style */
:root {
    --background-color: #fafafa; 
    --default-color: #333333; 
    --heading-color: #212121; 
    --accent-color: #d2855c; 
    --surface-color: #ffffff; 
    --contrast-color: #ffffff; 
}
/* Nav Menu Colors - Refined navigation scheme for a premium fashion experience */
:root {
    --nav-color: #696969; 
    --nav-hover-color: #d2855c; 
    --nav-mobile-background-color: #f8f8f8; 
    --nav-dropdown-background-color: #ffffff; 
    --nav-dropdown-color: #696969; 
    --nav-dropdown-hover-color: #d2855c; 
}
/* Color Presets - Modern fashion-forward alternatives for section styling */
.light-background {
    --background-color: #f5f5f5;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #2a2a2a;
    --default-color: #f0f0f0;
    --heading-color: #ffffff;
    --surface-color: #3d3d3d;
    --contrast-color: #ffffff;
}
/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
            font-family: var(--default-font);
        }

        .header .logo span {
            color: var(--accent-color);
            font-size: 36px;
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 26px;
        margin: 0;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fafafa; /* Using your background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .logo-container img {
        max-width: 180px;
        margin-bottom: 20px;
    }

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(210, 133, 92, 0.2); /* Using your accent color */
    border-top: 3px solid #d2855c; /* Accent color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Once page is loaded, this class will be added to fade out the preloader */
#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

    .page-title h1 {
        font-size: 42px;
        font-weight: 400;
        margin-bottom: 10px;
        font-family: var(--default-font);
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 56px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 400;
        padding: 0;
        margin: 0;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        display: inline-block;
        text-transform: uppercase;
        font-family: var(--default-font);
    }

    .section-title p {
        color: var(--heading-color);
        margin: 10px 0 0 0;
        font-size: 48px;
        font-weight: 500;
        font-family: var(--heading-font);
    }

        .section-title p .description-title {
            color: var(--accent-color);
        }


.validation-error {
    color: #d32f2f; /* أحمر غامق */
    font-size: 0.875rem; /* حجم صغير */
    margin-top: 0.25rem;
    display: block;
}