/*
Theme Name: UU Theme
Theme URI: https://tech.mydharm.com
Author: myDharm Technologies
Author URI: https://tech.mydharm.com
Description: A modern, responsive WordPress theme for Udaipur News website with mobile-friendly design and clean layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uu_theme
Tags: news, responsive, mobile-friendly, custom-menu, featured-images
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Merriweather:wght@700;900&family=Libre+Baskerville:wght@700&family=Crimson+Text:wght@700&family=Lora:wght@700&display=swap');

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
.header {
    width: 100%;
    margin: 0;
    padding: 30px 0 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.site-title {
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.site-title a {
    color: #003366;
    text-decoration: none;
}

.custom-logo {
    max-height: 100px;
    width: auto;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #003366;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.header-separator {
    width: 100%;
    height: 2px;
    background-color: #e60000;
    margin-bottom: 20px;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    padding: 10px 0;
    width: 100%;
    position: relative;
    z-index: 999;
}

.nav-link,
.navigation a {
    color: #003366;
    text-decoration: none;
    font-size: 1.0925rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover,
.navigation a:hover {
    color: #e60000;
}

.nav-link.active,
.navigation .current-menu-item a,
.navigation .current_page_item a {
    color: #e60000;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1200&h=500&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 800px;
    padding: 0;
    text-align: left;
    color: white;
    margin: 0;
}

.breaking-news-tag {
    display: inline-block;
    background-color: #e60000;
    color: white;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-excerpt {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.read-more-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background: white;
    color: #003366;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Latest News Section */
.latest-news-section {
    width: 100%;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 30px;
    text-align: left;
}

.section-title-right {
    text-align: right;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #e60000;
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 20px;
}

.news-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-headline a {
    color: #003366;
    text-decoration: none;
}

.news-headline a:hover {
    color: #e60000;
}

.news-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more-link {
    color: #e60000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #ff0000;
    text-decoration: underline;
}

/* Classifieds Section */
.classifieds-section {
    width: 100%;
}

.classified-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.classified-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 20px;
}

.classified-list {
    list-style: none;
    margin-bottom: 20px;
}

.classified-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 10px;
}

.classified-item:last-child {
    border-bottom: none;
}

.classified-text {
    flex: 1;
    font-size: 0.9rem;
    color: #003366;
}

.classified-date {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}

.arrow-icon {
    color: #e60000;
    font-size: 1.2rem;
    margin-left: 10px;
}

.view-all-btn {
    width: 100%;
    background: transparent;
    border: 2px solid #e60000;
    color: #e60000;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-all-btn:hover {
    background: #e60000;
    color: white;
}

/* Inner Page Styles */
.page-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #e60000 0%, #ff0000 100%);
    border-radius: 8px;
}

.page-header-content {
    color: white;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Filter Section */
.filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #003366;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #e60000;
    color: #e60000;
}

.filter-btn.active {
    background: #e60000;
    border-color: #e60000;
    color: white;
}

/* Content Wrapper Full */
.content-wrapper-full {
    width: 100%;
}

/* News Grid Full */
.news-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.place-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.place-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e60000;
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
}

.place-content {
    padding: 20px;
}

.place-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 8px;
    line-height: 1.3;
}

.place-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    display: block;
}

.place-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.place-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.place-time {
    font-size: 0.85rem;
    color: #666;
}

