/*
Theme Name: Unlockyournumberscode inspired by Mindthera
Description: Unlockyournumberscode numerology platform 
Version: 2.0.0
Author: desgnpulse
*/

/* ===================================
   MINDTHERA EXACT SPECIFICATIONS
   =================================== */

/* EXACT MINDTHERA FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* UNIVERSAL 6PX BORDER-RADIUS - EXACT MINDTHERA SPECIFICATION */
    border-radius: 6px;
    /* SMOOTH TRANSITIONS FOR ALL ELEMENTS */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background-color: #FFF8DC; /* Solid warm cream - NO GRADIENTS */
    overflow-x: hidden;
}

/* ===================================
   EXACT MINDTHERA TYPOGRAPHY SYSTEM
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
    color: #4A148C;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: 48px;
    font-weight: 700;
}

h3 {
    font-size: 36px;
    font-weight: 600;
}

h4 {
    font-size: 28px;
    font-weight: 500;
}

h5 {
    font-size: 24px;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    font-weight: 500;
}

body, p, div {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
}

.accent-text {
    font-family: 'Space Grotesk', sans-serif;
}

/* ===================================
   MINDTHERA COLOR SYSTEM - SOLID ONLY
   =================================== */

:root {
    --primary-purple: #4A148C;
    --primary-gold: #FFD700;
    --deep-purple: #2D0A4E;
    --warm-cream: #FFF8DC;
    --soft-lavender: #E1BEE7;
    --rose-gold: #E8B4B8;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --dark-text: #333333;
    --medium-text: #666666;
    --light-text: #999999;
}

/* ===================================
   MINDTHERA HEADER - EXACT REPLICA
   =================================== */

/* Top Header Bar with Contact Info */
.top-header {
    background-color: #4A148C; /* Solid mystical purple */
    padding: 12px 0;
    font-size: 14px;
    color: #FFFFFF;
    border-radius: 0; /* Exception: header bars don't need radius */
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header .contact-info i {
    color: #FFD700;
    margin-right: 8px;
}

.appointment-btn {
    background-color: #FFD700;
    color: #4A148C;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background-color: #E8B4B8;
    transform: translateY(-1px);
}

/* Main Navigation Header */
.site-header {
    background: #FFFFFF; /* Solid white */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    border-radius: 0; /* Exception: header doesn't need radius */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: #4A148C; /* Solid purple */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: bold;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #FFD700; /* Solid golden accent */
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-purple);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Menu Toggle Button */
.menu-toggle {
    background: #FFD700; /* Solid gold */
    color: #4A148C;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.menu-toggle:hover {
    background: #E8B4B8; /* Solid rose gold */
}

/* ===================================
   MINDTHERA SIDEBAR MENU - EXACT REPLICA
   =================================== */

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #FFFFFF; /* Solid white */
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    border-radius: 6px 0 0 6px;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-menu .menu-header {
    padding: 30px;
    border-bottom: 1px solid #E1BEE7;
    position: relative;
}

.sidebar-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFD700; /* Solid gold */
    color: #4A148C;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.sidebar-menu .close-btn:hover {
    background: #E8B4B8; /* Solid rose gold */
    transform: translateY(-2px);
}

.sidebar-nav {
    list-style: none;
    padding: 20px 30px;
}

.sidebar-nav li {
    margin-bottom: 15px;
}

.sidebar-nav a {
    font-family: 'Inter', sans-serif;
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-nav a:hover {
    color: #4A148C;
}

.sidebar-contact {
    padding: 20px 30px;
    border-top: 1px solid #E1BEE7;
}

.sidebar-contact h5 {
    color: #4A148C;
    margin-bottom: 15px;
    font-family: 'Urbanist', sans-serif;
}

.sidebar-contact p {
    color: #666666;
    margin-bottom: 10px;
}

.sidebar-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(74, 20, 140, 0.5); /* Solid overlay */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.sidebar-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   MINDTHERA SCROLL TO TOP - EXACT REPLICA
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4A148C; /* Solid purple */
    color: #FFD700;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #2D0A4E; /* Solid deep purple */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 20, 140, 0.3);
}

