/* ==========================================
   Middlebury Sweets - Custom Styles
   ========================================== */

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    /* Замощенный фон с изображением */
    background-image: url('../images/bg4.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: top left;
    min-height: 100vh;
}

/* Overlay для улучшения читаемости контента поверх фона */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
}

/* Убедимся что контент поверх overlay */
header, main, footer {
    position: relative;
    z-index: 1;
}

/* ========== Header & Navigation ========== */
header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    max-height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.brand-text {
    color: #fff;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-subtitle {
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
    opacity: 0.95;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 0.2rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-join {
    background-color: #fff;
    color: #ff1493 !important;
    font-weight: 600;
    border-radius: 25px;
}

.btn-join:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.navbar-toggler {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== Main Content ========== */
main {
    padding-top: 2rem;
}

/* ========== Hero Section ========== */
.hero-section {
    padding: 2rem 0;
}

.decorative-candies {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.candy-decor {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========== News Section ========== */
.news-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.15);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff1493;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.announcement-box {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.3);
    margin: 2rem auto;
    max-width: 600px;
}

.announcement-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========== Features Section ========== */
.features-section {
    padding: 4rem 0;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff1493;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.sub-heading {
    font-size: 1.8rem;
    color: #ff69b4;
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* ========== Contact Info Section ========== */
.contact-info-section {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
}

.location-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.phone-number {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phone-number i {
    margin-right: 0.5rem;
}

/* ========== Candy Decoration Section ========== */
.candy-decoration-section {
    padding: 2rem 0;
}

.candy-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.candy-img {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(135deg, #ff1493 0%, #c71585 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) translateY(-5px);
}

.social-link img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========== Additional Page Styles ========== */
.page-header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-description {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.95;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: #ff1493;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* ========== About Us Page Specific Styles ========== */

.content-section-wrapper {
    padding: 3rem 0;
}

.story-content {
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ff1493;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-heading {
    color: #ff1493;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.section-heading i {
    margin-right: 0.5rem;
}

/* ========== Timeline Styles ========== */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff69b4 0%, #ff1493 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 50%;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    padding-left: 0;
    padding-right: 50%;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    background: #ff1493;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.2);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
}

.timeline-content h4 {
    color: #ff1493;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #555;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========== Special Features Grid ========== */
.special-feature {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid #ff69b4;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.special-feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
    border-color: #ff1493;
    background: rgba(255, 255, 255, 0.98);
}

.special-icon {
    font-size: 3rem;
    color: #ff1493;
    margin-bottom: 1rem;
    display: block;
}

.special-feature h5 {
    color: #ff1493;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.special-feature p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* ========== Hours Page Specific Styles ========== */

.hours-section {
    padding: 3rem 0;
}

/* Hours Card Styles */
.hours-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
}

.hours-card-header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.hours-card-header.summer {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.hours-card-header.valentines {
    background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
}

.hours-card-header.easter {
    background: linear-gradient(135deg, #9370db 0%, #8a2be2 100%);
}

.hours-card-header.christmas {
    background: linear-gradient(135deg, #228b22 0%, #006400 100%);
}

.hours-card-header.newyear {
    background: linear-gradient(135deg, #4169e1 0%, #0000cd 100%);
}

.hours-card-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hours-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.season-period {
    font-size: 0.95rem;
    margin: 0.5rem 0 0;
    opacity: 0.9;
    font-style: italic;
}

.hours-card-body {
    padding: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 105, 180, 0.05);
    transition: all 0.3s ease;
}

.hours-row:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

.hours-row:last-child {
    margin-bottom: 0;
}

.hours-row.highlight {
    background: rgba(255, 20, 147, 0.15);
    border: 2px solid #ff1493;
    font-weight: 600;
}

.hours-row.closed {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
}

.hours-row .day {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.hours-row .time {
    font-weight: 700;
    color: #ff1493;
    font-size: 1.1rem;
}

.hours-row.closed .time {
    color: #dc3545;
}

/* Holiday Card Specific Styling */
.hours-card.holiday {
    border-top: 4px solid #ff1493;
}

/* ========== Utility Classes ========== */
.text-pink {
    color: #ff1493;
}

.bg-pink {
    background-color: #ff69b4;
}

.btn-pink {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.4);
    color: #fff;
}

/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .brand-title {
        font-size: 1.4rem;
    }

    .brand-subtitle {
        font-size: 0.85rem;
    }

    .logo-img {
        max-height: 60px;
    }

    .main-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .hours-card-header h3 {
        font-size: 1.3rem;
    }

    .hours-card-header i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .announcement-title {
        font-size: 1.4rem;
    }

    .location-title {
        font-size: 1.4rem;
    }

    .phone-number {
        font-size: 1.2rem;
    }

    /* Timeline responsive */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(0);
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    /* Hours responsive */
    .hours-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hours-row .day {
        font-size: 0.95rem;
    }

    .hours-row .time {
        font-size: 1rem;
    }

    .hours-card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h4 {
        font-size: 1.3rem;
    }

    .special-feature {
        padding: 1.5rem;
    }

    .special-icon {
        font-size: 2.5rem;
    }

    .hours-card-header {
        padding: 1.5rem;
    }

    .hours-card-header h3 {
        font-size: 1.1rem;
    }

    .season-period {
        font-size: 0.85rem;
    }
}





/* ========== Birds Page Specific Styles ========== */

.birds-section {
    padding: 3rem 0;
}

/* Bird Card Styles */
.bird-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 3px solid transparent;
}

.bird-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.25);
    border-color: #ff69b4;
}

.bird-card-header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    padding: 2rem;
    text-align: center;
    color: #fff;
    position: relative;
}

.bird-card-header i.fa-feather-alt {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.bird-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bird-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.bird-badge i {
    font-size: 1rem;
}

.bird-card-body {
    padding: 2rem;
}

.bird-photo-placeholder {
    background: linear-gradient(135deg, #ffe8f5 0%, #fff5f7 100%);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 2px dashed #ff69b4;
}

.bird-photo-placeholder i {
    font-size: 4rem;
    color: #ff69b4;
    margin-bottom: 1rem;
    display: block;
}

.bird-photo-placeholder p {
    color: #ff1493;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.bird-description {
    margin-bottom: 1.5rem;
}

.bird-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.bird-description p:last-child {
    margin-bottom: 0;
}

.bird-stats {
    border-top: 2px solid #ffe8f5;
    padding-top: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 105, 180, 0.05);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item i {
    color: #ff1493;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.stat-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #ffe8f5 0%, #fff5f7 100%);
    border: 3px solid #ff69b4;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.15);
}

.info-box i {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 1rem;
    display: block;
}

.info-box p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff1493;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Bird Cards */
@media (max-width: 991px) {
    .bird-card-header h3 {
        font-size: 1.5rem;
    }

    .bird-card-header i.fa-feather-alt {
        font-size: 2rem;
    }

    .bird-photo-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .bird-card-body {
        padding: 1.5rem;
    }

    .bird-description p {
        font-size: 0.95rem;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-item span {
        font-size: 0.9rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .info-box p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .bird-card-header {
        padding: 1.5rem;
    }

    .bird-card-header h3 {
        font-size: 1.3rem;
    }

    .bird-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .bird-photo-placeholder {
        padding: 2rem 1rem;
    }

    .bird-photo-placeholder i {
        font-size: 2.5rem;
    }
}


/* ========== Blog/Social Media Page Specific Styles ========== */

.social-projects-section {
    padding: 3rem 0;
}

/* Social Card Styles */
.social-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 3px solid transparent;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.25);
}

.social-card-header {
    padding: 2rem;
    text-align: center;
    color: #fff;
    position: relative;
}

.social-card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.social-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.social-card-body {
    padding: 2rem;
}

.social-card-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Theme Colors for Different Projects */
.lego-theme .social-card-header {
    background: linear-gradient(135deg, #ff4444 0%, #dd0000 100%);
}

.lego-theme:hover {
    border-color: #ff4444;
}

.candy-theme .social-card-header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.candy-theme:hover {
    border-color: #ff69b4;
}

.keto-theme .social-card-header {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.keto-theme:hover {
    border-color: #28a745;
}

.scrapbook-theme .social-card-header {
    background: linear-gradient(135deg, #9370db 0%, #8a2be2 100%);
}

.scrapbook-theme:hover {
    border-color: #9370db;
}

.motel-theme .social-card-header {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.motel-theme:hover {
    border-color: #17a2b8;
}

/* Social Links Grid */
.social-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.social-btn i {
    font-size: 1.5rem;
}

/* Social Button Colors */
.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-btn.youtube:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bd4 100%);
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #4a9aff 0%, #1877f2 100%);
}

.social-btn.blog {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.social-btn.blog:hover {
    background: linear-gradient(135deg, #ff8787 0%, #ff6b6b 100%);
}

/* Responsive Social Cards */
@media (max-width: 991px) {
    .social-card-header h3 {
        font-size: 1.5rem;
    }

    .social-card-header i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .social-card-body {
        padding: 1.5rem;
    }

    .social-card-body p {
        font-size: 1rem;
    }

    .social-links-grid {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .social-card-header {
        padding: 1.5rem;
    }

    .social-card-header h3 {
        font-size: 1.3rem;
    }

    .social-card-header i {
        font-size: 2rem;
    }

    .social-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ========== LEGO Page Specific Styles ========== */

.lego-header {
    background: linear-gradient(135deg, #ff4444 0%, #dd0000 100%) !important;
}

.lego-content-section {
    padding: 3rem 0;
}

/* LEGO Story Card */
.lego-story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border-top: 5px solid #ff4444;
}

.lego-story-header {
    background: linear-gradient(135deg, #ff4444 0%, #dd0000 100%);
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.lego-story-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.lego-story-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.lego-story-body {
    padding: 2.5rem;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ff4444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lego-story-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* LEGO Feature Cards */
.lego-feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
    backdrop-filter: blur(10px);
}

.lego-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 68, 68, 0.25);
    border-color: #ff4444;
}

.lego-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff4444 0%, #dd0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 68, 68, 0.3);
}

.lego-feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.lego-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 1rem;
}

.lego-feature-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* LEGO CTA Card */
.lego-cta-card {
    background: linear-gradient(135deg, #ff4444 0%, #dd0000 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    margin: 3rem 0;
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.3);
}

.lego-cta-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.lego-cta-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.lego-cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-lego {
    background: #fff;
    color: #ff4444;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-lego:hover {
    background: #f0f0f0;
    color: #dd0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-lego i {
    margin-right: 0.5rem;
}

/* Girl Meets Brick Promo Card */
.gmb-promo-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #ff4444;
    backdrop-filter: blur(10px);
}

.gmb-promo-content {
    text-align: center;
}

.gmb-promo-content i {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1rem;
    display: block;
}

.gmb-promo-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 1rem;
}

.gmb-promo-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.gmb-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gmb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.gmb-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.gmb-link.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.gmb-link.youtube:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

.gmb-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bd4 100%);
}

.gmb-link.facebook:hover {
    background: linear-gradient(135deg, #4a9aff 0%, #1877f2 100%);
}

.gmb-link.blog {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.gmb-link.blog:hover {
    background: linear-gradient(135deg, #ff8787 0%, #ff6b6b 100%);
}

.gmb-link i {
    font-size: 1.2rem;
}

/* Responsive LEGO Page */
@media (max-width: 991px) {
    .lego-story-header h2 {
        font-size: 1.6rem;
    }

    .lego-story-header i {
        font-size: 2.5rem;
    }

    .lego-feature-icon {
        width: 70px;
        height: 70px;
    }

    .lego-feature-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .lego-story-body {
        padding: 2rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .lego-story-body p {
        font-size: 1rem;
    }

    .lego-cta-card {
        padding: 2rem;
    }

    .lego-cta-card h3 {
        font-size: 1.6rem;
    }

    .lego-cta-card p {
        font-size: 1.05rem;
    }

    .gmb-links {
        flex-direction: column;
    }

    .gmb-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lego-story-header {
        padding: 1.5rem;
    }

    .lego-story-header h2 {
        font-size: 1.4rem;
    }

    .lego-feature-card {
        padding: 1.5rem;
    }

    .lego-feature-card h3 {
        font-size: 1.2rem;
    }

    .lego-cta-card i {
        font-size: 2.5rem;
    }

    .btn-lego {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .gmb-promo-card {
        padding: 2rem;
    }
}



.bird-photo {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 3px solid #ff69b4;
}

.bird-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bird-photo:hover img {
    transform: scale(1.05);
}
