/* Web Presence Pro - Refined Styles */

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1e293b;
    font-size: 17px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Fixed navigation bar - merged header and nav */
nav.fixed-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

main {
    padding-top: 80px;
}

/* Larger logo */
.logo-img {
    height: 40px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Service card hover effects */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Gradient animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Button hover effects */
a.bg-accent:hover {
    filter: brightness(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    nav.fixed-nav {
        height: 64px;
    }
    
    .logo-img {
        height: 36px;
    }
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}