:root {
    --primary-color: #3273dc;
    --secondary-color: #209cee;
    --success-color: #48c774;
    --dark-color: #363636;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand .title {
    margin: 0;
    padding: 0.5rem 0;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Site logo (favicon) beside brand text */
.navbar .site-logo {
    height: 24px;
    width: 24px;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

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

.hero-with-background {
    position: relative;
    background-size: contain !important;
    background: #1a1a1a url('../images/12029.jpg') no-repeat 70% 28% !important;
    background-blend-mode: hard-light;
    min-height: 600px;  /* Ensure hero is tall enough to show more of the image */
}

.hero-with-background .hero-body {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem;  /* Add more padding to make hero taller */
}

.hero-with-background .title,
.hero-with-background .subtitle {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white !important;
}

.hero {
    position: relative;
    overflow: hidden;
}

/* Make sure these don't override the hero-with-background */
.hero.is-primary:not(.hero-with-background) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero.is-info {
    background: linear-gradient(135deg, #209cee 0%, #3273dc 100%);
}

.hero.is-info {
    background: linear-gradient(135deg, #209cee 0%, #3273dc 100%);
}

.hero.is-success {
    background: linear-gradient(135deg, #48c774 0%, #3ec46d 100%);
}

.box {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-box {
    height: 100%;
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
}

.service-box .icon {
    transition: transform 0.3s ease;
}

.service-box:hover .icon {
    transform: scale(1.1);
}

.service-detail {
    margin-bottom: 2rem;
    padding: 2rem;
}

.card {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.button {
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.is-rounded {
    border-radius: 50px;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .button {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-links .button:hover {
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
}

.footer {
    padding: 3rem 1.5rem;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.icon-text {
    align-items: center;
}

.tags .tag {
    font-weight: 600;
    padding: 0.75rem 1rem;
}

@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .service-box {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

.section {
    padding: 3rem 1.5rem;
}

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

.box, .card {
    animation: fadeIn 0.6s ease-out;
}

.content h3, .content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content ul {
    margin-top: 0.5rem;
}

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

.has-background-light {
    background-color: #f8f9fa !important;
}

input.input:focus, textarea.textarea:focus, select.select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.notification.is-primary {
    background-color: #3273dc;
    color: white;
}
