/* Webflow Styles */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #F5A623;
    --text-color: #333333;
    --background-color: #FFFFFF;
    --dark-bg: #1A1B1E;
    --yellow: #F5A623;
    --spacing: 2rem;
}

/* Reset */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
body {
    font-family: '42dot Sans', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-top: 0;
}

/* Hero Section */
.hero-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-heading-holder {
    margin-bottom: 2rem;
}

.hero-image-holder {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Buttons */
.fancy-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.button-icon-holder.second:hover {
    display: block;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.button-icon-holder {
    margin-left: 1rem;
}

/* Animations */
.animate-on-load-01,
.animate-on-load-02,
.animate-on-load-03,
.animate-on-load-04 {
    opacity: 0;
    transform: translateY(45px);
    transition: all 0.6s ease;
}

.loaded .animate-on-load-01,
.loaded .animate-on-load-02,
.loaded .animate-on-load-03,
.loaded .animate-on-load-04 {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-holder {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .hero-content {
        text-align: center;
    }
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Features Grid */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.grid-feature-holder {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.grid-feature-holder:hover {
    transform: translateY(-5px);
}
