﻿/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(to bottom, #fdfdfd, #f3f3f3);
    color: #333;
    padding: 10px;
}

/* Main container */
main {
    max-width: 800px;
    margin: 0px 0px 2px 1px; /* 👈 pushes content from the left edge */
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left; /* keeps everything inside left aligned */
}


    /* Heading */
    main h2 {
        font-size: 2rem;
        color: #6a1b9a; /* deep purple for a fairy vibe */
        margin-bottom: 20px;
    }

/* Responsive image */
.responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.home-icon {
    width: auto;
    height: 55px;
}

/* Footer (optional if you add one later) */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
}

.txt1 {
    font-family: 'Georgia', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.lblAboutFairies {
    font-family: 'sans-serif', Calibri;
    font-size: 16px;
    font-weight: 500;
    color: #640b71;
    
}

footer {
    text-align: left;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
    padding: 10px 20px;
    background: #f1f1f1;
    border-radius: 6px;
}

    footer a {
        color: #8a2be2; /* mystical violet */
        text-decoration: none;
        margin-left: 10px;
    }

        footer a:hover {
            text-decoration: underline;
            color: #dda0dd; /* soft lavender glow */
        }


ul {
    margin-left: 20px; /* controls indentation */
    padding-left: 20px; /* extra spacing */
}

    ul li {
        margin-bottom: 8px; /* space between items */
    }

.support-link {
    color: #8a2be2; /* mystical violet */
    font-style: italic; /* keeps the <em> feel */
    text-decoration: none; /* removes underline */
    font-weight: bold; /* makes it stand out */
    transition: all 0.3s ease; /* smooth hover effect */
}

    .support-link:hover {
        color: #dda0dd; /* soft lavender glow */
        text-shadow: 0 0 8px #fff; /* glowing hover effect */
        text-decoration: underline; /* underline only on hover */
    }