/*
Theme Name: Isabella Creative Theme
Description: A beautiful, creative WordPress theme perfect for young artists, writers, and creative professionals. Features portfolio, blog, ecommerce, and professional CV sections with custom Elementor widgets.
Author: Isabella Pratt
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isabella-theme
Tags: creative, portfolio, blog, ecommerce, elementor, pink, artistic, professional, cv, young-artist
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Theme Styles */
:root {
    --primary-color: #ff69b4;
    --secondary-color: #ff1493;
    --accent-color: #da70d6;
    --success-color: #28a745;
    --text-color: #333;
    --text-light: #666;
    --background-light: #ffeef8;
    --background-gradient: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 50%, #ffe8f5 100%);
    --primary-gradient: linear-gradient(45deg, #ff69b4, #ff1493);
    --border-radius: 20px;
    --box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 50%, #ffe8f5 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, fantasy;
    color: var(--text-color);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

a:hover {
    color: var(--secondary-color);
}

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

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-extras {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle,
.cart-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    font-size: 1.1rem;
}

.search-toggle:hover,
.cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
    color: white;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff1493;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
}

.search-form-wrapper {
    display: none;
    background: white;
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
}

.search-form-wrapper.active {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(255, 105, 180, 0.2);
        border-radius: 0 0 20px 20px;
        gap: 1rem;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem;
        border-radius: 15px;
        background: rgba(255, 105, 180, 0.1);
        text-align: center;
        font-weight: 600;
    }

    .nav-menu a:hover {
        background: linear-gradient(45deg, #ff69b4, #ff1493);
        color: white;
        transform: translateY(-2px);
    }

    .site-title {
        font-size: 1.5rem;
    }

    .nav-extras {
        gap: 0.5rem;
    }

    .search-toggle,
    .cart-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    color: white;
}

.btn-secondary {
    background: #f0f0f0;
    color: var(--text-light);
}

.btn-secondary:hover {
    background: #e0e0e0;
    color: var(--text-color);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* WordPress Specific */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-image {
    margin-bottom: 1rem;
}

.wp-block-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
}

/* Elementor Compatibility */
.elementor-widget-container {
    overflow: visible;
}

.elementor-section {
    overflow: visible;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

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

/* Theme-specific utility classes */
.pink-gradient {
    background: var(--primary-gradient);
}

.pink-text {
    color: var(--primary-color);
}

.creative-shadow {
    box-shadow: var(--box-shadow);
}

.creative-border {
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
}

/* Main Content */
.site-main {
    padding-top: 100px; /* Account for fixed header */
    min-height: calc(100vh - 100px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1));
    border-radius: 30px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    color: #666;
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
    color: white;
}

.btn-primary {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff69b4;
    color: #ff69b4;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border-color: transparent;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #da70d6 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.site-info {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-credits {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

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

.footer-credits a:hover {
    color: white;
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
    color: #ff69b4;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.floating-element:nth-child(4) { top: 30%; left: 70%; animation-delay: 3s; }
.floating-element:nth-child(5) { top: 70%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* About Section Styling */
.about {
    background: rgba(255, 255, 255, 0.5);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #ff69b4;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Fredoka One', cursive;
    color: #ff69b4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

/* Interests Section Styling */
.interests {
    padding: 80px 0;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.interest-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ff69b4;
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header i {
    font-size: 2rem;
    color: #ff69b4;
}

.card-header h3 {
    font-family: 'Fredoka One', cursive;
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.interest-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Family Section Styling */
.family {
    background: rgba(255, 255, 255, 0.5);
    padding: 80px 0;
}

.family-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.family-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.family-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.family-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.family-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    overflow: hidden;
}

.family-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.family-card h3 {
    font-family: 'Fredoka One', cursive;
    color: #ff69b4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.family-card p {
    color: #666;
    line-height: 1.6;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.go-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Basic Content Styling */
.single-post,
.single-page {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.entry-title {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, fantasy;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.entry-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.entry-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.post-thumbnail img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Blog Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.blog-post-card .post-content {
    padding: 1.5rem;
}

.blog-post-card .entry-title {
    font-size: 1.3rem;
    text-align: left;
    margin-bottom: 1rem;
}

.blog-post-card .entry-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-post-card .entry-title a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .entry-title {
        font-size: 2rem;
    }

    .entry-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .single-post,
    .single-page {
        padding: 1rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive styling for new sections */
    .about-content,
    .interests-grid,
    .family-members {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card,
    .interest-card,
    .family-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .family-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Icon Fallbacks and Font Awesome Fixes */
.fas, .fab, .far, .fa {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Enhanced Icon Fallbacks */
.fa-fallback .fas:before,
.fa-fallback .fab:before,
.fa-fallback .far:before,
.fa-fallback .fa:before {
    font-family: inherit;
    font-weight: normal;
}

/* Comprehensive Icon Fallbacks */
.fa-search:before { content: '🔍'; }
.fa-shopping-cart:before { content: '🛒'; }
.fa-shopping-bag:before { content: '🛍️'; }
.fa-home:before { content: '🏠'; }
.fa-user:before { content: '👤'; }
.fa-user-circle:before { content: '👤'; }
.fa-envelope:before { content: '✉️'; }
.fa-phone:before { content: '📞'; }
.fa-heart:before { content: '💖'; }
.fa-star:before { content: '⭐'; }
.fa-calendar:before { content: '📅'; }
.fa-folder:before { content: '📁'; }
.fa-tags:before { content: '🏷️'; }
.fa-tag:before { content: '🏷️'; }
.fa-eye:before { content: '👁️'; }
.fa-image:before { content: '🖼️'; }
.fa-camera:before { content: '📷'; }
.fa-video:before { content: '🎥'; }
.fa-music:before { content: '🎵'; }
.fa-book:before { content: '📚'; }
.fa-pencil:before, .fa-pencil-alt:before { content: '✏️'; }
.fa-edit:before { content: '✏️'; }
.fa-trash:before { content: '🗑️'; }
.fa-download:before { content: '⬇️'; }
.fa-upload:before { content: '⬆️'; }
.fa-share:before { content: '📤'; }
.fa-link:before { content: '🔗'; }
.fa-external-link:before { content: '↗️'; }
.fa-arrow-right:before { content: '→'; }
.fa-arrow-left:before { content: '←'; }
.fa-arrow-up:before { content: '↑'; }
.fa-arrow-down:before { content: '↓'; }
.fa-chevron-right:before { content: '›'; }
.fa-chevron-left:before { content: '‹'; }
.fa-chevron-up:before { content: '⌃'; }
.fa-chevron-down:before { content: '⌄'; }
.fa-check:before { content: '✓'; }
.fa-check-circle:before { content: '✅'; }
.fa-times:before { content: '✕'; }
.fa-times-circle:before { content: '❌'; }
.fa-plus:before { content: '+'; }
.fa-minus:before { content: '−'; }
.fa-bars:before { content: '☰'; }
.fa-ellipsis-v:before { content: '⋮'; }
.fa-ellipsis-h:before { content: '⋯'; }
.fa-cog:before, .fa-gear:before { content: '⚙️'; }
.fa-bell:before { content: '🔔'; }
.fa-flag:before { content: '🚩'; }
.fa-info:before { content: 'ℹ️'; }
.fa-info-circle:before { content: 'ℹ️'; }
.fa-question:before { content: '❓'; }
.fa-question-circle:before { content: '❓'; }
.fa-exclamation:before { content: '❗'; }
.fa-exclamation-circle:before { content: '⚠️'; }
.fa-warning:before { content: '⚠️'; }
.fa-lock:before { content: '🔒'; }
.fa-unlock:before { content: '🔓'; }
.fa-key:before { content: '🔑'; }
.fa-quote-left:before { content: '"'; }
.fa-quote-right:before { content: '"'; }
.fa-comment:before { content: '💬'; }
.fa-comments:before { content: '💬'; }
.fa-thumbs-up:before { content: '👍'; }
.fa-thumbs-down:before { content: '👎'; }
.fa-spinner:before { content: '⟳'; }
.fa-circle-notch:before { content: '⟳'; }
.fa-refresh:before { content: '🔄'; }
.fa-sync:before { content: '🔄'; }
.fa-paper-plane:before { content: '✈️'; }
.fa-send:before { content: '📤'; }
.fa-print:before { content: '🖨️'; }
.fa-save:before { content: '💾'; }
.fa-copy:before { content: '📋'; }
.fa-cut:before { content: '✂️'; }
.fa-paste:before { content: '📋'; }
.fa-undo:before { content: '↶'; }
.fa-redo:before { content: '↷'; }
.fa-play:before { content: '▶️'; }
.fa-pause:before { content: '⏸️'; }
.fa-stop:before { content: '⏹️'; }
.fa-forward:before { content: '⏩'; }
.fa-backward:before { content: '⏪'; }
.fa-volume-up:before { content: '🔊'; }
.fa-volume-down:before { content: '🔉'; }
.fa-volume-off:before { content: '🔇'; }
.fa-microphone:before { content: '🎤'; }
.fa-headphones:before { content: '🎧'; }

/* Social Media Icons */
.fa-facebook:before, .fa-facebook-f:before { content: 'f'; background: #1877f2; color: white; padding: 0.2em; border-radius: 3px; }
.fa-twitter:before { content: 't'; background: #1da1f2; color: white; padding: 0.2em; border-radius: 3px; }
.fa-instagram:before { content: 'i'; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; padding: 0.2em; border-radius: 3px; }
.fa-pinterest:before { content: 'p'; background: #bd081c; color: white; padding: 0.2em; border-radius: 3px; }
.fa-youtube:before { content: 'y'; background: #ff0000; color: white; padding: 0.2em; border-radius: 3px; }
.fa-linkedin:before { content: 'in'; background: #0077b5; color: white; padding: 0.2em; border-radius: 3px; }
.fa-github:before { content: 'gh'; background: #333; color: white; padding: 0.2em; border-radius: 3px; }
.fa-tiktok:before { content: 'tk'; background: #000; color: white; padding: 0.2em; border-radius: 3px; }

/* Make fallback icons look better */
.fa-fallback .fas,
.fa-fallback .fab,
.fa-fallback .far {
    font-size: 0.9em;
    display: inline-block;
    text-align: center;
    min-width: 1.2em;
}

/* Elementor Widget Styles */

/* Hero Section Widget */
.isabella-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--background-gradient);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.stat-icon {
    font-size: 2rem;
}

.stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-button {
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-avatar {
    position: relative;
    width: 300px;
    height: 300px;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    animation: pulse 3s infinite;
}

.avatar-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.decoration {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.decoration-1 { top: 10%; right: 10%; animation-delay: 0s; }
.decoration-2 { bottom: 10%; left: 10%; animation-delay: 1s; }
.decoration-3 { top: 50%; left: -10%; animation-delay: 2s; }
.decoration-4 { top: 20%; left: 50%; animation-delay: 3s; }

/* About Section Widget */
.isabella-about-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    box-shadow: var(--box-shadow);
}

.personality-traits {
    margin-bottom: 4rem;
}

.personality-traits h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trait-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.trait-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.trait-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.trait-title {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trait-description {
    color: var(--text-light);
    line-height: 1.6;
}

.fun-facts h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.facts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.fact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.fact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fact-text {
    font-weight: 600;
    color: var(--text-color);
}

/* Portfolio Gallery Widget */
.isabella-portfolio-gallery {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 10px 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.portfolio-grid {
    display: grid;
    gap: 2rem;
}

.portfolio-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.portfolio-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.portfolio-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

.portfolio-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 0.5rem;
}

.portfolio-title a {
    color: var(--text-color);
    transition: var(--transition);
}

.portfolio-title a:hover {
    color: var(--primary-color);
}

.portfolio-categories {
    margin-bottom: 1rem;
}

.portfolio-category {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.portfolio-excerpt {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .traits-grid {
        grid-template-columns: 1fr;
    }

    .facts-list {
        grid-template-columns: 1fr;
    }

    .portfolio-grid.columns-2,
    .portfolio-grid.columns-3,
    .portfolio-grid.columns-4 {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }
}
