/* ===================================
   Cindy MacMillan - Life Coach Website
   Custom Styles
   =================================== */

/* ===================================
   1. CSS Variables & Root Styles
   =================================== */
:root {
    --primary-color: #E91E7F;
    --secondary-color: #2D3748;
    --accent-color: #F59E0B;
    --text-dark: #1A202C;
    --text-light: #718096;
    --white: #FFFFFF;
    --light-bg: #F7FAFC;
    --pink-light: #FFF5F7;
    --gradient-primary: linear-gradient(135deg, #E91E7F 0%, #FF6B9D 100%);
    --gradient-secondary: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===================================
   2. Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin-top: 1rem;
    border-radius: 2px;
}

.rounded-custom {
    border-radius: 20px;
}

/* ===================================
   3. Navigation
   =================================== */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .btn-contact {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.navbar-nav .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.navbar-nav .btn-contact::after {
    display: none;
}

/* ===================================
   4. Hero Section
   =================================== */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 127, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badges .badge {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(233, 30, 127, 0.1);
    width: fit-content;
    animation: fadeInUp 0.8s ease;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    box-shadow: var(--shadow-xl);
}

/* ===================================
   5. Podcast Section
   =================================== */
.podcast-section {
    padding: 100px 0;
    background: var(--white);
}

.podcast-cover {
    position: relative;
    animation: fadeInLeft 1s ease;
}

.podcast-content {
    animation: fadeInRight 1s ease;
}

.podcast-description h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.podcast-description p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-text {
    background: var(--pink-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 2rem;
}

.podcast-platforms {
    margin-top: 3rem;
}

.podcast-platforms h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.platform-link i {
    font-size: 1.3rem;
}

/* ===================================
   6. Newsletter Section
   =================================== */
.newsletter-section {
    padding: 100px 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.newsletter-section .section-title {
    color: var(--white);
}

.newsletter-section .section-title::after {
    background: var(--white);
}

.newsletter-intro {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

.newsletter-form .form-control {
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    outline: none;
}

.newsletter-form .btn-primary {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.newsletter-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.privacy-text {
    color: var(--white);
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.thank-you-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    animation: fadeIn 0.5s ease;
}

.thank-you-message.show {
    display: block;
}

.thank-you-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thank-you-message p {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* ===================================
   7. About Section
   =================================== */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ===================================
   8. Contact Section
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===================================
   9. Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-legal,
.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.footer-link:hover {
    color: var(--white);
}

/* ===================================
   10. Scroll to Top Button
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

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

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   11. Buttons
   =================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   12. Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   13. Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .podcast-section,
    .newsletter-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .newsletter-box {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .platform-links {
        flex-direction: column;
    }
    
    .platform-link {
        width: 100%;
        justify-content: center;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .podcast-description h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-box {
        padding: 1.5rem;
    }
}

/* ===================================
   14. Smooth Scrolling
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   15. Accessibility
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/* ===================================
   Privacy Policy Page Styles
   =================================== */

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--light-bg) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.privacy-content {
    padding: 80px 0;
    background: var(--white);
}

.privacy-text-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.privacy-text-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--pink-light);
}

.privacy-text-content h2:first-of-type {
    margin-top: 2rem;
}

.privacy-text-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.privacy-text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.privacy-text-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-text-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.privacy-text-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.privacy-text-content a:hover {
    color: var(--secondary-color);
}

.contact-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.effective-date {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

/* Responsive adjustments for Privacy Policy */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.25rem;
    }
    
    .privacy-text-content {
        padding: 2rem;
    }
    
    .privacy-text-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 1.85rem;
    }
    
    .privacy-text-content {
        padding: 1.5rem;
    }
    
    .privacy-text-content h2 {
        font-size: 1.35rem;
    }
    
    .privacy-text-content h3 {
        font-size: 1.2rem;
    }
    
    .privacy-text-content p,
    .privacy-text-content ul li {
        font-size: 1rem;
    }
}