.place-rating {
    font-size: 0.9rem;
    color: #e60000;
    font-weight: 600;
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-date {
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e60000;
    color: white;
    padding: 20px;
    text-align: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.event-image {
    position: relative;
    width: 250px;
    min-width: 250px;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e60000;
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
}

.event-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.event-location,
.event-time,
.event-celebrity {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.event-date-display {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.event-price {
    font-size: 1rem;
    font-weight: 600;
    color: #e60000;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #003366;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: #e60000;
    color: #e60000;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-number {
    background: white;
    border: 2px solid #e0e0e0;
    color: #003366;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 45px;
}

.pagination-number:hover {
    border-color: #e60000;
    color: #e60000;
}

.pagination-number.active {
    background: #e60000;
    border-color: #e60000;
    color: white;
}

.pagination-dots {
    padding: 10px 5px;
    color: #666;
}

/* Category Tag Variations */
.category-tag.tourism {
    background-color: #0066cc;
}

/* Classifieds Page Styles */
.classifieds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.classified-card-large {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.classified-card-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.classified-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e60000;
}

.classified-count {
    background: #e60000;
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
}

/* Festivals Page Styles */
.festivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.festival-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.festival-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e60000;
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
}

.festival-content {
    padding: 20px;
}

.festival-date-range {
    margin-bottom: 10px;
}

.festival-month {
    font-size: 0.85rem;
    color: #e60000;
    font-weight: 600;
    text-transform: uppercase;
}

.festival-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
    line-height: 1.3;
}

.festival-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.festival-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.highlight-tag {
    background: #f8f8f8;
    color: #e60000;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

/* Foods Page Styles */
.foods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.food-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.food-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e60000;
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
}

.food-content {
    padding: 20px;
}

.food-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
    line-height: 1.3;
}

.food-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.food-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.food-type {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.food-rating {
    font-size: 0.9rem;
    color: #e60000;
    font-weight: 600;
}

/* Shilpgram Page Styles */
.shilpgram-hero {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shilpgram-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shilpgram-about {
    margin-bottom: 40px;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60000;
}

.section-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.shilpgram-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 10px;
}

.info-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.shilpgram-festival {
    margin-bottom: 40px;
}

.festival-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.festival-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.festival-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.festival-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.festival-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e60000;
    font-weight: 700;
}

.shilpgram-gallery {
    margin-bottom: 40px;
}

.gallery-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.gallery-carousel {
    overflow: hidden;
    position: relative;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 0, 0, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: rgba(230, 0, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn span {
    line-height: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e60000;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(230, 0, 0, 0.5);
}

.carousel-dot.active {
    background: #e60000;
    width: 30px;
    border-radius: 6px;
}

/* Gallery Lightbox Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.lightbox-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(230, 0, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev span,
.lightbox-next span {
    display: block;
}

/* About Page Styles */
.about-section {
    margin-bottom: 50px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.coverage-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.coverage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.coverage-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
}

.coverage-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 12px;
}

.value-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Footer Styles */
.footer {
    background-color: #003366;
    color: #f8f8f8;
    margin-top: 60px;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e60000;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Single Post Styles */
.single-post {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.single-post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.single-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.single-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.2;
}

.single-post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
}

.post-category {
    color: #e60000;
    font-weight: 600;
}

.single-post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #003366;
    font-weight: 700;
}

.single-post-content h2 {
    font-size: 2rem;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

.single-post-content h4 {
    font-size: 1.2rem;
}

/* Event Details Box on Single Post */
.event-details-box {
    background: #f8f8f8;
    border-left: 4px solid #e60000;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.event-details-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.event-details-grid {
    display: grid;
    gap: 20px;
}

.event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.event-detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.event-detail-content {
    flex: 1;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.event-detail-content strong {
    color: #003366;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.event-map-link {
    color: #e60000;
    text-decoration: none;
    margin-left: 5px;
    font-size: 0.9rem;
}

.event-map-link:hover {
    text-decoration: underline;
}

.single-post-content ul,
.single-post-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.page-content {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-quote {
    border-left: 4px solid #e60000;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
}

.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.page-links a {
    color: #e60000;
    text-decoration: none;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #e60000;
    border-radius: 4px;
}

.page-links a:hover {
    background: #e60000;
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title-right {
        text-align: left;
    }

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

    .news-grid-full,
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .classifieds-grid,
    .festivals-grid,
    .foods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shilpgram-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .festival-content {
        grid-template-columns: 1fr;
    }

    .gallery-carousel-wrapper {
        padding: 0 40px;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .values-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .event-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
        margin-top: 20px;
        position: relative;
        z-index: 998;
        background-color: #f8f8f8;
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navigation.nav-open {
        display: flex;
    }

    .nav-link,
    .navigation a {
        font-size: 0.9775rem;
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
        width: 100%;
    }

    .nav-link:last-child,
    .navigation a:last-child {
        border-bottom: none;
    }

    .hero-image {
        height: 400px;
    }

    .hero-content {
        bottom: 30px;
        left: 30px;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

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

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

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

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

    .news-grid-full,
    .places-grid {
        grid-template-columns: 1fr;
    }

    .filter-section {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .classifieds-grid,
    .festivals-grid,
    .foods-grid,
    .features-grid,
    .coverage-grid,
    .gallery-carousel-wrapper {
        padding: 0 35px;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .shilpgram-info {
        grid-template-columns: 1fr;
    }

    .shilpgram-hero {
        height: 300px;
    }

    .footer {
        padding: 40px 20px 20px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-heading {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 15px 15px;
    }

    .site-title {
        font-size: 1.6rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
        margin-top: 20px;
    }

    .navigation.nav-open {
        display: flex;
    }

    .nav-link,
    .navigation a {
        font-size: 0.8625rem;
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
        width: 100%;
    }

    .nav-link:last-child,
    .navigation a:last-child {
        border-bottom: none;
    }

    .hero-section {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .hero-image {
        height: 350px;
    }

    .hero-content {
        bottom: 25px;
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .hero-headline {
        font-size: 1.4rem;
    }

    .hero-excerpt {
        font-size: 0.9rem;
    }

    .read-more-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }

    .main-content {
        padding: 0 15px 30px;
    }

    .content-wrapper {
        gap: 30px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .news-grid {
        gap: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 15px;
    }

    .news-headline {
        font-size: 1.1rem;
    }

    .classified-card {
        padding: 20px;
    }

    .classified-title {
        font-size: 1.1rem;
    }

    .classified-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .arrow-icon {
        align-self: flex-end;
        margin-left: 0;
    }

    .page-header {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .event-date {
        padding: 12px;
    }

    .event-day {
        font-size: 1.5rem;
    }

    .event-image {
        height: 200px;
    }

    .event-title {
        font-size: 1.2rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .event-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-numbers {
        flex-wrap: wrap;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .feature-icon,
    .coverage-icon {
        font-size: 2.5rem;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-item-title {
        font-size: 0.9rem;
    }

    /* Lightbox responsive */
    .lightbox-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .lightbox-image {
        max-height: 75vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
        top: 10px;
        right: 10px;
    }

    .lightbox-title {
        font-size: 1rem;
    }

    .footer {
        padding: 30px 15px 15px;
        margin-top: 30px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-text,
    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }
}

