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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

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

/* Custom container for consistent max-width */
.container {
    max-width: 1280px;
}

/* Custom transition effects */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom shadow for elements */
.custom-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Custom focus styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 69, 255, 0.2);
}

/* Responsive typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
}

/* Custom link styles */
a {
    transition: all 0.3s ease;
}

/* Custom button hover effects */
.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Gallery image hover effect */
.gallery-image {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Custom form input styles */
.form-input {
    transition: all 0.3s ease;
    border-width: 1px;
}

.form-input:focus {
    border-color: #1a45ff;
    box-shadow: 0 0 0 3px rgba(26, 69, 255, 0.2);
}

/* SVG icon styles */
.icon {
    transition: all 0.3s ease;
}

/* Accessibility focus styles */
a:focus, button:focus {
    outline: 2px solid #1a45ff;
    outline-offset: 2px;
}