@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
@layer components {
    .titleSections {
        font-family: 'Space Grotesk';
        font-weight: 700;
    }

    .title_blocs {
        @apply text-offBlack titleSections text-[28px] leading-[120%] tracking-[-0.28px];
    }
    .para_blocs {
        @apply text-offBlack text-[20px] leading-[160%] font-normal opacity-70;
    }
    .cta_btn {
        @apply p-4 px-5 rounded font-bold;
    }
    .custom_shadow_orange {
        @apply absolute bottom-[94px] right-[-375px] bg-[#FABB18] blur-[150px] opacity-50 w-[300px] h-[300px] -z-10 mobile:hidden;
    }
    .custom_shadow_orange_mobile {
        @apply absolute top-[98px] right-[-242px] bg-[#FABB18] blur-[150px] opacity-35 w-[300px] h-[300px] -z-10 mobile:block hidden;
    }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.gs-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #282c34;
    color: #61dafb;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color:white;
}

.title{
    font-size: 18px;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.intro {
    max-width: 800px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intro p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;

}

.main-paragraph {
    font-size: 1.2em;
    color: #333;

    font-family: 'Roboto', sans-serif;
    margin: 20px 0;
    padding: 10px;

    background-color: #f9f9f9;
}


.button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: white;
    background-color: #3897f0;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2876c7;
}

footer {
    background-color: #282c34;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.logout-button{
    position:fixed;
    top:20px;
    right:20px;
}

.logout-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff4b5c; /* Red color for the logout button */
    color: white; /* White text */
    border: none;
    border-radius: 4px; /* Rounded corners */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for a raised effect */
}

.logout-button:hover {
    background-color: #d03945; /* Darker red on hover */
}

.logout-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 75, 92, 0.4); /* Highlight on focus */
}

.logout-button:active {
    background-color: #c53040; /* Even darker red when clicked */
    box-shadow: none;
}


.instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #E4405F; /* Instagram brand color */
    text-decoration: none;
    border-radius: 4px;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.instagram-button i {
    font-size: 18px;
    margin-right: 8px;
}

.instagram-button:hover {
    background-color: #C13584; /* Darker shade of Instagram color */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.instagram-button:active {
    background-color: #A12F5F; /* Even darker shade for active state */
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.get-started-image {
    width: 100%; /* Adjust width as needed */
    max-width: 600px; /* Maximum width for larger screens */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below the image */
    display:inline-block;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(/path/to/inter.woff2) format('woff2'),
    url(/path/to/inter.woff) format('woff');
}
/*
 * This is a manifest file that'll be compiled into application_base.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* global.css */
