/* Dolfans NYC Theme Styles */

:root {
    --dolphins-teal: #008E97;
    --dolphins-orange: #FC4C02;
    --dolphins-dark-teal: #005778;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --widget-bg: #f8f9fa;
}

a, a:visited {
  color: var(--dolphins-teal);
}

a:hover {
  color: var(--dolphins-dark-teal);
}

.dolfans-hero .container {
    width: 100%;
}

.header-image {
    height: 253px;
}

.header-image .dolfans-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-image .dolphins-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 336px;
    object-fit: contain;
    z-index: 1;
}

/* Hero Section */
.dolfans-hero {
    /* background: linear-gradient(135deg, var(--dolphins-teal) 0%, var(--dolphins-dark-teal) 100%); */
    color: white;
    height: 253px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .dolfans-hero {
        margin-top: 0;
    }
}

.dolfans-hero .site-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* Main Content Area */
.main-content {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .main-content {
        padding-right: 16px;
        padding-left: 0;
    }
}
/* Post Styling */
.dolfans-featured-post {
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); */
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .featured-post-content {
        padding-right: 16px;
    }
}

.dolfans-post {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .dolfans-post {
        flex-direction: row;
    }
}

/* .dolfans-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} */

.post-content {
    flex: 1;
    padding: 8px 16px;
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%
}

.post-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.single .entry-header {
    margin-bottom: 16px;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.featured-post-date,
.post-date,
.posted-on {
    color: var(--dolphins-orange);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.post-date {
    font-size: 12px;
    margin-bottom: 6px;
    display: block;
}

.dolfans-post .post-meta {
    padding: 0;
}

/* Post Title Styles */
.post-title {
    margin: 0;
    margin-top: 10px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dolphins-teal);
}

.post-title-condensed {
    font-size: 2.2rem;
    line-height: 1.1;
}



@media (min-width: 768px) {
    .post-title {
        font-size: 3.6rem;
        line-height: 1.3;
        margin-top: 0;
    }
    .post-title-condensed {
        font-size: 2.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
	.featured-post-date {
    position: relative;
    top: -2px;
}
}

.single .entry-title,
.page .entry-title,
.archive .entry-title {
    font-size: 2.2rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .single .entry-title, .page .entry-title, .archive .entry-title {
        margin-top: 0;
        font-size: 3.6rem;
        line-height: 1.2;
    }
}

.dolfans-featured-post .featured-post-meta {
    margin-bottom: 20px;
}

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

.read-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 15px 20px 20px;
    color: var(--dolphins-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--dolphins-dark-teal);
    transform: translateX(5px);
}

.post-excerpt p {
    height: 94px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Pagination Styles */
.dolfans-pagination {
    margin: 40px 0;
    text-align: center;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination-item {
    margin: 0;
}

.pagination-item a,
.pagination-item span {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    border: 2px solid var(--dolphins-teal);
    color: var(--dolphins-teal);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination-item a:hover {
    background: var(--dolphins-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 142, 151, 0.3);
}

.pagination-item .current {
    background: var(--dolphins-teal);
    color: white;
    border-color: var(--dolphins-teal);
}

.pagination-item .prev,
.pagination-item .next {
    font-weight: 700;
}

/* Responsive pagination */
@media (max-width: 767px) {
    .pagination-list {
        flex-wrap: wrap;
        gap: 3px;
    }
    
    .pagination-item a,
    .pagination-item span {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 35px;
    }
}

/* Sidebar Widgets */
.sidebar {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {
    .sidebar {
        padding-right: 0;
    }
}

.widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dolphins-orange);
}

/* MetLife Takeover Widget */
.widget-takeover {
    /* background: var(--dolphins-orange); */
    color: white;
    padding: 0;
}

.widget-takeover h3 {
    margin-top: 0;
}

.widget-takeover .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.widget-takeover p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-tickets {
    display: inline-block;
    background: white;
    /* color: var(--dolphins-orange); */
    padding: 8px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tickets:hover {
    /* background: rgba(255, 255, 255, 0.1); */
    transform: translateY(-2px);
    /* color: var(--dolphins-orange); */
}

/* Meetup Widget */
.meetup-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.meetup-details li {
    padding: 8px 0;
    color: var(--text-light);
}

.meetup-details i {
    color: var(--dolphins-teal);
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

.widget h3 {
    margin-top: 0;
}

.widget-title {
    color: var(--dolphins-dark-teal);
}

.btn-primary {
    display: inline-block;
    background: var(--dolphins-dark-teal);
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary:visited {
    color: white;
}

.btn-primary:hover {
    background: var(--dolphins-orange);
    transform: translateY(-2px);
    color: white;
}

/* Social Widget */
.social-links i {
    margin-right: 10px;
}
/* Links Widget */
.widget-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-links li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget-links li:last-child {
    border-bottom: none;
}

.widget-links a {
    color: var(--dolphins-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.widget-links a:hover {
    color: var(--dolphins-dark-teal);
    padding-left: 5px;
}

/* Archive Widget */
.widget-archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-archive li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget-archive li:last-child {
    border-bottom: none;
}

.widget-archive a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-archive a:hover {
    color: var(--dolphins-teal);
}



/* Responsive Design */
@media (max-width: 991px) {
    
    
    .dolfans-hero .site-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .dolfans-hero .site-title {
        font-size: 28px;
    }
}

.main-navigation {
    border-bottom: 2px solid var(--dolphins-teal);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: 1001;
}

@media (min-width: 768px) {
    .main-navigation {
        border-bottom: none;
        position: relative;
    }
}

#primary-menu {
    justify-content: space-between;
}

@media (min-width: 768px) {
    #primary-menu {
        border-bottom: 2px solid var(--dolphins-orange);
        margin-bottom: 20px;
    }
}

#primary-menu li {
    color: var(--dolphins-teal);
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    flex: 1;
    text-align: center;
}

#primary-menu li a {
    color: var(--dolphins-teal);
    text-decoration: none;
    padding: 10px 0;
    font-size: 19px;
    transition: 0.2s;
}

#primary-menu li a:hover {
    background-color: var(--dolphins-orange);
    color: white;
}


@media (min-width: 768px) {
    .post-content {
        width: calc(100% - 200px);
    }

    .post-thumbnail {
        height: 200px;
        width: 200px;
    }
}

.page-content, .entry-content, .entry-summary {
    margin: 16px 0;
}