/* Custom Styles for OMKO */

:root {
    --luxury-green: #41BA77;
    --gray-light: #f0f3f7;
    --gray-dark: #1a1a1a;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Typography refinements */
body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Button hover effects */
button {
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::before {
    width: 300px;
    height: 300px;
}

/* Gradient background for hero */
.hero-gradient {
    background: linear-gradient(135deg, #f0f3f7 0%, #ecf1f8 100%);
}

/* CTA Card animations */
.cta-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.cta-card:hover {
    box-shadow: 0 12px 40px 0 rgba(65, 186, 119, 0.15);
    transform: translateY(-2px);
}

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

/* Logo filter for consistency */
img[alt="OMKO Logo"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Button group spacing */
.button-group button {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.button-group button:hover {
    box-shadow: 0 6px 25px rgba(65, 186, 119, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
}

/* Animation for scroll indicator */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Link hover effects */
a {
    position: relative;
    text-decoration: none;
    color: inherit;
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--luxury-green);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* Form inputs refinement */
input, textarea {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--luxury-green);
    box-shadow: 0 0 0 3px rgba(65, 186, 119, 0.1);
}

/* Placeholder styling */
input::placeholder, textarea::placeholder {
    color: #999;
    font-weight: 100;
}

/* Footer refinement */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
}

footer a:hover {
    color: var(--luxury-green);
}

/* Utility classes */
.text-luxury-green {
    color: var(--luxury-green);
}

.bg-luxury-green {
    background-color: var(--luxury-green);
}

.border-luxury-green {
    border-color: var(--luxury-green);
}

.shadow-luxury {
    box-shadow: 0 10px 30px rgba(65, 186, 119, 0.2);
}

/* Image optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
