/* 更新样式，使其更加简约时尚 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #e0e0e0;
    --accent-color: #3b82f6;
    --text-color: #ffffff;
    --text-light: #a0a0a0;
    --background-light: #111111;
    --background-dark: #000000;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-dark);
}

/* 现代化的玻璃态效果 */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Logo样式增强 */
.font-geist-mono {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

/* 按钮样式现代化 */
a, button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* 其他样式保持不变 */

/* Update color schemes for all components */
.bg-gray-50 {
    background-color: var(--background-light);
}

.text-gray-900 {
    color: var(--text-color);
}

.border-gray-200 {
    border-color: var(--glass-border);
}

.hover\:text-blue-600:hover {
    color: var(--primary-color);
}

/* Adding subtle shadows for depth */
.hover\:shadow-md:hover {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

/* Hero section gradient enhancement */
.hero-section {
    position: relative;
}

/* Creating a slightly rounded feel for elements */
.rounded-lg {
    border-radius: 0.5rem;
}

/* Transitions for interactive elements */
.transition-all {
    transition: all 0.2s ease;
}

/* Subtle hover effects */
.hover\:bg-gray-750 {
    background-color: #2d3748;
}

/* Service icons styling */
.service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

/* Custom styling for form elements */
input, select, textarea {
    transition: border-color 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer styling */
footer {
    background-color: var(--background-dark);
    color: white;
}

/* Special highlight for promotion sections */
.promo-highlight {
    position: relative;
    overflow: hidden;
}

.promo-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0));
    z-index: -1;
}

/* Font settings for better readability */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

p {
    line-height: 1.7;
}

/* Mobile responsiveness enhancements */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Custom styling for the contact form submission button */
#contact-form button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

#contact-form button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

#contact-form button:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}
