/* BEIGE THEME 3: Rich Coffee Beige with Emerald Green */
/* Luxurious theme with rich coffee/mocha beiges and vibrant emerald green accents */

/* Body and base styles */
body {
    background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc6 25%, #f0e6d2 50%, #e8dcc6 75%, #f4f1e8 100%);
    font-family: 'Playfair Display', 'Georgia', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2c1810;
    min-height: 100vh;
}

/* Page wrapper */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 0 15px;
    }
    
    .layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Header - Rich coffee beige with emerald accents */
.site-header {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    border: 2px solid #c8a882;
    border-radius: 15px;
    padding: 28px 38px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.2);
    position: relative;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #047857 0%, #059669 25%, #10b981 50%, #059669 75%, #047857 100%);
    background-size: 200% 100%;
    animation: emeraldFlow 4s ease-in-out infinite;
    border-radius: 15px 15px 0 0;
}

@keyframes emeraldFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.header-content-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Legacy support for header-top class */
.header-top {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.site-logo {
    height: 78px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(4, 120, 87, 0.3));
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(4, 120, 87, 0.4));
}

.site-title {
    font-size: 3.38em;
    font-weight: 700;
    background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 3px 6px rgba(4, 120, 87, 0.25);
    display: inline-block;
}

.site-title a {
    color: inherit;
    text-decoration: none;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navigation {
    border-top: 2px solid #d4a574;
    padding-top: 18px;
}

.nav-menu {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: #6b4423;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.456em;
    padding: 14px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8dcc6 0%, #d4a574 100%);
    border: 2px solid #c8a882;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.15);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 120, 87, 0.35);
    border-color: #10b981;
}

/* Main Layout */
.main-content {
    margin: 0;
}

.layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}

/* Section containers - Rich coffee cards with emerald accents */
.section-container {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    padding: 32px;
    border-radius: 15px;
    border: 2px solid #d4a574;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
    position: relative;
}

.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #047857 0%, #059669 50%, #10b981 100%);
    border-radius: 15px 15px 0 0;
}

.section-container h1,
.section-container h2 {
    margin-top: 0;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-container h1 {
    font-size: 2.2em;
    border-bottom: 3px solid #d4a574;
    padding-bottom: 15px;
}

/* Fix bullet point indentation */
.section-container ul {
    padding-left: 32px;
    margin-left: 0;
}

.section-container li {
    margin-bottom: 14px;
    color: #4a3018;
}

.section-container li::marker {
    color: #047857;
}

/* News article logo styling */
.news-logo {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 22px;
    border-radius: 10px;
    border: 2px solid #c8a882;
    padding: 10px;
    background: #f7f3e9;
    box-shadow: 0 6px 15px rgba(139, 115, 85, 0.2);
}

/* Sidebar - Deeper coffee tones */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar .section-container {
    background: linear-gradient(135deg, #e8dcc6 0%, #d4a574 100%);
    border-color: #c8a882;
}

/* Buttons - Emerald green luxury style */
.btn {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    border: 2px solid transparent;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 1.05em;
    box-shadow: 0 6px 18px rgba(4, 120, 87, 0.35);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    color: #047857;
    border-color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4, 120, 87, 0.4);
}

/* Video grid - Luxurious coffee cards */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.video-card {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #d4a574;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: #047857;
    box-shadow: 0 15px 35px rgba(4, 120, 87, 0.25);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio fallback */
}

/* Modern browsers with aspect-ratio support */
@supports (aspect-ratio: 16/9) {
    .video-thumbnail {
        height: auto;
        padding-bottom: 0;
    }
}

.thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: sepia(15%) saturate(1.15) brightness(1.02);
}

/* Modern browsers with aspect-ratio support */
@supports (aspect-ratio: 16/9) {
    .thumbnail-image {
        position: static;
    }
}

.video-card:hover .thumbnail-image {
    transform: scale(1.08);
    filter: sepia(10%) saturate(1.25) brightness(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    border: 3px solid #f7f3e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(4, 120, 87, 0.4);
}

.play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid #f7f3e9;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.video-card:hover .play-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(52, 211, 153, 0.95) 100%);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 30px rgba(4, 120, 87, 0.5);
}

.video-info {
    padding: 22px;
}

