/* Custom Styles for Designers In Orlando */

:root {
    /* Brand Colors */
    --navy: #1e3a5f;
    --navy-light: #2d4f7a;
    --coral: #ff6b4a;
    --coral-dark: #e55a3a;
    --cream: #faf8f3;
    --cream-dark: #f0ede4;
    --teal: #2d9b8a;
    --gold: #f5a623;
    --primary: #1e3a5f;
    --primary-foreground: #ffffff;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 80px; /* Account for fixed header */
}

/* Header Styles */
.logo-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--coral) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--coral);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-coral {
    background-color: var(--coral);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 107, 74, 0.25);
}

.btn-coral:hover {
    background-color: var(--coral-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.35);
}

/* Background Gradients */
.bg-navy-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
}

footer.bg-navy-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
}

.bg-cta-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}

.bg-cream-section {
    background-color: var(--cream-dark);
}

.bg-gradient-coral-teal {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.2) 0%, rgba(45, 155, 138, 0.2) 100%);
}

/* Text Colors */
.text-coral {
    color: var(--coral) !important;
}

.text-teal {
    color: var(--teal) !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* Hover Effects */
.hover-coral:hover {
    color: var(--coral) !important;
    transition: color 0.2s;
}

.hover-card {
    transition: all 0.3s;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.hover-industry {
    transition: all 0.3s;
}

.hover-industry:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 107, 74, 0.5) !important;
}

.hover-industry:hover .industry-icon {
    background-color: var(--coral) !important;
    transform: scale(1.1);
}

.hover-industry:hover .industry-icon i {
    color: white !important;
}

.hover-city {
    transition: all 0.2s;
    cursor: pointer;
}

.hover-city:hover {
    background-color: rgba(255, 107, 74, 0.1) !important;
    color: var(--coral) !important;
}

.hover-benefit {
    transition: all 0.2s;
}

.hover-benefit:hover {
    background-color: rgba(255, 107, 74, 0.05) !important;
}

/* Icons */
.service-icon {
    width: 56px;
    height: 56px;
}

.stat-icon {
    width: 64px;
    height: 64px;
}

.industry-icon {
    width: 48px;
    height: 48px;
}

/* Social Links */
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: var(--coral);
    color: white;
}

/* Decorative Elements */
.decorative-blur {
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

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

.bounce-animation {
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Breadcrumb Styles for Dark Backgrounds */
.bg-navy-gradient .breadcrumb-item + .breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "/");
    color: rgba(255, 255, 255, 0.5);
    padding: 0 0.5rem;
}

.bg-navy-gradient .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* Utility Classes */
.start-n8 {
    left: -2rem;
}

.end-n4 {
    right: -1rem;
}

.top-25 {
    top: 25%;
}

.bottom-25 {
    bottom: 25%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .decorative-blur {
        width: 256px;
        height: 256px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 70px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}


