/* Professional Ferdium Website Styles */

/* Container and Layout */
.container {
    max-width: 1280px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Professional Section Spacing */
section {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Better Typography */
p {
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

/* Professional Card Styling */
.card {
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Professional Shadows */
.shadow-professional {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive Text Sizes */
@media (max-width: 640px) {
    .text-responsive-xl {
        font-size: 1.5rem;
    }
    
    .text-responsive-2xl {
        font-size: 2rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .text-responsive-xl {
        font-size: 2rem;
    }
    
    .text-responsive-2xl {
        font-size: 2.5rem;
    }
}

@media (min-width: 1025px) {
    .text-responsive-xl {
        font-size: 2.5rem;
    }
    
    .text-responsive-2xl {
        font-size: 3rem;
    }
}

/* Professional Navigation */
nav {
    backdrop-filter: blur(10px);
}

/* Better Button Styling */
.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Content Max Widths */
.content-narrow {
    max-width: 768px;
}

.content-medium {
    max-width: 1024px;
}

.content-wide {
    max-width: 1280px;
}

/* Professional Spacing */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

