/* 1. SETUP & COLORS */
:root {
    --primary-gold: #f3c93d;
    --deep-purple: #651192; /* Back to your signature purple */
    --white: #f7efef;
    --text-light: #a78c47;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-purple);
    /* Adding a subtle gradient so the purple feels deep and professional */
    background: linear-gradient(135deg, #610f91 0%, #2e064d 100%);
    background-attachment: fixed;
    color: var(--text-light);
}

/* 2. NAVIGATION (Dark themed for purple background) */
.navbar {
    width: 100%;
    background: rgba(160, 6, 249, 0.816);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* 3. CONTAINERS & CARDS */
.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* These cards now pop beautifully against the dark purple */
.centered-about, .testimonial-card, .blog-card, .podcast-card, #booking {
    background: rgba(8, 110, 200, 0.05); /* Subtle transparent white */
    color: var(--white) !important;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(231, 210, 20, 0.3);
    backdrop-filter: blur(5px);
}

/* 4. LOGO & IMAGES */
/* 1. The Container (The Circle) */
.circular-logo-mask {
    width: 190px;         /* Increased size to make the logo clearer */
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    margin: 30px auto;
    background: white;
    display: flex;        /* Added to help center the image */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* 2. The Image (Fitting it inside) */
.main-logo-img {
    width: 130%;          /* Changed from 140% to 90% so it fits inside the circle */
    height: auto;
    margin-left: 0;      /* Removed the negative margins that were pushing it out of view */
    margin-top: 0;
    display: block;
}

.square-crop-container {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    margin: 0 auto 20px;
}

.about-image-square {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 5. TYPOGRAPHY */
h1, h2, h3 { color: var(--primary-gold); }

.quote {
    font-style: italic;
    opacity: 0.9;
}

/* 6. BUTTONS (Solid white so they stand out) */
.btn {
    display: block;
    background: var(--white);
    color: var(--deep-purple);
    text-decoration: none;
    padding: 15px;
    margin: 10px 0;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
}

.btn:hover {
    background: var(--primary-gold);
    color: rgb(255, 255, 255);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background-color: #087b32 !important;
    color: white !important;
}

/* 7. FOOTER */
footer {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    opacity: 0.7;
    font-size: 0.8rem;
}
.stars {
    color: var(--primary-gold) !important; /* Forces the gold color */
    font-size: 1.2rem;
    letter-spacing: 2px; /* Pulls them closer together */
    display: block;
    margin-top: 10px;
    /* This part prevents the "wide" emoji look in some browsers */
    font-family: Arial, sans-serif; 
    font-weight: bold;
}
/* Change only the Podcast Episode text to white */
#podcast a, 
#podcast a strong, 
#podcast a span {
    color: #de22eb !important;
}

/* Ensure it stays white even after you click it */
#podcast a:visited {
    color: #630683 !important;
}

/* Change only the "Read Full Teaching" link to white */
#blog .blog-card a.read-more,
#blog .blog-card a {
    color: #FFFFFF !important;
    opacity: 1;
    text-decoration: underline; /* Keeps it looking like a clickable link */
}

/* Ensure it stays white even after being clicked */
#blog .blog-card a:visited {
    color: #FFFFFF !important;
}

/* Pricing Specific Styles */
#pricing .content-card {
    text-align: center;
    border: 2px solid var(--primary-gold);
}

.price-feature {
    margin: 30px 0;
}

.gold-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.pricing-btn {
    background: var(--primary-gold) !important;
    color: white !important;
    border: none !important;
    font-size: 1.1rem;
    padding: 18px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-btn:hover {
    background: white !important;
    color: var(--deep-purple) !important;
    transform: scale(1.05);
}

/* Ensure smooth scrolling works for the new link */
html {
    scroll-behavior: smooth;
}

/* Footer & Legal Links */
footer {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 60px;
}

.legal-links {
    margin: 15px 0;
}

.terms-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: 0.3s;
}

.terms-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Center the Navigation Links for Mobile */
.nav-links {
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    align-items: center;     /* Centers the items vertically */
    gap: 33px;               /* Adjust this to breathe more space between words */
    padding: 0;              /* Removes any hidden left-side padding */
    margin: 0 auto;          /* Centers the entire list container */
    list-style: none;
    width: 100%;             /* Ensures it takes up the full width to center properly */
}

/* Ensure the individual list items don't have extra margins */
.nav-links li {
    margin: 0;
    padding: 0;
}