/* Psychic Website Theme CSS */

/* Import mystical fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* Root variables for consistent theming */
:root {
    --primary-purple: #4a148c;
    --secondary-purple: #7b1fa2;
    --accent-gold: #ffd700;
    --dark-purple: #2e0854;
    --light-purple: #e1bee7;
    --mystical-blue: #1a237e;
    --cosmic-gradient: linear-gradient(135deg, #4a148c 0%, #1a237e 50%, #000051 100%);
    --gold-gradient: linear-gradient(45deg, #ffd700 0%, #ffb300 100%);
}

/* Body and general styling */
body {
    background: var(--cosmic-gradient);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Navigation styling */
.navbar {
    background: rgba(74, 20, 140, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-gold);
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gold-gradient);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero section */
.hero-section {
    /*
    background: linear-gradient(rgba(74, 20, 140, 0.8), rgba(26, 35, 126, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="stars"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.8"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="2" fill="url(%23stars)"/><circle cx="300" cy="200" r="1.5" fill="url(%23stars)"/><circle cx="500" cy="150" r="1" fill="url(%23stars)"/><circle cx="700" cy="300" r="2" fill="url(%23stars)"/><circle cx="900" cy="250" r="1.5" fill="url(%23stars)"/></svg>');
    */
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-purple);
    font-style: italic;
}

/* Cards and sections */
.mystical-card {
    background: rgba(74, 20, 140, 0.9);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mystical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.service-card {
    background: rgba(26, 35, 126, 0.9);
    border: 1px solid var(--secondary-purple);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

/* Buttons */
.btn-mystical {
    background: var(--gold-gradient);
    border: none;
    color: var(--dark-purple);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-mystical:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    color: var(--dark-purple);
}

.btn-outline-mystical {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-mystical:hover {
    background: var(--accent-gold);
    color: var(--dark-purple);
}

/* Forms */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--secondary-purple);
    color: #ffffff;
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: rgba(46, 8, 84, 0.95);
    border-top: 2px solid var(--accent-gold);
    color: var(--light-purple);
    margin-top: 3rem;
}

/* Animations */
@keyframes mysticalGlow {
    0%, 100% { text-shadow: 0 0 5px var(--accent-gold); }
    50% { text-shadow: 0 0 20px var(--accent-gold), 0 0 30px var(--accent-gold); }
}

.mystical-glow {
    animation: mysticalGlow 3s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mystical-card {
        padding: 1.5rem;
    }
}

/* Special effects */
.crystal-ball {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,215,0,0.3), rgba(74,20,140,0.8));
    margin: 1rem auto 3rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: mysticalGlow 4s ease-in-out infinite;
}

.tarot-card {
    width: 80px;
    height: 120px;
    background: var(--cosmic-gradient);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.astrolgy, .mediumship, .dream, .personal {
    width: 120px;
    height: 120px;
    border: none;
    border-radius: 8px;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    padding-top:  20px;
}


.tarot-card::before {
    content: '✦';
    font-size: 2rem;

}

.astrolgy::before {
    content: '🪐';
    font-size: 4rem;

}

.mediumship::before {
    content: '🕊️';
    font-size: 4rem;

}

.personal::before {
    content: '🌟';
    font-size: 4rem;

}

.dream::before {
    content: '✨';
    font-size: 4rem;
}


.tarot-card::before, .astrolgy::before, .dream::before, .dream::before, .personal::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-gold);
}

.py-5 {
    padding-bottom: 4rem !important;
}

.py5LessBottomPadding {
    padding-bottom: 0 !important;
}

.iframe-container {
    width: 100%;
    height: 55rem;
    background-color: rgba(255, 255, 255, 0); /* Background color of the container */
    position: relative;
    overflow: hidden; /* Crucial for hiding the large shadow */
}

.iframe-container iframe {
    border-radius: 2%; /* To make it a circular hole */
    background-color: transparent; /* Makes the center of the hole transparent */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the hole */
    /*filter: invert(100%) hue-rotate(180deg);*/
    width: 100%;
    height: 100%;
    border: 0;
}

.navbar-toggler {
    filter: invert(100%) hue-rotate(180deg);
}