﻿/* Use Google Fonts - Poppins for normal text, Lobster for first letter */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:wght@300;500&display=swap');

/* Main heading with artistic first letter and multi-color text */
.gradient-heading {
    font-family: 'Poppins', sans-serif;  /*Main body font */
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;  /*Default color */
    position: relative;
    display: inline-block;
}

    .gradient-heading::first-letter {
        font-family: 'Lobster', cursive; /*Artistic font for the first letter */
        font-size: 5.5rem;
        color: #FF6B6B; /*Artistic color for the first letter */
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        /*transform: scale(1.2);
        transition: all 0.3s ease-in-out;*/
        transform: scale(1.3) rotate(-10deg); /* Scale and rotate the first letter */
        transition: all 0.3s ease-in-out;
    }

    /* Hover effect to make first letter more artistic */
    .gradient-heading:hover::first-letter {
        transform: scale(1.3);
        color: #FFD700;  /*Change color on hover */
        text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
    }

     /*Multi-colored text effect for the rest of the heading */
    .gradient-heading span {
        background: linear-gradient(90deg, #FF6B6B, #FFD700, #4CAF50, #00BFFF);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: bold;
        animation: gradientFlow 5s linear infinite;  /*Animation to move gradient */
    }

/* Animation to move the gradient effect */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Subheading with modern font */
.subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

    /* Hover effect for subheading */
    .subheading:hover {
        color: #FF6B6B;
    }

/* Stylish card effect for login buttons */
.stylish-card {
    position: relative;
    border-radius: 20px !important;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stylish-card img {
        border-radius: 20px;
        transition: transform 0.3s ease;
        height:400px;
    }

    .stylish-card:hover {
        transform: scale(1.001);
        box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
    }

    .stylish-card h4 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.5rem;
        color: rgb(255, 255, 255);/* !important;*/
        font-weight: 500;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(32, 116, 136, 0.25);
        padding: 10px 20px;
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .stylish-card:hover h4 {
        opacity: 1;
    }

    .stylish-card img:hover {
        transform: scale(1.05);
    }

/* Button hover effects */
.card {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .card:hover .btn {
        transform: scale(1.1);
        /*background: #FF6B6B;*/
    }