/* Custom Styles for DreamSphere.in */

/* Gradient for the hero section */
.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Styling for feature icons (Font Awesome) */
.feature-icon {
    font-size: 2.5rem; /* Adjust icon size as needed */
    margin-bottom: 1rem;
}

/* Glowing border effect for images */
.glowing-border {
    box-shadow: 0 0 15px 5px rgba(102, 126, 234, 0.5), 0 0 30px 10px rgba(118, 75, 162, 0.3);
}

/* Styling for the premium badge */
.premium-badge {
    background-color: #FFD700; /* Gold color */
    color: #4A5568; /* Dark Gray text for contrast */
    padding: 0.25rem 0.75rem; /* Tailwind's py-1 px-3 equivalent */
    border-radius: 0.375rem; /* Tailwind's rounded-md equivalent */
    font-size: 0.875rem; /* Tailwind's text-sm equivalent */
    font-weight: 600; /* Tailwind's font-semibold equivalent */
    display: inline-block;
    margin-bottom: 1rem;
}

/*
   Standard CSS Fallback classes for simple pages (privacy, terms, contact).
   These are used if you are NOT using a Tailwind CSS build process that can
   process @apply directives within this style.css file.
   If you HAVE a Tailwind build process, you can use @apply or utility classes directly.
*/
body.simple-page-body-fallback {
    background-color: #f7fafc; /* bg-gray-100 */
    color: #2d3748; /* text-gray-800 */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* font-sans */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.simple-page-container-fallback {
    width: 90%; /* Responsive width */
    max-width: 960px; /* Max width for content readability */
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem; /* Adjusted padding for smaller screens */
    flex-grow: 1;
}
.simple-page-header-fallback {
    background-color: #ffffff; /* bg-white */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    margin-bottom: 2rem; /* mb-8 */
}
.simple-page-nav-fallback {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1rem; /* Adjusted padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.simple-page-title-fallback { /* This class was not used in HTML, but defined for completeness */
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    color: #5a67d8; /* text-indigo-600 */
}
.simple-page-content-fallback h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: #4a5568; /* text-gray-700 */
    margin-bottom: 1.5rem;
}
.simple-page-content-fallback h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    color: #4a5568; /* text-gray-700 */
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.simple-page-content-fallback h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    color: #4a5568; /* text-gray-700 */
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.simple-page-content-fallback p {
    color: #718096; /* text-gray-600 */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 1rem;
}
.simple-page-content-fallback ul {
    list-style: disc;
    margin-left: 1.5rem; /* Indent list */
    color: #718096; /* text-gray-600 */
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}
.simple-page-content-fallback li {
    margin-bottom: 0.5rem;
}
.simple-page-content-fallback a {
    color: #5a67d8; /* text-indigo-600 */
    text-decoration: underline;
}
.simple-page-content-fallback a:hover {
    color: #3c366b; /* hover:text-indigo-800 */
}
.simple-page-footer-fallback {
    background-color: #2d3748; /* bg-gray-800 */
    color: #d1d5db; /* text-gray-300 */
    padding: 1.5rem 0; /* py-6 */
    text-align: center;
    font-size: 0.875rem; /* text-sm */
}
