/* Custom Font Imports - Using Google Fonts for Inter and Tajawal */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* Base Styles */
html, body {
    width: 100%;
    max-width: 100%;
    font-family: 'Tajawal', sans-serif;
    overflow-x: hidden;
    background-color: #F9F6F3;
    color: #1A1A1A;
}

/* For English Content */
[lang="en"] body {
    font-family: 'Inter', sans-serif;
}

/* Geometric Clip Paths */
.clip-auva-card {
    /* Top-left cut, Bottom-right cut */
    clip-path: polygon(10% 0, 100% 0,
            100% 90%, 90% 100%,
            0 100%, 0 10%);
    transition: all 0.3s ease;
}

.auva-shape {
    clip-path: polygon(0 0, 94% 0, 100% 18%, 100% 100%, 6% 100%, 0 82%);
}

.auva-shape-sm {
    clip-path: polygon(0 0, 92% 0, 100% 25%, 100% 100%, 8% 100%, 0 75%);
}

.clip-auva-button {
    /* Slight angled cuts */
    clip-path: polygon(10px 0, 100% 0,
            100% calc(100% - 10px), calc(100% - 10px) 100%,
            0 100%, 0 10px);
    transition: all 0.3s ease;
}

/* Hover Effects */
.clip-auva-card:hover,
.auva-shape:hover,
.auva-shape-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(156, 106, 78, 0.4);
    /* Copper Glow */
}

/* Gradient Text */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #FFFFFF 0%, #D4B08C 100%);
}

.text-gradient-gold {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #D4B08C 0%, #9C6A4E 100%);
}

/* Custom Scrollbar - Dark & Angular */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #25323A;
}

::-webkit-scrollbar-thumb {
    background: #C7A77A;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #A88A60;
}

/* Hero Pattern Overlay */
.hero-pattern {
    background-image: radial-gradient(rgba(156, 106, 78, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Hero Slideshow Animation */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* Start hidden */
    animation: zoomFade 18s infinite;
}

/* Stagger animations for 3 images */
.slide-img:nth-child(1) {
    animation-delay: 0s;
}

.slide-img:nth-child(2) {
    animation-delay: 6s;
}

.slide-img:nth-child(3) {
    animation-delay: 12s;
}

@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
        /* Fully visible */
    }

    33% {
        opacity: 1;
        transform: scale(1.05);
        /* Subtle zoom */
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}