/* Global Styles */
:root {
    --primary-color: #dc3545;
    --secondary-color: #212529;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: 76px; /* For fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.btn {
    padding: 0.8rem 2rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Navbar */
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    position: relative;
    z-index: 1031;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-collapse {
    z-index: 1029;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--dark-color) !important;
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: white;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://picsum.photos/1920/1080?category=business') no-repeat center center;
    background-size: cover;
    padding: 6rem 0 3rem;
    color: white;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.8), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.play-btn {
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    background-color: white;
    color: var(--primary-color);
    border: none;
    transition: var(--transition);
}

.play-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Value Proposition */
#value-prop {
    background-color: var(--primary-color);
    color: white;
}

/* Service Sections */
.section-heading {
    font-weight: 800;
    margin-bottom: 2rem;
}

#digital, #print, #strategy, #apparel, #integrated {
    padding: 5rem 0;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Brands Section */
#brands img {
    opacity: 0.8;
    transition: var(--transition);
}

#brands img:hover {
    opacity: 1;
}

/* Locations Section */
#locations .card {
    min-height: 200px;
}

/* CTA Section */
#cta {
    background-color: var(--primary-color);
}

/* Social Icons */
.social-icons a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 992px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    #hero {
        padding-top: 7rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    #hero, #digital, #print, #strategy, #apparel, #integrated {
        padding: 3rem 0;
    }
}

/* Remove fade-in animations */ 