.video-title {
    margin: 0 0 14px 0;
    font-size: 1.15em;
    font-weight: 700;
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.video-date {
    margin: 0;
    color: #8b7355;
    font-size: 0.92em;
    font-weight: 500;
    font-style: italic;
}

/* News grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.news-card {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    border-radius: 15px;
    padding: 28px;
    border: 2px solid #d4a574;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #047857;
    box-shadow: 0 15px 35px rgba(4, 120, 87, 0.2);
}

.news-link {
    text-decoration: none;
    color: inherit;
}

.news-title {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    font-size: 1.35em;
    font-weight: 700;
}

.news-date {
    color: #8b7355;
    font-size: 0.9em;
    margin-bottom: 18px;
    font-weight: 500;
    font-style: italic;
}

.news-excerpt {
    color: #4a3018;
    line-height: 1.7;
    margin-bottom: 18px;
}

.read-more {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
    font-size: 1.15em;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #e8dcc6 0%, #d4a574 100%);
    color: #6b4423;
    padding: 45px 0;
    margin-top: 55px;
    text-align: center;
    border-top: 5px solid #047857;
    box-shadow: 0 -6px 20px rgba(139, 115, 85, 0.15);
}

.site-footer a {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Additional image sizing fixes */
.ad-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ad-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.2);
}

.ad-card:hover .ad-image {
    transform: scale(1.02);
}

/* Ensure logo sizing is enforced */
.site-logo,
.site-logo img {
    height: 78px !important;
    width: auto !important;
    max-height: 78px !important;
    max-width: none !important;
}

/* Sidebar menu styling */
.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu a {
    color: #6b4423;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8dcc6 0%, #d4a574 100%);
    border: 1px solid #c8a882;
    transition: all 0.3s ease;
    text-align: center;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
}

.centered {
    text-align: center;
}

/* ===== TOOL STYLING - BEIGE EMERALD THEME ===== */

/* eBay Title Tool Styling */
.tool-container {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    border: 2px solid #c8a882;
    border-radius: 15px;
    padding: 35px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.2);
    position: relative;
}

.tool-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #047857 0%, #059669 50%, #10b981 100%);
    border-radius: 15px 15px 0 0;
}

.tool-header {
    text-align: center;
    margin-bottom: 30px;
}

