/* 🎨 Ewa's Beautiful Color Palette - Like a Magic Crayon Box! */
:root {
    /* 💜 Main Purple Colors - Like Beautiful Lavender Flowers */
    --primary-color: #8b7cd8;          /* Soft Purple */
    --primary-light: #b8aff0;          /* Light Purple */
    --primary-dark: #6759a8;           /* Dark Purple */
    
    /* 🩵 Ocean Blue Colors - Like Swimming in Pretty Water */
    --secondary-color: #48cae4;        /* Ocean Blue */
    --secondary-light: #90e0ef;        /* Light Ocean */
    --secondary-dark: #0077b6;         /* Deep Ocean */
    
    /* 🧡 Sunset Colors - Like Beautiful Sunsets */
    --accent-color: #f9844a;           /* Sunset Orange */
    --accent-light: #ffb380;           /* Light Sunset */
    --accent-dark: #e76f51;            /* Deep Sunset */
    
    /* 🤍 Cloud and Gray Colors - Like Soft Clouds */
    --neutral-white: #ffffff;          /* Pure White */
    --neutral-light: #f8f9fa;          /* Cloud White */
    --neutral-gray: #6c757d;           /* Soft Gray */
    --neutral-dark: #343a40;           /* Dark Gray */
    
    /* 🌈 Pretty Gradients - Like Rainbow Magic */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    --warm-gradient: linear-gradient(135deg, #ff9a8b, #fecfef);
    --cool-gradient: linear-gradient(135deg, #a8edea, #fed6e3);
    --tertiary-gradient: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    
    /* 📝 Text Colors - Easy to Read */
    --text-dark: var(--neutral-dark);
    --text-light: var(--neutral-white);
    --text-gray: var(--neutral-gray);
    
    /* ⚠️ Special Colors for Important Things */
    --success-color: #28a745;          /* Green for Good Things */
    --warning-color: #ffc107;          /* Yellow for Warnings */
    --danger-color: #dc3545;           /* Red for Important Alerts */
    
    /* 🎭 Design Elements - Make Everything Look Pretty */
    --border-radius: 20px;             /* Rounded Corners */
    --border-radius-small: 10px;       /* Small Rounded Corners */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-strong: 0 10px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;       /* Smooth Movements */
}

/* 🌟 Make the Website Background Beautiful */
body {
    background: linear-gradient(45deg, 
        #ffecd2 0%, 
        #fcb69f 25%, 
        #a8edea 50%, 
        #fed6e3 75%, 
        #d299c2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* 🐕 Hero Pets Section with Centered Image and Collage Background */
.hero-pets-section {
    position: relative;
    height: 400px;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: linear-gradient(45deg, #ffecd2, #fcb69f, #a8edea, #fed6e3);
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Collage Background - Fill entire area completely */
.collage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    background: linear-gradient(45deg, #ffecd2, #fcb69f, #a8edea, #fed6e3);
}

.collage-image {
    position: absolute;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    filter: blur(1px);
}

/* Top row - fill upper area */
.collage-image.img-1 {
    width: 300px;
    height: 220px;
    top: -30px;
    left: -50px;
    transform: rotate(-12deg);
}

.collage-image.img-2 {
    width: 280px;
    height: 200px;
    top: -20px;
    left: 200px;
    transform: rotate(8deg);
}

.collage-image.img-3 {
    width: 290px;
    height: 210px;
    top: -25px;
    right: -60px;
    transform: rotate(15deg);
}

/* Middle row - fill center sides */
.collage-image.img-4 {
    width: 250px;
    height: 180px;
    top: 50%;
    left: -80px;
    transform: translateY(-50%) rotate(-20deg);
}

.collage-image.img-5 {
    width: 270px;
    height: 190px;
    top: 50%;
    right: -90px;
    transform: translateY(-50%) rotate(18deg);
}

/* Bottom row - fill lower area */
.collage-image.img-6 {
    width: 320px;
    height: 230px;
    bottom: -40px;
    left: -60px;
    transform: rotate(10deg);
}

.collage-image.img-7 {
    width: 300px;
    height: 220px;
    bottom: -30px;
    left: 180px;
    transform: rotate(-15deg);
}

.collage-image.img-8 {
    width: 310px;
    height: 225px;
    bottom: -35px;
    right: -70px;
    transform: rotate(12deg);
}

/* Extra coverage for gaps */
.collage-image.img-9 {
    width: 200px;
    height: 150px;
    top: 30%;
    left: 100px;
    transform: rotate(25deg);
}

.collage-image.img-10 {
    width: 220px;
    height: 160px;
    top: 70%;
    right: 120px;
    transform: rotate(-25deg);
}

/* Centered Main Image Box - Perfectly centered */
.centered-image-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: var(--neutral-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-strong);
    border: 5px solid var(--accent-color);
    max-width: 320px;
}

.hero-main-image {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    display: block;
}

/* Text Overlay */
.hero-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.hero-text-overlay h2 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-text-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero-pets-section {
        height: 300px;
        margin: 1rem;
    }
    
    .centered-image-box {
        max-width: 200px;
        max-height: 180px;
        padding: 10px;
    }
    
    .hero-main-image {
        max-width: 180px;
        max-height: 140px;
    }
    
    .collage-image.img-1 {
        width: 120px;
        height: 90px;
        top: 10px;
        left: 20px;
    }
    
    .collage-image.img-2 {
        width: 110px;
        height: 80px;
        top: 50px;
        right: 30px;
    }
    
    .collage-image.img-3 {
        width: 100px;
        height: 75px;
        bottom: 20px;
        left: 30px;
    }
    
    .collage-image.img-4 {
        width: 115px;
        height: 85px;
        bottom: 30px;
        right: 20px;
    }
    
    /* Responsive collage for mobile - scale down all images */
    .collage-image.img-1 { width: 180px; height: 130px; top: -15px; left: -30px; }
    .collage-image.img-2 { width: 160px; height: 120px; top: -10px; left: 120px; }
    .collage-image.img-3 { width: 170px; height: 125px; top: -12px; right: -35px; }
    .collage-image.img-4 { width: 150px; height: 110px; top: 50%; left: -45px; }
    .collage-image.img-5 { width: 160px; height: 115px; top: 50%; right: -50px; }
    .collage-image.img-6 { width: 190px; height: 140px; bottom: -20px; left: -35px; }
    .collage-image.img-7 { width: 180px; height: 135px; bottom: -15px; left: 100px; }
    .collage-image.img-8 { width: 185px; height: 138px; bottom: -18px; right: -40px; }
    .collage-image.img-9 { width: 120px; height: 90px; top: 35%; left: 60px; }
    .collage-image.img-10 { width: 130px; height: 95px; top: 65%; right: 70px; }
    
    .hero-text-overlay {
        padding: 10px 20px;
    }
    
    .hero-text-overlay h2 {
        font-size: 1.2rem;
    }
    
    .hero-text-overlay p {
        font-size: 0.9rem;
    }
}

/* 🎨 Make All Sections Look Pretty */
.section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

/* 📝 Make Section Headers Beautiful */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.section-decoration {
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto;
    border-radius: 2px;
}


/* 🎮 Gaming Section - Make Gaming Look Super Cool */
.gaming-content {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.game-spotlight {
    text-align: center;
    margin-bottom: 2rem;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.game-spotlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-details h4 {
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.feature-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gaming-balance {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* 🎨 Hobbies Section - Creative and Colorful */
.hobbies-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background: var(--warm-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

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

.hobby-card {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.hobby-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-top-color: var(--primary-color);
}

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

.hobby-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hobby-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ✨ Dreams Section - Inspirational and Motivating */
.dreams-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

.dreams-container {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.dream-category {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 6px solid var(--primary-color);
}

.dream-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.dream-items {
    display: grid;
    gap: 1.5rem;
}

.dream-item {
    background: var(--cool-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.dream-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-light);
}

.dream-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.dream-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.dream-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.inspiration-quote {
    margin-top: 2rem;
}

.quote-box {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.quote-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.quote-box blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin: 1rem 0;
    padding: 0;
    border: none;
    font-weight: 300;
}

.quote-box p {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 1rem;
}

/* Mobile responsive for hobbies and dreams */
@media (max-width: 768px) {
    .hobbies-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hobby-card {
        padding: 1.5rem;
    }
    
    .dream-items {
        gap: 1rem;
    }
    
    .dream-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .quote-box {
        padding: 2rem 1rem;
    }
    
    .quote-box blockquote {
        font-size: 1.1rem;
    }
}

/* 🌍 Languages Section - Colorful and Engaging */
.languages-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background: var(--secondary-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

.languages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.language-card {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.language-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-color);
}

.language-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

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

.language-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.language-level {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-card p:last-child {
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
}

/* Individual language card colors */
.language-card.polish { border-left: 5px solid #dc143c; }
.language-card.english { border-left: 5px solid #012169; }
.language-card.chinese { border-left: 5px solid #de2910; }
.language-card.german { border-left: 5px solid #000000; }
.language-card.kurdish { border-left: 5px solid #ffd700; }
.language-card.spanish { border-left: 5px solid #aa151b; }

.language-benefits {
    background: var(--tertiary-gradient);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.language-benefits h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-light);
    font-weight: bold;
}

.benefit-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Mobile responsive for languages */
@media (max-width: 768px) {
    .languages-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .language-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
}

/* 🐕 Pets Section - Make Candy and Sweet Look Adorable */
.pets-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background: var(--warm-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

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

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

.dog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-color);
}

/* 🍬 Candy's Special Colors - Sweet Like Candy */
.dog-card.candy {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    color: var(--text-dark);
}

/* 🍯 Sweet's Special Colors - Gentle Like Honey */
.dog-card.sweet {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: var(--text-light);
}

/* 🐕 Dog Photo Styling - Small, Even-Sized & Responsive */
.dog-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dog-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.dog-image:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.dog-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dog-subtitle {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.pet-care-activities h3 {
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

.care-item {
    background: var(--cool-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
}

.care-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.care-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.care-item h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.pet-lessons {
    background: var(--tertiary-gradient);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.pet-lessons h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.pet-lessons ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.pet-lessons li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.pet-lessons li:hover {
    padding-left: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius-small);
}

.pet-lessons li:last-child {
    border-bottom: none;
}

/* 🎨 Gallery Collage Frame - Fill background with pet photos */
.collage-hero-frame {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(45deg, #ffecd2, #fcb69f, #a8edea, #fed6e3);
}

.gallery-collage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.gallery-collage-image {
    position: absolute;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    filter: blur(1px);
}

/* Position gallery collage images to fill entire frame */
.gallery-collage-image.gc-img-1 {
    width: 180px;
    height: 130px;
    top: -20px;
    left: -30px;
    transform: rotate(-15deg);
}

.gallery-collage-image.gc-img-2 {
    width: 170px;
    height: 120px;
    top: -15px;
    right: -35px;
    transform: rotate(12deg);
}

.gallery-collage-image.gc-img-3 {
    width: 160px;
    height: 115px;
    bottom: -25px;
    left: -25px;
    transform: rotate(18deg);
}

.gallery-collage-image.gc-img-4 {
    width: 175px;
    height: 125px;
    bottom: -20px;
    right: -40px;
    transform: rotate(-12deg);
}

.gallery-collage-image.gc-img-5 {
    width: 140px;
    height: 100px;
    top: 50%;
    left: -50px;
    transform: translateY(-50%) rotate(25deg);
}

.gallery-collage-image.gc-img-6 {
    width: 150px;
    height: 110px;
    top: 50%;
    right: -55px;
    transform: translateY(-50%) rotate(-20deg);
}

.gallery-collage-image.gc-img-7 {
    width: 120px;
    height: 90px;
    top: 30%;
    left: 50px;
    transform: rotate(-30deg);
}

.gallery-collage-image.gc-img-8 {
    width: 130px;
    height: 95px;
    top: 70%;
    right: 60px;
    transform: rotate(22deg);
}

/* Centered main image in gallery */
.gallery-centered-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: var(--neutral-white);
    border-radius: var(--border-radius-small);
    padding: 15px;
    box-shadow: var(--shadow-strong);
    border: 4px solid var(--accent-color);
}

.gallery-main-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    display: block;
}

/* Responsive gallery collage */
@media (max-width: 768px) {
    .collage-hero-frame {
        height: 250px;
    }
    
    .gallery-centered-image {
        padding: 10px;
    }
    
    .gallery-main-image {
        width: 150px;
        height: 110px;
    }
    
    .gallery-collage-image.gc-img-1 { width: 120px; height: 90px; top: -10px; left: -20px; }
    .gallery-collage-image.gc-img-2 { width: 110px; height: 80px; top: -8px; right: -25px; }
    .gallery-collage-image.gc-img-3 { width: 115px; height: 85px; bottom: -15px; left: -18px; }
    .gallery-collage-image.gc-img-4 { width: 125px; height: 90px; bottom: -12px; right: -28px; }
    .gallery-collage-image.gc-img-5 { width: 100px; height: 75px; left: -35px; }
    .gallery-collage-image.gc-img-6 { width: 105px; height: 78px; right: -38px; }
    .gallery-collage-image.gc-img-7 { width: 85px; height: 65px; left: 35px; }
    .gallery-collage-image.gc-img-8 { width: 90px; height: 68px; right: 40px; }
}

/* 📸 Pet Gallery Styling - For Real Pet Photos */
.real-pets-gallery .photo-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.real-pets-gallery .photo-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

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

.pet-gallery-image {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.pet-gallery-image:hover {
    transform: scale(1.02);
}

.pet-frame, .special-frame {
    border: 3px solid var(--accent-color);
    padding: 8px;
    border-radius: var(--border-radius);
    background: var(--neutral-white);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.pet-frame:hover, .special-frame:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.special-section {
    background: var(--warm-gradient) !important;
    color: var(--text-light);
}

.special-section h3 {
    color: var(--text-light) !important;
}

.future-photos-note {
    margin-top: 2rem;
    text-align: center;
}

.update-note {
    background: var(--accent-gradient);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.update-note h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Gallery Section - Make Photos Look Amazing */
.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background: var(--secondary-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

.gallery-container {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.photo-showcase {
    display: grid;
    gap: 3rem;
}

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

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.photo-frame {
    position: relative;
    overflow: hidden;
}

.photo-frame.sunset {
    border: 4px solid;
    border-image: linear-gradient(45deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--secondary-color)) 1;
    border-radius: var(--border-radius);
}

.photo-frame.sunset-border {
    border: 5px solid;
    border-image: linear-gradient(45deg, 
        #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57) 1;
    border-radius: var(--border-radius);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-image:hover {
    transform: scale(1.05);
}

.photo-caption {
    padding: 1.5rem;
    background: var(--neutral-white);
}

.photo-caption h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.photo-caption p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.photo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.photo-tag {
    background: var(--accent-gradient);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-note {
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.new-photos-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin: 3rem 0 2rem 0;
    font-size: 1.8rem;
}

/* 💭 Quote Section - Make Quotes Look Special */
.quote-showcase {
    text-align: center;
    background: var(--accent-gradient);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.quote-container {
    position: relative;
    margin-bottom: 2rem;
}

.quote-mark {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    display: inline-block;
}

.quote-mark.closing {
    transform: rotate(180deg);
}

.main-quote {
    font-size: 2rem;
    font-style: italic;
    margin: 1rem 0;
    font-weight: 300;
    line-height: 1.4;
}

.quote-explanation {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.quote-explanation h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.quote-lessons ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 1rem auto;
}

.quote-lessons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.personal-connection {
    margin-top: 1.5rem;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-small);
}

/* 📧 Contact Section - Make Contact Info Look Friendly */
.contact-showcase {
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    background: var(--cool-gradient);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.contact-card {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin: 2rem 0;
}

.contact-method {
    margin-bottom: 2rem;
}

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

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.email-link {
    color: var(--accent-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--neutral-white);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.contact-topics h4 {
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.topic-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.topic-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.safety-reminder {
    margin-top: 2rem;
}

.safety-box {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.safety-box h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* 🦶 Footer - Make the Bottom Look Beautiful */
.website-footer {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: var(--shadow-strong);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-main h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-signature {
    margin: 2rem 0;
    font-style: italic;
}

.creation-date {
    color: var(--neutral-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-navigation h4 {
    margin: 2rem 0 1rem 0;
    color: var(--accent-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--accent-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--neutral-white);
    transform: translateY(-2px);
}

.footer-message {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* ⬆️ Scroll to Top Button - Magic Flying Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-gradient);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: 1000;
    font-size: 1.5rem;
}

.scroll-to-top:hover {
    background: var(--danger-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* 📱 Make It Look Good on Phones and Tablets */
@media (max-width: 768px) {
    .section {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .dogs-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* 🐕 Responsive Dog Images for Mobile */
    .dog-image {
        width: 60px;
        height: 60px;
    }
    
    /* 📸 Responsive Pet Gallery for Mobile */
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pet-gallery-image {
        height: 200px;
    }
    
    .real-pets-gallery .photo-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .care-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .topics-grid {
        gap: 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quote-showcase {
        padding: 2rem 1rem;
    }
    
    .main-quote {
        font-size: 1.5rem;
    }
}

/* 🖨️ Make It Look Good When Printed */
@media print {
    .section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ♿ Make It Easy for Everyone to Use */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000;
        --text-light: #fff;
    }
    
    .section {
        border: 2px solid #000;
    }
}

/* 🐌 Make It Calm for People Who Don't Like Fast Movements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 🎯 Make Things Easy to Click and Touch */
a:focus, 
button:focus,
.scroll-to-top:focus {
    outline: 3px solid var(--warning-color);
    outline-offset: 2px;
}

/* 🎨 Make Text Selection Look Pretty */
::selection {
    background: var(--accent-color);
    color: var(--text-light);
}

/* 🛠️ Helper Classes - Easy Ways to Change Things */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* ✨ Cool Animation for When Things Appear */
.animate-in {
    animation: slideInUp 0.6s ease-out;
}

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

/* 🌈 Beautiful Header Styles - Hero Design */
.main-header {
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    color: var(--text-light);
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Section with Large Image */
.hero-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    min-height: 300px;
}

.profile-hero {
    flex: 0 0 auto;
}

.profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Zoom in on face area */
    transform: scale(1.2); /* Zoom in effect */
    transition: transform 0.5s ease;
}

.profile-image-container:hover .hero-profile-image {
    transform: scale(1.25);
}

.profile-overlay {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.status-badge {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Hero Introduction */
.hero-intro {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin: 0 0 1rem 0;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .greeting {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-title .name {
    display: block;
    font-size: 4rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.hero-title .sparkle {
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: rotate(0deg) scale(1); }
    50% { opacity: 0.7; transform: rotate(180deg) scale(1.2); }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
}

/* Navigation Section */
.navigation-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-title {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-title .nav-emoji {
    font-size: 2rem;
}

.nav-title h2 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-card:hover::before {
    transform: translateX(100%);
}

.nav-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.nav-card-content {
    flex: 1;
}

.nav-card-content h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-card-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 300;
}

.nav-card-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.nav-card:hover .nav-card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        min-height: auto;
    }
    
    .profile-image-container {
        width: 160px;
        height: 160px;
    }
    
    .hero-title .name {
        font-size: 3rem;
    }
    
    .nav-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 1.5rem 1rem;
    }
    
    .profile-image-container {
        width: 120px;
        height: 120px;
    }
    
    .hero-title .name {
        font-size: 2.5rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .navigation-section {
        padding: 1.5rem;
    }
    
    .nav-cards {
        grid-template-columns: 1fr;
    }
    
    .nav-card {
        padding: 1.2rem;
    }
}

/* 🌟 About Section Styles */
.intro-section {
    margin-top: 0;
}

.about-content {
    text-align: center;
}

.intro-card {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

/* Profile image styling */
.intro-profile {
    flex-shrink: 0;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--neutral-white);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Mobile responsive for intro card */
@media (max-width: 768px) {
    .intro-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .intro-text h3 {
        font-size: 1.5rem;
    }
}

.fun-facts h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.fact-item {
    background: var(--cool-gradient);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.fact-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* 🎯 Compact Fun Facts Styles */
.facts-horizontal {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fact-item-compact {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.fact-item-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.1), 
        rgba(173, 216, 230, 0.1), 
        rgba(255, 218, 185, 0.1));
    z-index: 1;
}

.fact-item-compact > * {
    position: relative;
    z-index: 2;
}

.fact-item-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.fact-item-compact .fact-emoji {
    font-size: 2.5rem;
    margin: 0;
    flex-shrink: 0;
}

.fact-content {
    flex: 1;
}

.fact-content h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.fact-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-gray);
    font-weight: 400;
    line-height: 1.4;
}

/* Mobile responsiveness for compact facts */
@media (max-width: 968px) {
    .facts-horizontal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fact-item-compact {
        min-width: auto;
        padding: 1rem 1.2rem;
    }
    
    .fact-item-compact .fact-emoji {
        font-size: 2rem;
    }
}

.fact-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* 📱 Mobile Header Styles */
@media (max-width: 768px) {
    .main-header {
        padding: 2rem 1rem 1.5rem;
    }
    
    .sunset-title {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .main-navigation {
        margin-top: 1rem;
    }
    
    .nav-container {
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .nav-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 200px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
