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

body, html {
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* --- Layout Wrapper --- */
.page-wrapper {
    position: relative;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    /* Default background setup */
    background: linear-gradient(rgba(13, 35, 10, 0.85), rgba(13, 35, 10, 0.85)), 
                url('image_3da3e1.jpg');
    background-size: cover; /* Ensures image covers screen without stretching */
    background-position: center;
    background-attachment: fixed; /* Keeps background stable during scroll */
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 20px;
}

/* --- Logo Section --- */
.logo-area {
    margin-bottom: 40px;
    text-align: center;
}

.main-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
}

/* --- Navigation Buttons --- */
.button-list {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 18px;
    width: 100%;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 16px 24px;
    text-decoration: none;
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    
    width: 100%; 
    max-width: 360px; 
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.link-btn i {
    font-size: 20px;
    margin-right: 18px; 
    width: 25px;
    text-align: center;
}

/* --- Button Color Gradients --- */
.web-btn { 
    background: linear-gradient(90deg, #FF4B1F, #FF9068, #FDBB2D); 
}

.ig-btn { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.fb-btn { 
    background: linear-gradient(90deg, #00C6FF, #0072FF); 
}

/* --- Footer Section --- */
.site-footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.2); 
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 25px;
    margin-bottom: 12px;
}

.contact-unit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.contact-unit:hover { 
    opacity: 0.7; 
}

.contact-unit i { 
    color: #D4AF37; 
}

.sub-footer {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0.5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 600px) {
    .page-wrapper {
        /* FIXED: background-size: cover prevents image stretching */
        background-size: cover;
        background-position: center center;
    }
    
    .main-logo {
        max-width: 240px;
    }
    
    .link-btn {
        font-size: 11px;
        padding: 14px 20px;
        max-width: 320px; 
    }
    
    .contact-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .sub-footer {
        font-size: 11px;
        line-height: 1.4;
    }
}