/*
Theme Name: Grace City Boston
Description: Custom WordPress theme for Grace City Boston church website. Modern, responsive design with hero sections, sermon management, and event listings.
Author: Your Name
Version: 1.0
Text Domain: grace-city
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ivy+Presto+Display:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: 'Ivy Presto Display', serif;
    background: #fff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Ensure all content stays within viewport */
* {
    max-width: 100%;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    padding: 1.5rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: #000000;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: #d19d22;
}

.give-btn {
    font-family: 'Inter', sans-serif;
    background: #224653;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.give-btn:hover {
    background: #000000;
    box-shadow: 0 5px 15px rgba(209,157,34,0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000000;
}

.logo-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: #000000;
}

.logo-link:visited {
    color: #000000;
    text-decoration: none;
}

.logo-image {
    height: 35px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #224653;
}

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

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    min-width: 200px;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: white;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #d19d22;
}

/* Hero Section */
.hero-mega {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%), url('assets/images/DSC_2070.JPG');
    background-size: cover;
    background-position: center;
}

/* Animations removed */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.hero-text .accent {
    color: #d19d22;
    text-shadow: 0 0 50px rgba(209,157,34,0.5);
}

.hero-text p {
    font-family: 'Ivy Presto Display', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-mega {
    font-family: 'Inter', sans-serif;
    padding: 1.8rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid #224653;
    background: #224653;
    color: white;
    box-shadow: 0 10px 40px rgba(209,157,34,0.3);
}

.btn-mega:hover {
    background: transparent;
    color: #d19d22;
    box-shadow: 0 15px 50px rgba(209,157,34,0.4);
}

.btn-outline {
    background: transparent;
    color: #d19d22;
    border-color: #d19d22;
    box-shadow: 0 10px 40px rgba(209,157,34,0.2);
}

.btn-outline:hover {
    background: #d19d22;
    color: white;
    border-color: #d19d22;
}

.hero-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
}

.hero-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d19d22;
    text-transform: uppercase;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-details {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Section Styles */
.section-massive {
    padding: 8rem 2rem;
    position: relative;
}

.section-dark {
    background: #224653;
    color: white;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 6rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.section-title.white {
    color: white;
}

.section-title .highlight {
    color: #d19d22;
}

/* Sermon Section Styles */
.sermon-section {
    padding: 8rem 2rem;
    background: white;
}

.sermon-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 60, 136, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sermon-info {
    padding: 2rem;
}

.sermon-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sermon-series {
    font-family: 'Inter', sans-serif;
    color: #d19d22;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sermon-date, .sermon-speaker {
    font-family: 'Inter', sans-serif;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sermon-description {
    font-family: 'Ivy Presto Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin: 1.5rem 0;
}

.sermon-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Simplified Sermon Layout */
.sermon-content-simple {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.sermon-action-center {
    text-align: center;
    margin-top: 5rem;
}

.sermon-action-center .btn-mega {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Events Section Styles */
.events-section {
    padding: 8rem 2rem;
    background: #f8f8f8;
}

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

.event-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid #e5e5e5;
}

.event-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: #f5f5f5;
    color: #333;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
    border: 1px solid #e5e5e5;
}

.event-date .day {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
    display: block;
}

.event-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.event-time, .event-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.event-description {
    font-family: 'Ivy Presto Display', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-top: 1rem;
}

/* About Section Styles */
.about-section {
    padding: 8rem 2rem;
    background: #224653;
    color: white;
}

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

.about-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e5e5e5;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: white;
}

.about-number {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #d19d22;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.about-desc {
    font-family: 'Ivy Presto Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Community & CTA Sections */
.content-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.showcase-content {
    padding: 6rem;
    background: #f8f8f8;
}

.showcase-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: #000000;
}

.showcase-content p {
    font-family: 'Ivy Presto Display', serif;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #000000;
    font-style: italic;
}

.showcase-image {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.cta-massive {
    background: #f8f8f8;
    padding: 8rem 2rem;
    text-align: center;
    color: #000000;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connect-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
}

.connect-buttons .btn-mega {
    height: 60px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-size: 1rem;
}

.cta-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #000000;
}

.cta-content p {
    font-family: 'Ivy Presto Display', serif;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #000000;
    opacity: 0.8;
    font-style: italic;
}

/* Footer Styles */
.footer-mega {
    background: #0a0a0a;
    color: white;
    padding: 6rem 2rem 3rem;
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #d19d22;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #224653;
}

.footer-section p {
    font-family: 'Ivy Presto Display', serif;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.7;
    font-style: italic;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: white;
    color: #d19d22;
    border-color: white;
}

.social-icon i {
    line-height: 1;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    background: #224653;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    background: #224653;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    z-index: 999;
    border-top: 1px solid rgba(0,0,0,0.05);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(34,70,83,0.1);
}

.mobile-nav a:hover {
    color: #d19d22;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(34,70,83,0.1);
}

.mobile-social a {
    color: #000000;
    font-size: 1.5rem;
    border: none;
    padding: 0;
}

.mobile-social a:hover {
    color: #d19d22;
}

.mobile-give-btn {
    background: #224653 !important;
    color: white !important;
    margin-top: 1rem !important;
    padding: 1rem 2rem !important;
    text-align: center !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.mobile-give-btn:hover {
    background: #000000 !important;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .connect-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .content-showcase {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        padding-bottom: 3rem;
    }
    
    .content-showcase:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .showcase-content {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .social-icons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .give-btn {
        display: none;
    }
    
    .hero-mega {
        height: auto;
        min-height: calc(100vh - 80px);
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-info {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        line-height: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .btn-mega {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
        letter-spacing: -1px;
    }
    
    .sermon-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sermon-info {
        padding: 1rem;
        order: -1;
    }
    
    .sermon-info h3 {
        font-size: 1.8rem;
    }
    
    .sermon-description {
        font-size: 1rem;
    }
    
    .sermon-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .event-card:nth-child(n+4) {
        display: none;
    }
    
    .event-date {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        height: 400px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-overlay {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        display: none;
    }
    
    .connect-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .connect-buttons .btn-mega {
        height: 50px;
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .footer-section h4::after {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-footer {
        justify-content: center;
    }
    
    .showcase-content {
        padding: 3rem 1.5rem;
    }
    
    .showcase-content h2 {
        font-size: 2.5rem;
    }
    
    .showcase-content p {
        font-size: 1.1rem;
    }
    
    .showcase-image {
        display: none;
    }
    
    .section-massive {
        padding: 4rem 1rem;
    }
    
    .sermon-section,
    .events-section,
    .about-section {
        padding: 4rem 1rem;
    }
    
    .sermon-content-simple {
        padding: 0 1rem;
        margin: 2rem auto 0;
    }
    
    .sermon-action-center {
        margin-top: 3rem;
    }
    
    .sermon-action-center .btn-mega {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-mega {
        padding-top: 90px;
    }
    
    .connect-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
    }
    
    .connect-buttons .btn-mega {
        height: 48px;
        font-size: 0.85rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .btn-mega {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 1rem 1rem;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .hero-info h3 {
        font-size: 1.2rem;
    }
    
    .info-title {
        font-size: 1rem;
    }
    
    .info-details {
        font-size: 0.9rem;
    }
}

/* Hide unwanted widgets */
.widget_archive,
.widget_categories,
.widget_calendar,
.widget_links,
.widget_meta,
.widget_recent_comments,
.widget_rss,
.widget_tag_cloud {
    display: none !important;
}
