:root {
    /* Brand Colors */
    --bg-grey: #282828;    
    --bg-purple: #3d2c5e;  
    --primary-yellow: #fcb034;
    --accent-purple: #5e4b8b;
    --text-white: #ffffff;
    --brick-red: #c92a2a;
    --btn-shadow: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* GRADIENT BACKGROUND */
    background: var(--bg-grey); 
    background: linear-gradient(to bottom, var(--bg-grey) 10%, var(--bg-purple) 100%);
    background-attachment: fixed; 
    
    color: var(--text-white);
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh; /* Ensures body takes full screen height */
    padding: 20px;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 480px; /* Standard Mobile Width */
    text-align: center;
    margin-top: 20px;
    /* Flex grow allows this section to take space, pushing footer down if needed */
    flex: 1 0 auto; 
}

/* Logo Styling */
.logo-wrapper {
    margin-bottom: 15px;
    width: 100%;
}

.logo-img {
    width: 100%; /* Forces image to be as wide as the container */
    height: auto;
    display: block;
}

/* Tagline */
h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem; 
    margin-bottom: 30px;
    color: #e0e0e0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}

/* Button Container */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

/* Link Buttons */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--primary-yellow);
    color: #000;
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    padding: 18px 20px;
    border-radius: 12px;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px var(--btn-shadow);
    transition: all 0.2s ease;
    position: relative;
}

.link-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Hover Effects */
.link-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--btn-shadow);
    background-color: #ffd67a;
}

.link-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--btn-shadow);
}

/* Specific Brand Colors on Hover */
.link-btn.instagram:hover { background-color: #E1306C; color: white; border-color: white; }
.link-btn.facebook:hover { background-color: #1877F2; color: white; border-color: white; }
.link-btn.whatsapp:hover { background-color: #25D366; color: white; border-color: white; }
.link-btn.website:hover { background-color: var(--accent-purple); color: white; border-color: white; }


/* Footer */
footer {
    width: 100%;
    max-width: 480px;
    margin-top: auto; /* This pushes the footer to the bottom */
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
    padding-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

footer i {
    color: var(--brick-red);
}

.legal-text {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 8px;
    line-height: 1.3;
}