/* Custom geometric shapes and animations */
.geo-shape {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #FF6B4A;
    border-radius: 50%;
    top: 15%;
    right: -5%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #1E1E1E;
    border-radius: 50%;
    bottom: 20%;
    left: -3%;
}

.square-1 {
    width: 150px;
    height: 150px;
    background: #FF6B4A;
    top: 60%;
    right: 10%;
    transform: rotate(45deg);
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid #FF6B4A;
    top: 40%;
    left: 5%;
    opacity: 0.1;
}

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

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

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

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 1s;
}

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

/* Mobile menu transitions */
#mobileMenu {
    animation: slideDown 0.3s ease-out;
}

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

/* Form focus styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.2);
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .square-1 {
        width: 80px;
        height: 80px;
    }
    
    .triangle-1 {
        border-left-width: 40px;
        border-right-width: 40px;
        border-bottom-width: 70px;
    }
}