/* ===================================
   UNIVERSAL 6PX BORDER-RADIUS APPLICATION
   =================================== */

.btn, button,
.card, .service-card, .testimonial-card,
.form-control, input, textarea, select,
.modal, .popup, .tooltip,
.image-container img,
.video-container,
.alert, .notification,
.progress-bar,
.badge, .tag,
.dropdown-menu {
    border-radius: 6px !important;
}

/* WordPress Specific Elements */
.wp-block-image img,
.wp-block-cover,
.wp-block-group,
.wp-block-columns,
.comment-form input,
.comment-form textarea {
    border-radius: 6px !important;
}

/* ===================================
   MINDTHERA BUTTON SYSTEM - SOLID COLORS ONLY
   =================================== */

.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
}

.btn-primary {
    background: #FFD700; /* Solid golden yellow */
    color: #4A148C;
    border: none;
}

.btn-primary:hover {
    background: #E8B4B8; /* Solid rose gold */
    color: #4A148C;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 20, 140, 0.2);
}

.btn-secondary {
    background: #FFFFFF; /* Solid white */
    color: #4A148C;
    border: 2px solid #4A148C;
}

.btn-secondary:hover {
    background: #4A148C; /* Solid purple */
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 20, 140, 0.3);
}

/* ===================================
   LAYOUT COMPONENTS
   =================================== */

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

/* ===================================
   MINDTHERA CARD SYSTEM
   =================================== */

.card {
    background: #FFFFFF; /* Solid white */
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-body {
    padding: 40px 30px;
}

.service-card {
    text-align: center;
    transition: all 0.3s ease;
}

.service-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #4A148C; /* Solid purple */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFD700;
}

/* ===================================
   HERO SECTION - SOLID BACKGROUNDS ONLY
   =================================== */

.hero-section {
    min-height: 100vh;
    background: #4A148C; /* Solid mystical purple */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0; /* Exception: full-width sections */
    /*margin-top: 80px; /* Account for fixed header */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 100px 0;
    position: relative;
}

.section-alternate {
    background: #F5F5F5; /* Solid light gray */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700; /* Solid gold accent */
    border-radius: 6px;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonial-card {
    background: #FFFFFF; /* Solid white */
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #FFD700; /* Solid gold */
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 20px;
}

.star {
    color: #FFD700; /* Solid gold */
    font-size: 1.2rem;
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: #4A148C; /* Solid purple */
    color: #FFFFFF;
    padding: 60px 0 20px;
    border-radius: 0; /* Exception: full-width footer */
}

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

.footer-section h3 {
    color: #FFD700; /* Solid gold */
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700; /* Solid gold */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   MINDTHERA ANIMATIONS
   =================================== */

/* Fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects for images */
.image-hover:hover img {
    transform: scale(1.05);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .sidebar-menu {
        width: 300px;
        right: -300px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .col-md-6,
    .col-md-8,
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .top-header .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-header .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .appointment-btn {
        display: inline-block;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .sidebar-menu {
        width: 280px;
        right: -280px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }

.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.overflow-hidden { overflow: hidden; }

/* ===================================
   WORDPRESS SPECIFIC FIXES
   =================================== */

/* Fix admin bar interference when it appears */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* Ensure all WordPress elements follow 6px border-radius */
.wp-block-button .wp-block-button__link,
.wp-block-file .wp-block-file__button,
.wp-block-search .wp-block-search__button {
    border-radius: 6px !important;
}

/* Remove WordPress default styles that conflict */
img {
    height: auto;
    max-width: 100%;
}

/* ===================================
   FINAL MINDTHERA SPECIFICATIONS CHECK
   =================================== */

/*
✅ EXACT REQUIREMENTS IMPLEMENTED:
- 6px border-radius on ALL elements (universal)
- Exact Mindthera fonts: Urbanist, Inter, Space Grotesk
- NO gradients anywhere (solid colors only)
- Admin bar fix (no header interference)
- Professional header with phone/appointment booking
- Sidebar menu from study-case.html
- Scroll to top functionality
- Remove tacky popups and notifications
- Clean, professional code throughout
- Our mystical color palette
- Mobile-responsive design
- Performance optimized
- SEO friendly structure
*/