/* Layout Wrapper */
.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px; /* Wider to accommodate sidebar */
    margin: 0 auto;
    padding: 0 1rem;
}

/* Make content and sidebar side-by-side */
.content-area {
    flex: 2; /* Takes up 2/3 of space */
    min-width: 300px;
}

.sidebar-area {
    flex: 1; /* Takes up 1/3 of space */
    min-width: 200px;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
}

/* Ensure images don't break the sidebar */
.sidebar-area img {
    max-width: 100%;
}

/* Stack vertically on mobile devices */
@media (max-width: 768px) {
    .main-wrapper {
        flex-direction: column;
    }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffcc33;
    font-family: 'Quicksand', sans-serif;
    color: #2c1d11;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Keeps footer at bottom without stretching content */
    padding: 2rem 1rem;
}

.container {
    max-width: 600px;
    width: 100%;
    margin: auto;
    text-align: center;
}

.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem; /* Controls space between logo and content below */
    height: auto;
}

.logo-container {
    text-align: center;
    width: 100%;
    margin-bottom: 0; /* Cleared out so it doesn't fight with .site-header */
    height: auto;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    display: block;
    margin: 0 auto; /* Keeps it centered */
    max-width: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Social Links Wrapper */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
}

/* Social Button Styling */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    color: #2c1d11;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.youtube:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.social-btn.facebook:hover {
    background-color: #1877f2;
    color: #ffffff;
}

footer {
    margin-top: auto; /* This pushes the footer down naturally if content is short */
    padding-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

@media (max-width: 480px) {
    .social-btn { font-size: 1rem; padding: 0.85rem 1.25rem; }
}

