﻿/* Global Reset and Body Setup */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Clean, professional font */
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Pure white background */
    color: #333333; /* Dark text for contrast */
    height: 100vh; /* Make the body take up the full height of the viewport */
    display: flex; /* Enable Flexbox for centering */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    text-align: center;
}

/* Container for Centering */
.center-container {
    padding: 20px;
}

/* Main Brand Name Styling */
.brand-name {
    font-size: 4vw; /* Responsive font size */
    font-weight: 300; /* Light weight for a modern look */
    letter-spacing: 0.8em; /* Wide spacing for a sophisticated feel */
    margin: 0;
    text-transform: uppercase;
    
    /* Ensure the text is readable on very small screens */
    min-font-size: 20px; 
}

/* --- NEW STYLES FOR YOUTUBE ICON --- */
.youtube-logo {
    /* Set a standard size for the logo */
    width: 300px; 
    height: auto;
    /* Remove any default image border */
    border: none;
    /* Give it some top margin to separate it from the brand name */
    margin-top: 50px; 
    /* Make the image scale up slightly on hover */
    transition: transform 0.2s ease-in-out;
}

.social-icon:hover .youtube-logo {
    transform: scale(1.1);
}
/* ------------------------------------- */


/* Media Query for smaller screens (like phones) */
@media (max-width: 600px) {
    .brand-name {
        font-size: 5vw; /* Increase size slightly on smaller screens */
        letter-spacing: 0.4em; /* Tighten spacing on smaller screens */
    }
    /* Adjust logo size for smaller screens */
    .youtube-logo {
        width: 100px; 
        margin-top: 25px;
    }
}