/*
 Theme Name:   Alhambra Child Theme
 Theme URI:    https://alhambra.axiomthemes.com
 Description:  Alhambra Child Theme
 Author:       AxiomThemes
 Author URI:   https://axiomthemes.com
 Template:     alhambra
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  alhambra
*/

/* ===== SINGLE PARA CARD - INLINE STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,700&display=swap');


/* =Child-Theme customization starts here
------------------------------------------------------------ */

.sc_layouts_row_type_compact .sc_layouts_logo img {
        max-height: 98px !important;
    }

.scheme_default .sc_button_default.color_style_link2,
.scheme_default .sc_button.color_style_link2:not(.sc_button_simple):not(.sc_button_bordered):not(.sc_button_bg_image) {
	background-color: #38383c;
	display: none !important;
}

button, input, optgroup, select, textarea, textarea.wp-editor-area {
	background-color: greenyellow;
	width: 100% !important;
}

/* ===== GOLD LUXURY CIRCLE ===== */

/* ===== GRID WRAPPER ===== */
.para-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    justify-items: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
}

/* ===== RESPONSIVE CIRCLE ===== */
.gold-circle-perfect {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 180px;
    min-width: 180px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0a993c, #014218);
    border: 3px solid #d4af37;
    text-decoration: none !important;
    cursor: pointer;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    margin: 0 auto;
}

/* Gold Shimmer Border */
.gold-circle-perfect::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #d4af37, #f5d97a, #ffd700, #f5d97a, #d4af37);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
}

.gold-circle-perfect:hover::before {
    opacity: 1;
}

/* Inner Glow */
.gold-circle-perfect::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent 60%);
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
}

.gold-circle-perfect:hover::after {
    opacity: 1;
}

/* Hover Effects */
.gold-circle-perfect:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: #ffd700;
}

/* ===== ARABIC NAME - RESPONSIVE ===== */
.gold-circle-name {
    font-family: 'Noto Naskh Arabic', 'Amiri', serif;
    font-size: clamp(16px, 2.2vw, 34px) !important;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    direction: rtl;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    line-height: 1.3;
    display: block;
    padding: 8px;
    word-break: break-word;
}

.gold-circle-perfect:hover .gold-circle-name {
    color: #ffd700;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.05);
    transform: scale(1.04);
}

/* ========== RESPONSIVE GRID ========== */

/* Desktop: 6 columns */
@media (max-width: 1200px) {
    .para-grid-wrapper {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        padding: 25px 15px;
    }
    .gold-circle-perfect {
        max-width: 180px;
        min-width: 180px;
    }
    .gold-circle-name {
        font-size: clamp(14px, 2vw, 30px) !important;
    }
}

/* Tablet: 4 columns */
@media (max-width: 992px) {
    .para-grid-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        padding: 20px 15px;
    }
    .gold-circle-perfect {
        max-width: 145px;
        min-width: 145px;
        border-width: 2.5px;
    }
    .gold-circle-name {
        font-size: clamp(13px, 2.2vw, 28px) !important;
    }
}

/* Mobile Large: 3 columns */
@media (max-width: 768px) {
    .para-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 15px 10px;
    }
    .gold-circle-perfect {
        max-width: 130px;
        min-width: 50px;
        border-width: 2px;
    }
    .gold-circle-name {
        font-size: clamp(12px, 2.5vw, 24px) !important;
    }
}

/* Mobile Small: 2 columns */
@media (max-width: 480px) {
    .para-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px 8px;
    }
    .gold-circle-perfect {
        max-width: 110px;
        min-width: 45px;
        border-width: 2px;
    }
    .gold-circle-name {
        font-size: clamp(11px, 3vw, 20px) !important;
    }
}

/* Very Small: 2 columns (smaller) */
@media (max-width: 360px) {
    .para-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px 6px;
    }
    .gold-circle-perfect {
        max-width: 90px;
        min-width: 40px;
        border-width: 1.5px;
    }
    .gold-circle-name {
        font-size: clamp(10px, 2.8vw, 16px) !important;
    }
}

