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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Top Bar ===== */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    border-bottom: 1px solid #eee;
}

.top-bar-left {
    display: flex;
    gap: 15px;
}

.top-bar-left button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #1a1a1a;
    padding: 5px;
}

.top-bar-center {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-bar-right .subscribe-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #1a1a1a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.top-bar-right .subscribe-btn:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* ===== Logo Section ===== */
.logo-section {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 10px;
}

.tagline {
    font-size: 11px;
    letter-spacing: 6px;
    color: #888;
    text-transform: uppercase;
}

.social-icons {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* ===== Main Navigation ===== */
.main-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0 30px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-menu li a {
    display: block;
    padding: 18px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

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

/* ===== Hero Section ===== */
.hero-section {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 30px;
    margin-bottom: 60px;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-article {
    display: flex;
    gap: 15px;
}

.sidebar-article .article-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.sidebar-article .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-article:hover .article-thumb img {
    transform: scale(1.05);
}

.sidebar-article .article-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.sidebar-article .article-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-all-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-top: auto;
}

/* Hero Main Featured */
.hero-main {
    position: relative;
}

.featured-article .featured-image {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.featured-article .featured-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.featured-article:hover .featured-image img {
    filter: grayscale(0%);
}

.featured-content {
    text-align: center;
    padding: 0 20px;
}

.category-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    margin-bottom: 15px;
}

.featured-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.featured-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.article-meta {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-meta .author {
    margin-right: 15px;
}

.article-meta .author a {
    color: #1a1a1a;
    font-weight: 600;
}

/* ===== Section Headers ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px solid #1a1a1a;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
}

.view-all {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}

/* ===== News Grid (World News) ===== */
.news-section {
    margin-bottom: 60px;
}

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

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card .news-image {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}

.news-card .news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.view-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.view-count i {
    margin-right: 5px;
}

.news-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
}

.news-meta .category {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
}

/* ===== Music Section ===== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.music-card {
    display: flex;
    flex-direction: column;
}

.music-card .music-image {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}

.music-card .music-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.music-card:hover .music-image img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-card:hover .play-icon {
    opacity: 1;
}

.music-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.music-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.music-meta {
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
}

.music-meta .category {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
}

/* ===== Opinion Section ===== */
.opinion-section {
    margin-bottom: 60px;
}

.opinion-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.opinion-image {
    display: block;
    overflow: hidden;
}

.opinion-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.opinion-article:hover .opinion-image img {
    filter: grayscale(0%);
}

.opinion-text {
    padding: 30px 0;
}

.opinion-text .category-label {
    margin-bottom: 20px;
}

.opinion-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.opinion-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.opinion-meta {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.opinion-meta .author {
    margin-left: 15px;
}

.opinion-meta .author a {
    color: #1a1a1a;
    font-weight: 600;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #1a1a1a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* ===== Interviews Section ===== */
.interviews-section {
    margin-bottom: 60px;
}

.interview-featured {
    margin-bottom: 30px;
}

.interview-main {
    position: relative;
    overflow: hidden;
}

.interview-main .interview-image {
    display: block;
}

.interview-main .interview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.interview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 60px 40px 40px;
    color: #fff;
    text-align: center;
}

.interview-overlay h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.interview-overlay .category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    margin-right: 15px;
}

.interview-overlay .date {
    font-size: 11px;
    letter-spacing: 1px;
    color: #ccc;
}

.interview-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.interview-overlay .read-more-btn {
    border-color: #fff;
    color: #fff;
}

.interview-overlay .read-more-btn:hover {
    background-color: #fff;
    color: #1a1a1a;
}

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

.interview-card {
    display: flex;
    gap: 25px;
    padding: 25px;
    border: 1px solid #eee;
}

.interview-card .interview-thumb {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.interview-card .interview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-content h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.interview-content .category {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    margin-bottom: 10px;
}

.interview-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.interview-content .read-more-btn {
    padding: 8px 20px;
    font-size: 10px;
}

/* ===== Latest Section ===== */
.latest-section {
    margin-bottom: 60px;
}

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

.latest-card {
    display: flex;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.latest-card .latest-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.latest-card .latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-card:hover .latest-image img {
    transform: scale(1.05);
}

.latest-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.latest-content .category {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    margin-right: 10px;
}

.latest-content .date {
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
}

.latest-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 10px 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-content .read-more-btn {
    padding: 8px 20px;
    font-size: 10px;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* ===== Footer ===== */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
}

.footer-nav {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.footer-copyright {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

/* ===== Responsive Design ===== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 180px 1fr 180px;
        gap: 20px;
    }
    
    .news-grid,
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        order: 2;
    }
    
    .hero-main {
        order: 1;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 3;
    }

    .sidebar-article {
        width: calc(50% - 12px);
    }

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

    .opinion-article {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .opinion-image img {
        height: 400px;
    }
    
    .opinion-text h2 {
        font-size: 32px;
    }

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

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

    .social-icons {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
    
    .logo-section {
        padding: 30px 20px;
    }
}

/* Small Tablets */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 15px;
    }
    
    .top-bar-center {
        display: none;
    }
    
    .logo {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    .main-nav {
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu {
        gap: 20px;
        justify-content: flex-start;
        min-width: max-content;
    }
    
    .nav-menu li a {
        padding: 15px 0;
        font-size: 11px;
        white-space: nowrap;
    }
    
    .main-content {
        padding: 30px 15px;
    }

    .sidebar-article {
        width: 100%;
    }

    .featured-content h1 {
        font-size: 28px;
    }
    
    .featured-article .featured-image img {
        height: 350px;
    }
    
    .section-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .news-grid,
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card .news-image img,
    .music-card .music-image img {
        height: 220px;
    }

    .opinion-text h2 {
        font-size: 26px;
    }
    
    .opinion-image img {
        height: 300px;
    }

    .interview-overlay h3 {
        font-size: 22px;
    }
    
    .interview-main .interview-image img {
        height: 400px;
    }
    
    .interview-overlay {
        padding: 40px 20px 30px;
    }

    .interview-card {
        flex-direction: column;
        padding: 20px;
    }

    .interview-card .interview-thumb {
        width: 100%;
        height: 200px;
    }

    .latest-card {
        flex-direction: column;
        gap: 15px;
    }

    .latest-card .latest-image {
        width: 100%;
        height: 200px;
    }
    
    .latest-content h3 {
        font-size: 18px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .site-footer {
        padding: 40px 20px;
    }
    
    .footer-logo a {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .top-bar {
        padding: 8px 10px;
    }
    
    .top-bar-left {
        gap: 10px;
    }
    
    .top-bar-left button {
        font-size: 16px;
    }
    
    .top-bar-right .subscribe-btn {
        padding: 6px 12px;
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .logo-section {
        padding: 20px 15px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 7px;
        letter-spacing: 1px;
    }
    
    .social-icons {
        gap: 5px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .main-content {
        padding: 20px 10px;
    }
    
    .section-header {
        padding: 15px 0;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .section-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .view-all {
        font-size: 10px;
    }

    .featured-article .featured-image img {
        height: 250px;
    }
    
    .featured-content {
        padding: 0 10px;
    }
    
    .featured-content h1 {
        font-size: 22px;
    }
    
    .featured-content p {
        font-size: 14px;
    }
    
    .sidebar-article .article-thumb {
        width: 70px;
        height: 70px;
    }
    
    .sidebar-article .article-content h3 {
        font-size: 13px;
    }
    
    .sidebar-article .article-content p {
        font-size: 11px;
    }
    
    .news-content h3,
    .music-content h3 {
        font-size: 16px;
    }
    
    .news-content p,
    .music-content p {
        font-size: 12px;
    }

    .interview-main .interview-image img {
        height: 300px;
    }

    .interview-overlay {
        padding: 30px 15px 20px;
    }

    .interview-overlay h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .interview-overlay p {
        font-size: 12px;
    }
    
    .interview-card {
        padding: 15px;
    }
    
    .interview-content h4 {
        font-size: 16px;
    }
    
    .opinion-text h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .opinion-image img {
        height: 250px;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 10px;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 10px;
    }
    
    .footer-logo a {
        font-size: 20px;
    }
    
    .footer-nav {
        gap: 10px;
    }
    
    .footer-nav a {
        font-size: 11px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .tagline {
        display: none;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu li a {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .featured-content h1 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
}

/* ===== Desktop Search Bar ===== */
.search-icon {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.search-icon button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 5px;
}

.search-icon button:hover {
    color: #666;
}

.desktop-search {
    display: none;
    background: #f8f8f8;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.desktop-search.active {
    display: block;
}

.desktop-search form {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.desktop-search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
}

.desktop-search-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.desktop-search button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #888;
}

.desktop-search button:hover {
    color: #1a1a1a;
}

/* ===== Desktop Dropdown Navigation ===== */
.nav-menu li {
    position: relative;
}

.nav-menu li a i {
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid #f5f5f5;
}

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

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f8f8f8;
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 5px;
}

/* Mobile Search */
.mobile-search {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-search form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.mobile-search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    font-family: inherit;
}

.mobile-search-input:focus {
    outline: none;
}

.mobile-search button {
    background: none;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    cursor: pointer;
    color: #888;
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    padding: 10px 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-nav-list li a {
    display: block;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.mobile-nav-list li.has-dropdown .dropdown-toggle {
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px 20px;
    cursor: pointer;
    color: #888;
}

.mobile-nav-list li.has-dropdown .dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-nav-list li.has-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Social */
.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.mobile-social .social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1a1a1a;
}

/* Desktop Only */
.desktop-only {
    display: block;
}

/* ===== Mobile Responsive Updates ===== */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .social-icons {
        display: none;
    }
    
    .logo-section {
        padding: 25px 15px;
    }
    
    .logo {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .tagline {
        font-size: 9px;
        letter-spacing: 3px;
    }
    
    .top-bar {
        padding: 10px 15px;
    }
    
    .top-bar-center {
        font-size: 11px;
    }
    
    .subscribe-btn {
        padding: 6px 12px !important;
        font-size: 10px !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}
