/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 30%, #90CAF9 70%, #64B5F6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    color: #1976D2;
}

.preloader-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
}

.preloader-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #E3F2FD;
    border-top: 4px solid #1976D2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(25, 118, 210, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976D2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    color: #2196F3;
}

.nav-logo i {
    margin-right: 0.8rem;
    font-size: 2.2rem;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    background: transparent;
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #1976D2, #2196F3);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Hero Section Styles */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    display: block;
    background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD93D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

.hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 6px solid white;
}

/* Tablet and up */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
    
    .hero-text {
        margin: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-buttons .btn {
        width: auto;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-image img {
        max-width: 400px;
        border-radius: 30px;
        border: 8px solid white;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-image img {
        max-width: 450px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
    
    .hero-image img {
        max-width: 500px;
    }
}

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

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #1976D2;
}

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

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

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

.image-container {
    position: relative;
}

.hero-puppy {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
    border: 8px solid white;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #1976D2;
    z-index: 2;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.section-title {
    font-size: 3rem;
    color: #1976D2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #1976D2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: #1976D2;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.about-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

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

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 6px solid white;
}

.about-image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid #4CAF50;
    max-width: 180px;
}

.about-image-badge span {
    color: #2E7D32;
    font-weight: 600;
    font-size: 0.9rem;
}

.fun-facts {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.fun-facts h3 {
    color: #1976D2;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.fun-fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
}

.fun-fact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.2);
}

.fun-fact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.fun-fact-text {
    color: #1976D2;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
}

/* Tablet and up */
@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-image img {
        max-width: 400px;
        border-radius: 25px;
        border: 8px solid white;
    }
    
    .about-image-badge {
        top: -20px;
        right: -20px;
        max-width: 200px;
    }
    
    .fun-facts {
        padding: 3rem;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .about-content {
        gap: 5rem;
    }
    
    .about-image img {
        max-width: 450px;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Enhanced Blog Section */
.blog {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(25, 118, 210, 0.25);
    border-color: rgba(25, 118, 210, 0.3);
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.blog-date {
    color: #666666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date::before {
    content: '📅';
    font-size: 0.8rem;
}

.blog-category {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}

.blog-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.blog-content h3 {
    color: #1976D2;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(25, 118, 210, 0.05);
}

.read-more:hover {
    background: rgba(25, 118, 210, 0.1);
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Blog CTA Section */
.blog-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    color: #1976D2;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Placeholder Images */
.placeholder-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #E3F2FD, #BBDEFB, #90CAF9, #64B5F6, #42A5F5);
    background-size: 400% 400%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1976D2;
    font-size: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: gradientMove 4s ease-in-out infinite;
}

.placeholder-image::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%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.placeholder-image:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.placeholder-image:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.placeholder-image p {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    animation: titleGradient 3s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #2196F3, #42A5F5);
    border-radius: 2px;
    animation: titleLine 2s ease-in-out infinite;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleLine {
    0%, 100% { width: 80px; }
    50% { width: 120px; }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #F8FBFF;
}

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

.about-text h3 {
    font-size: 1.5rem;
    color: #1976D2;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #E3F2FD;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat i {
    font-size: 2rem;
    color: #1976D2;
    margin-bottom: 0.5rem;
}

.stat h4 {
    color: #1976D2;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #000000;
    font-weight: 600;
}

/* Facebook Stories Section */
.facebook-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.facebook-stories .section-subtitle {
    text-align: center;
    color: #1976D2;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.facebook-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.facebook-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facebook-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.25);
    border-color: #1976D2;
}

.facebook-story-card.loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-loading {
    text-align: center;
    color: #1976D2;
}

.story-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-loading p {
    font-size: 1rem;
    color: #666;
}

.facebook-story-content {
    padding: 1.5rem;
}

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

.facebook-story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #1976D2;
}

.facebook-story-info h4 {
    color: #1976D2;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.facebook-story-timestamp {
    color: #666;
    font-size: 0.9rem;
}

.facebook-story-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.facebook-story-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.facebook-story-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.facebook-story-likes {
    color: #1976D2;
    font-weight: 500;
}

.facebook-story-share {
    background: #1976D2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.facebook-story-share:hover {
    background: #1565C0;
    transform: scale(1.05);
}

.facebook-connect {
    text-align: center;
}

.btn-facebook {
    background: #1877F2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}











/* Blog Section */
.blog {
    padding: 5rem 0;
    background: #E3F2FD;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Allow flexible columns */
    grid-template-rows: auto; /* Allow rows to auto-adjust */
    gap: 2rem;
    padding: 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card:nth-child(1),
.blog-card:nth-child(2),
.blog-card:nth-child(3),
.blog-card:nth-child(4),
.blog-card:nth-child(5),
.blog-card:nth-child(6),
.blog-card:nth-child(7),
.blog-card:nth-child(8) {
    grid-column: auto; /* Let grid flow naturally */
    grid-row: auto;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.2);
    border-color: rgba(25, 118, 210, 0.3);
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-image .placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.blog-date {
    color: #666666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date::before {
    content: '📅';
    font-size: 0.8rem;
}

.blog-category {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}

.blog-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.blog-content h3 {
    color: #1976D2;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Different text styles for variety */
.blog-card:nth-child(1) .blog-content h3 {
    background: linear-gradient(45deg, #1976D2, #2196F3, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(25, 118, 210, 0.3);
}

.blog-card:nth-child(2) .blog-content h3 {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-style: italic;
}

.blog-card:nth-child(3) .blog-content h3 {
    color: #1976D2;
    font-size: 1.3rem;
    border-left: 4px solid #1976D2;
    padding-left: 1rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.blog-card:nth-child(4) .blog-content h3 {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card:nth-child(5) .blog-content h3 {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 800;
}

.blog-content p {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

/* Different paragraph styles for variety */
.blog-card:nth-child(1) .blog-content p {
    color: #444444;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.blog-card:nth-child(2) .blog-content p {
    color: #666666;
    font-style: italic;
    line-height: 1.6;
}

.blog-card:nth-child(3) .blog-content p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: justify;
}

.blog-card:nth-child(4) .blog-content p {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

.blog-card:nth-child(5) .blog-content p {
    color: #444444;
    font-size: 1rem;
    line-height: 1.75;
    font-family: 'Georgia', serif;
}

.read-more {
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(25, 118, 210, 0.1);
    border-radius: 25px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    color: #2196F3;
    background: rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.2);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #F0F8FF;
}

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

.gallery-item .placeholder-image {
    width: 100%;
    height: 250px;
    font-size: 2rem;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 50%, #0D47A1 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="6" cy="6" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="14" cy="6" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="6" cy="14" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="14" cy="14" r="0.8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw)"/></svg>');
    opacity: 0.3;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: #90CAF9;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #90CAF9;
    border-bottom: 2px solid #90CAF9;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #E3F2FD;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E3F2FD;
}

.footer-section ul li i {
    color: #90CAF9;
    width: 16px;
    text-align: center;
}

.footer-section a {
    color: #E3F2FD;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-social .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    min-width: 140px;
    justify-content: center;
    border: none;
}

.footer-social .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-social .social-btn i {
    font-size: 1.2rem;
}

.footer-social .social-btn span {
    font-size: 0.95rem;
}

.footer-social .social-btn.facebook {
    background: #1877f2;
    color: white;
}

.footer-social .social-btn.facebook:hover {
    background: #166fe5;
}

.footer-social .social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.footer-social .social-btn.instagram:hover {
    background: linear-gradient(45deg, #e0852a 0%, #d55f33 25%, #c41f3a 50%, #b31f5d 75%, #a31575 100%);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: #90CAF9;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-content p:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-logo i {
        font-size: 1.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px; /* Adjust top to match new navbar height */
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu .nav-link {
        justify-content: center;
        margin: 0.5rem 2rem;
        padding: 1rem 1.5rem;
        border-radius: 15px;
        background: rgba(25, 118, 210, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding-top: 100px; /* Adjust padding-top for fixed navbar */
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .social-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-image {
        order: -1; /* Move image above text on mobile */
    }

    .placeholder-image {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        max-width: 100%; /* Ensure blog grid takes full width on smaller screens */
    }

    .blog-card:nth-child(1),
    .blog-card:nth-child(2),
    .blog-card:nth-child(3),
    .blog-card:nth-child(4),
    .blog-card:nth-child(5),
    .blog-card:nth-child(6),
    .blog-card:nth-child(7),
    .blog-card:nth-child(8) {
        grid-column: auto; /* Let grid flow naturally */
        grid-row: auto;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-item .placeholder-image {
        height: 180px;
        font-size: 1.8rem;
    }

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

    .footer-section h3,
    .footer-section h4 {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-social .social-btn {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }

    .article-title {
        font-size: 2.2rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .prev-article, .next-article {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .prev-article i, .next-article i {
        margin-bottom: 0.5rem;
    }

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

    .article-image .placeholder-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .placeholder-image {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

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

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.85rem;
    }

    .read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

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

    .gallery-item .placeholder-image {
        height: 150px;
        font-size: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section ul li,
    .footer-section a {
        font-size: 0.9rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-excerpt {
        font-size: 1rem;
    }

    .article-text h2 {
        font-size: 1.5rem;
    }

    .article-text h3 {
        font-size: 1.2rem;
    }

    .article-text p,
    .article-text li {
        font-size: 0.95rem;
    }
}

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

.hero-content,
.about-text,
.blog-card,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Blog Article Pages */
.blog-article {
    padding: 120px 0 5rem;
    background: #F8FBFF;
    min-height: 100vh;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #2196F3;
    transform: translateX(-5px);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.article-date {
    color: #5A6C7D;
    font-size: 0.9rem;
}

.article-category {
    background: #1976D2;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 3rem;
    text-align: center;
}

.article-image .placeholder-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
}

.article-text {
    line-height: 1.8;
}

.article-text h2 {
    color: #1976D2;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    border-left: 4px solid #1976D2;
    padding-left: 1rem;
}

.article-text h3 {
    color: #1976D2;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.article-text p {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.1rem;
}

.article-text ul, .article-text ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
    color: #000000;
}

.article-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #E3F2FD;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #1976D2;
}

.article-footer p {
    margin: 0;
    font-size: 1.1rem;
    color: #1976D2;
}

.article-navigation {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.prev-article, .next-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #1976D2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.prev-article {
    text-align: left;
}

.next-article {
    text-align: right;
    justify-content: flex-end;
}

.prev-article:hover, .next-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.2);
    background: #F8FBFF;
}

.prev-article span, .next-article span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.prev-article h3, .next-article h3 {
    margin: 0.3rem 0 0;
    font-size: 1.1rem;
    color: #1976D2;
}

/* Responsive for blog articles */
@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .prev-article, .next-article {
        justify-content: center;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Basic Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1976D2;
    border: 2px solid #1976D2;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

/* Mobile-First Responsive Design */
/* Base mobile styles (default) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation mobile optimization */
.navbar {
    padding: 1rem 0;
}

.nav-container {
    padding: 0 15px;
}

.nav-links {
    display: none; /* Hide on mobile by default */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-links a {
    padding: 1rem;
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1976D2;
    transition: all 0.3s ease;
}

.nav-links a:last-child {
    border-bottom: none;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1976D2;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero section mobile */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 1rem;
}

.hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
}

/* About section mobile */
.about {
    padding: 4rem 0;
}

.about-content {
    flex-direction: column;
    text-align: center;
}

.about-text {
    order: 2;
    margin-top: 2rem;
}

.about-image {
    order: 1;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Blog section mobile */
.blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-article {
    margin-bottom: 2rem;
}

/* Facebook Stories card mobile */
.facebook-stories-card {
    margin: 0 15px 2rem;
}

.facebook-stories-card .card-image {
    height: 200px;
}

.facebook-stories-card .card-content {
    padding: 1.5rem;
}

.facebook-stories-card h3 {
    font-size: 1.3rem;
}

/* Footer mobile */
.footer {
    padding: 3rem 0 2rem;
}

.footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

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

/* Blog article mobile */
.blog-article {
    padding: 2rem 0;
}

.article-header {
    padding: 0 15px;
}

.article-title {
    font-size: 2rem;
    line-height: 1.2;
}

.article-content {
    padding: 0 15px;
}

.article-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
}

/* Facebook embeds mobile */
.facebook-embed {
    margin: 2rem 15px;
    max-width: 100%;
}

.facebook-embed iframe {
    width: 100%;
    min-height: 300px;
}

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons a {
        width: auto;
    }
    
    .about-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .about-text {
        order: 1;
        margin-top: 0;
        margin-right: 2rem;
    }
    
    .about-image {
        order: 2;
        margin-bottom: 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-links a {
        padding: 0.5rem 1rem;
        border-bottom: none;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .footer-content {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
    
    .facebook-embed {
        margin: 3rem auto;
        max-width: 500px;
    }
}

/* Desktop styles (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .about-content {
        gap: 4rem;
    }
    
    .about-image img {
        max-width: 400px;
    }
    
    .facebook-embed {
        max-width: 600px;
    }
}

/* Large desktop styles (1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .blog-article:hover,
    .hero-buttons a:hover,
    .footer-section a:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Increase touch targets */
    .nav-links a,
    .hero-buttons a,
    .blog-article,
    .footer-section a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better touch feedback */
    .blog-article:active,
    .hero-buttons a:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .blog-article {
        padding: 1.5rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-image img,
    .blog-article img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .about,
    .blog-article {
        padding: 1rem 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .blog-article {
        page-break-inside: avoid;
    }
}

 