.tool-title {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2em;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.tool-subtitle {
    color: #8b7355;
    font-size: 1em;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.tool-input-section {
    margin-bottom: 25px;
}

.tool-textarea {
    width: 100%;
    min-height: 120px;
    padding: 20px;
    border: 2px solid #d4a574;
    border-radius: 12px;
    background: linear-gradient(135deg, #faf7ea 0%, #f5f1e8 100%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1em;
    color: #4a3018;
    resize: vertical;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 8px rgba(139, 115, 85, 0.1);
}

.tool-textarea:focus {
    outline: none;
    border-color: #047857;
    box-shadow: 
        inset 0 2px 8px rgba(139, 115, 85, 0.1),
        0 0 0 3px rgba(4, 120, 87, 0.1);
}

.tool-textarea::placeholder {
    color: #a0927d;
    font-style: italic;
}

.tool-button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tool-btn {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(4, 120, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.tool-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tool-btn:hover::before {
    left: 100%;
}

.tool-btn:hover {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    color: #047857;
    border-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

.copy-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(4, 120, 87, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.copy-feedback.show {
    opacity: 1;
    visibility: visible;
}

/* Task Timer Styling */
.timer-container {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    border: 2px solid #c8a882;
    border-radius: 15px;
    padding: 35px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.2);
    position: relative;
    text-align: center;
}

.timer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #047857 0%, #059669 50%, #10b981 100%);
    border-radius: 15px 15px 0 0;
}

.timer-header {
    margin-bottom: 30px;
}

.timer-title {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2em;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.timer-subtitle {
    color: #8b7355;
    font-size: 1em;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.time-inputs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.time-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.time-label {
    color: #6b4423;
    font-weight: 700;
    font-size: 1.1em;
}

.time-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e8dcc6 0%, #d4a574 100%);
    border: 2px solid #c8a882;
    border-radius: 12px;
    padding: 10px 15px;
}

.time-btn {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.time-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(4, 120, 87, 0.4);
}

.time-display {
    font-size: 1.8em;
    font-weight: 700;
    color: #4a3018;
    min-width: 50px;
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    border: 2px solid #d4a574;
    border-radius: 8px;
    padding: 8px 12px;
}

.timer-display {
    font-size: 3em;
    font-weight: 700;
    color: #047857;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #e8dcc6 0%, #d4a574 100%);
    border: 3px solid #c8a882;
    border-radius: 15px;
    text-shadow: 0 2px 4px rgba(4, 120, 87, 0.2);
    box-shadow: inset 0 2px 8px rgba(139, 115, 85, 0.1);
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.timer-btn {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    border: 2px solid transparent;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(4, 120, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.timer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.timer-btn:hover::before {
    left: 100%;
}

.timer-btn:hover {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    color: #047857;
    border-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

.tip {
    color: #8b7355;
    font-size: 0.9em;
    font-weight: 600;
    font-style: italic;
    margin-top: 15px;
    padding: 15px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 8px;
    border-left: 4px solid #047857;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    margin: 15% auto;
    padding: 35px;
    border: 2px solid #c8a882;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #047857 0%, #059669 50%, #10b981 100%);
    border-radius: 15px 15px 0 0;
}

.modal-content h2 {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    margin: 0 0 15px 0;
}

.modal-content p {
    color: #6b4423;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.modal-btn {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #f7f3e9;
    border: 2px solid transparent;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(4, 120, 87, 0.3);
}

.modal-btn:hover {
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    color: #047857;
    border-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

/* Grand Opening Banner */
.grand-opening-banner {
    background: linear-gradient(135deg, #016701 0%, #018a01 50%, #016701 100%);
    color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(1, 103, 1, 0.3);
    animation: fadeInSlide 0.6s ease-out;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.banner-emoji {
    font-size: 2em;
    animation: bounce 1s ease-in-out infinite;
}

.banner-text {
    font-size: 1.2em;
    text-align: center;
    line-height: 1.4;
}

.banner-text strong {
    font-size: 1.3em;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .grand-opening-banner {
        padding: 16px 12px;
    }
    
    .banner-emoji {
        font-size: 1.5em;
    }
    
    .banner-text {
        font-size: 1em;
    }
    
    .banner-text strong {
        font-size: 1.2em;
    }
}

/* Custom adjustments for play button */
.play-overlay {
    width: 80px !important;
    height: 80px !important;
    opacity: 0.75 !important;
}

.play-overlay:hover {
    opacity: 0.9 !important;
}

/* Make tool cards look more clickable */
.tool-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(4, 120, 87, 0.25);
}

.tool-card h3 {
    color: #047857;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.tool-card:hover h3 {
    text-decoration-color: #047857;
}

/* Vertical news layout with accent lines */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 30px 0;
    box-shadow: none;
    border-bottom: 3px solid #047857;
    transition: all 0.3s ease;
}

.news-card:last-child {
    border-bottom: none;
}

.news-card:hover {
    transform: none;
    padding-left: 10px;
    background: rgba(4, 120, 87, 0.03);
}

.news-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.news-logo {
    max-width: 100px;
    height: auto;
    flex-shrink: 0;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-info {
    flex: 1;
}

.news-title {
    color: #047857;
    font-size: 1.4rem;
    margin: 0 0 8px 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #059669;
    text-decoration: underline;
}

.news-date {
    color: #8b7355;
    font-size: 0.9rem;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.news-excerpt {
    color: #2c1810;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.read-more {
    color: #047857;
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.news-card:hover .read-more {
    text-decoration: underline;
}

/* Update news link to be vertical (no flex) */
.news-link {
    display: block;
}

.news-logo {
    display: none; /* Hide logos on card views */
}

/* Simplified text-based navigation */
.main-navigation .nav-menu {
    display: flex;
    gap: 30px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-item {
    margin: 0;
}

.main-navigation .nav-item a {
    color: #2c1810;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.main-navigation .nav-item a:hover {
    color: #047857;
    border-bottom-color: #047857;
}

.main-navigation .nav-item.active a {
    color: #047857;
    border-bottom-color: #047857;
}

/* Simplified sidebar menu */
.sidebar-menu a {
    display: block;
    text-align: left;
    background: transparent;
    color: #2c1810;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: none;
    border-bottom: 2px solid #e8dcc6;
    transition: all 0.3s ease;
}

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

.sidebar-menu a:hover {
    background: transparent;
    color: #047857;
    padding-left: 10px;
    box-shadow: none;
}

.sidebar-menu a.active {
    color: #047857;
    font-weight: 700;
}

/* Remove button containers, make links chunky text */
.main-navigation .nav-menu {
    background: transparent;
    padding: 0;
}

.main-navigation .nav-item a {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 16px !important;
    color: #2c1810;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation .nav-item a:hover {
    color: #047857;
    background: transparent !important;
    border-bottom: none !important;
}

.main-navigation .nav-item.active a {
    color: #047857;
    border-bottom: none !important;
}

/* Remove sidebar menu card container styling */
.menu-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.menu-card h2 {
    display: none; /* Hide "Menu" heading */
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.sidebar-menu a {
    background: transparent !important;
    border: none !important;
    border-bottom: none !important;
    padding: 8px 0 !important;
    color: #2c1810;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none !important;
    transition: color 0.3s ease;
}

.sidebar-menu a:hover {
    color: #047857;
    padding-left: 0 !important;
    background: transparent !important;
}

.sidebar-menu a.active {
    color: #047857;
}

/* Improve sidebar heading visibility */
.sidebar .section-container h2 {
    color: #2c1810 !important;
    font-weight: 700;
    font-size: 1.3rem;
}

.sidebar .section-container h2.centered {
    text-align: center;
}
