/* Custom CSS for Blue Ridge CodeWorks Website */

/* Icon Container Styles */
.icon-container {
    margin-bottom: 1rem;
    padding: 1.5rem;
    display: inline-block;
}

.icon-container i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .icon-container i {
    transform: scale(1.1);
}

/* Feature Cards */
.feature-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Hero Section Enhancements */
.hero.is-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero.is-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-body {
    position: relative;
    z-index: 1;
}

/* Button Enhancements */
.button.is-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
}

.button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.button.is-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.button.is-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 147, 251, 0.3);
    color: white;
}

/* Navigation Enhancements */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-item {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: #667eea !important;
}

/* Footer Enhancements */
.footer {
    background: #2c2c2c;
    color: #fff;
}

.footer .title {
    color: #ffffff !important;
    font-weight: 600;
}

.footer .title.is-5,
.footer .title.is-6 {
    color: #ffffff !important;
    opacity: 1;
}

.footer a {
    color: #667eea;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #764ba2;
}

/* Box Enhancements */
.box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero .title.is-1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle.is-4 {
        font-size: 1.2rem;
    }
    
    .icon-container {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero .title.is-1 {
        font-size: 2rem;
    }
    
    .hero .subtitle.is-4 {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom spacing */
.mb-6 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

/* Button Styles */
.button.is-large {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.button.is-large .icon {
    font-size: 1.5rem;
}

/* Section Backgrounds */
.has-background-light {
    background-color: #f8f9fa !important;
}

/* Typography Enhancements */
.title.is-1 {
    font-weight: 700;
    line-height: 1.2;
}

.title.is-2 {
    font-weight: 600;
    line-height: 1.3;
}

.subtitle.is-5 {
    font-weight: 400;
    opacity: 0.8;
}

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Content Section Styling */
.content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.content ul li {
    margin-bottom: 0.5rem;
}

/* Card Content Styling */
.card-content {
    padding: 2rem;
}

/* Icon Styling */
.fa-3x {
    font-size: 3rem;
}

.fa-4x {
    font-size: 4rem;
}

/* Product Card Styles */
.product-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card .card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: relative;
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: currentColor;
    opacity: 0.2;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}

/* Product Tags */
.product-card .tags {
    margin-top: 1rem;
}

.product-card .tag {
    margin: 0.25rem;
}

/* Logo Styles */
.navbar-logo {
    max-height: 2.5rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.navbar-item img.navbar-logo {
    padding: 0.25rem 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.hero-logo {
    position: absolute;
    width: 1200px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    opacity: 0.06;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.product-logo {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive logo adjustments */
@media screen and (max-width: 768px) {
    .navbar-logo {
        max-height: 2rem;
    }
    
    .product-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .hero-logo {
        width: 800px;
        left: -80px;
        opacity: 0.06;
    }
}

@media screen and (max-width: 480px) {
    .hero-logo {
        width: 500px;
        left: -40px;
        opacity: 0.06;
    }
}

