/* --- Color Palette --- */
:root {
    --color-black: #1a1a1a;
    --color-red: #e74c3c; /* A strong, appealing red */
    --color-yellow: #f1c40f; /* A bright, energetic yellow */
    --color-white: #ffffff;
}

/* --- Base & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    min-height: 100vh;
    /* REDUCED PADDING to let the container expand more */
    padding: 0; 
    display: flex; 
    justify-content: center;
    align-items: flex-start;
}

.container {
    width: 100%; /* Ensures it takes up the full width */
    /* REMOVED: max-width: 450px; */
    display: flex;
    flex-direction: column;
    gap: 30px; 
    /* Added horizontal padding here to keep content off the edges */
    padding: 20px 20px 50px 20px; 
}

/* --- Logo/Name Styling --- */
.logo-section {
    padding-top: 20px;
}

.logo-text {
    font-size: 2.5em; 
    font-weight: 900;
    color: var(--color-yellow); 
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px var(--color-red);
}

/* --- Button Styles (General) --- */
.btn {
    display: block;
    width: 100%;
    padding: 15px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.btn:active {
    transform: scale(0.98); 
}

/* "See Menu" Button - Primary Action */
.primary-btn {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 3px solid var(--color-yellow);
    font-size: 1.5em; 
    padding: 20px 10px;
}

.primary-btn:hover {
    background-color: #d6302a;
}

/* "Get Directions" Button - Secondary Action */
.secondary-btn {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border: none;
    margin-top: 10px; 
}

.secondary-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

.secondary-btn:hover {
    background-color: #e0b40e; 
}

/* --- Social Media Section --- */
.social-section {
    margin-top: 10px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h2 {
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px; 
}

.social-icon {
    font-size: 3em; 
    color: var(--color-white);
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Custom color for hover/focus */
.tiktok:hover { color: var(--color-red); }
.instagram:hover { color: var(--color-yellow); } 
.snapchat:hover { color: #ffe800; } 

/* --- Footer --- */
.footer-note {
    margin-top: 20px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.6);
}