/* Custom Styles for Hydroponics Landing Page */

:root {
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --emerald: #28b463;
    --water-blue: #3498db;
    --cta-orange: #e67e22;
    --soft-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #2c3e50;
    --glass-bg: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Typography Accents */
.text-success-accent {
    color: var(--primary-green);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--emerald) 100%);
}

/* Layout Utilities */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: url('../assets/hero-bg.webp') no-repeat center center/cover;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Glassmorphism */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons & CTA */
.btn-cta {
    background-color: var(--cta-orange);
    border: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-cta:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    color: white;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Soft UI Components */
.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.bg-success-soft { background-color: rgba(46, 204, 113, 0.1); }
.bg-primary-soft { background-color: rgba(52, 152, 219, 0.1); }
.bg-warning-soft { background-color: rgba(241, 194, 5, 0.1); }

.card.hover-up {
    transition: all 0.3s ease;
}

.card.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: var(--bg-success-soft);
    color: var(--dark-green);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(46, 204, 113, 0.5);
}

/* Animations */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Avatar Group */
.avatar-group img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.ms-n2 {
    margin-left: -0.75rem !important;
}

/* Carousel Adjustments */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
}
