/* style.css - For index.html landing page */
/* This file can be minimal if Tailwind handles most styling */

.logo-full {
    width: 40%;
    max-width: max-content;
}

/* Google Sign-in Button Styling */
.google-signin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center content if button has fixed width */
    padding: 10px 20px;
    border: 1px solid #dadce0;
    /* Google's standard border color */
    border-radius: 4px;
    background-color: #ffffff;
    /* White background */
    color: #3c4043;
    /* Google's standard text color */
    font-weight: 500;
    font-size: 14px;
    /* Google's standard font size */
    cursor: pointer;
    transition: background-color .3s, border-color .3s;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    /* Subtle shadow */
}

.google-signin-button:hover {
    background-color: #f8f9fa;
    border-color: #c6c9ce;
}

.google-signin-button:active {
    background-color: #e8eaed;
}

.google-signin-button .google-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    /* Increased spacing */
    flex-shrink: 0;
}

.google-signin-button .google-button-text {
    /* Text color is inherited from .google-signin-button or can be set explicitly */
    /* color: #3c4043; */
    line-height: normal;
    /* Ensure proper vertical alignment */
}

/* Hero section specific button styling (larger) */
.google-signin-button-hero {
    padding: 12px 24px;
    font-size: 16px;
}

.google-signin-button-hero .google-icon {
    margin-right: 12px;
}

/* CTA section specific button styling (can be same as hero or different) */
.google-signin-button-cta {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #4285F4;
    /* Google Blue */
    color: white;
    border-color: #4285F4;
}

.google-signin-button-cta:hover {
    background-color: #357ae8;
    border-color: #357ae8;
}

.google-signin-button-cta .google-button-text {
    color: white;
}

/* Fill for SVG paths in CTA button if you want them white */
.google-signin-button-cta .google-icon path[fill="#4285F4"],
.google-signin-button-cta .google-icon path[fill="#34A853"],
.google-signin-button-cta .google-icon path[fill="#FBBC05"],
.google-signin-button-cta .google-icon path[fill="#EA4335"] {
    fill: white;
}


/* Additional custom styles can go here if needed */
.container {
    /* Ensure container class is defined if not using a framework that provides it */
    max-width: 1140px;
    /* Example max-width */
}

/* Responsive adjustments if needed beyond Tailwind's capabilities */
@media (max-width: 768px) {
    .hero-gradient h1 {
        font-size: 2.5rem;
        /* Adjust hero heading for mobile */
    }

    .hero-gradient p {
        font-size: 1rem;
        /* Adjust hero paragraph for mobile */
    }

    .feature-icon-bg {
        margin-left: auto;
        margin-right: auto;
    }

    .grid md\:grid-cols-2,
    .grid md\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        /* Stack features on mobile */
    }
}
