/* Custom CSS for BrandShapers */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Logo styling */
.logo-icon {
    position: relative;
}

.logo-dot {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background-color: #facc15;
    border-radius: 50%;
}

.logo-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-bar {
    width: 24px;
    height: 8px;
    background-color: #facc15;
    border-radius: 4px;
}

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

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

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #facc15;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #eab308;
}

/* Form input focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Loading state for buttons */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Hero Section Styles */
.hero-gradient {
    background: linear-gradient(to right, #000000 0%, #1a1a1a 50%, #3d2817 100%);
}

.hero-illustration {
    filter: drop-shadow(0 10px 30px rgba(250, 204, 21, 0.3));
}

/* Brain animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.hero-illustration path[fill="#facc15"] {
    animation: pulse 3s ease-in-out infinite;
}

/* Who We Are Section Styles */
.who-we-are-image {
    filter: sepia(100%) saturate(200%) hue-rotate(15deg) brightness(0.7) contrast(1.2);
    transition: filter 0.3s ease;
}

.who-we-are-image:hover {
    filter: sepia(100%) saturate(220%) hue-rotate(15deg) brightness(0.75) contrast(1.3);
}

/* Form Styles */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23facc15' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
}

/* Services Section h3 and p Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-title-animate {
    animation: fadeInUp 2s ease-out forwards;
    opacity: 0;
}

.service-text-animate {
    animation: fadeInUp 2s ease-out 0.3s forwards;
    opacity: 0;
}

/* Print styles */
@media print {
    nav,
    footer,
    .no-print {
        display: none;
    }
}

