/*
Theme Name: TSN Nimble Pro
Theme URI: https://tsncommunications.com
Description: A high-performance, modern virtual agency child theme for Divi.
Author: AI Design Assistant
Template: Divi
Version: 1.0.0
*/

/* --- 1. CONTINUOUS LOGO MARQUEE --- */
/* Add the class 'tsn-marquee' to your Row in Divi */
.tsn-marquee .et_pb_column {
    display: flex !important;
    align-items: center;
    justify-content: space-around;
    width: 200% !important; /* Stretch to allow movement */
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tsn-marquee:hover .et_pb_column {
    animation-play-state: paused;
}

/* --- 2. BENTO GRID CARDS --- */
/* Add the class 'tsn-bento' to a Row */
.tsn-bento .et_pb_column {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.tsn-bento .et_pb_column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #007bff; /* Your Brand Color */
}

/* --- 3. MODERN TYPOGRAPHY --- */
h1, h2, h3 {
    font-weight: 800 !important;
    letter-spacing: -1px;
    text-transform: none;
}

/* --- 4. THE STICKY NAV MORPH --- */
.et-fixed-header {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}