/* 🎨 CSS Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #E67E22; 
    --max-content-width: 450px;
    --spacing: 30px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
}

/* 🖼️ Static Background Image (Path/Visibility Check) */
#static-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Yo path check garnu hola. Yadi image "images" folder bhitra chha bhane yo thik chha. */
    background-image: url('images/main_bg.jpg'); 
    background-size: cover;
    background-position: center center;
    /* FIX 1: Brightness hatayeko chhu */
}

/* Dark Overlay for Readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* FIX 1: Opacity 0.2 ma simit gareko chhu */
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: -1;
}

/* 🖼️ Background Style (For JS to control) */
#background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    filter: blur(2px) brightness(0.7); /* Background lai alikati dim ra dherai blur */
    opacity: 0.8;
}

/* 📐 Logo/Header Section (Now Empty) */
header {
    width: 90%;
    max-width: var(--max-content-width);
    margin: 0 auto 15px auto;
    text-align: center;
    height: 0; /* Header ma kunai content nahunale height 0 gariyo */
}

/* 📐 Main Content Container */
.container {
    width: 90%;
    max-width: var(--max-content-width);
    padding: var(--spacing) 20px;
    text-align: center;
    background: transparent;
    border-radius: 20px;
    opacity: 1; 
    transform: translateY(0);
}

/* --- Profile Section --- */
.profile {
    margin-bottom: var(--spacing);
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color); /* Clean white border */
    margin-bottom: 15px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* --- Link Buttons Section --- */
.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    
    transition: transform 0.2s ease-out, box-shadow 0.2s, background 0.2s;
}

.social-icon i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-2px); 
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
}

/* --- Specific Brand Colors on Hover/Style --- */
.social-icon.instagram:hover { 
    background: #E4405F; border-color: #E4405F; 
}
.social-icon.facebook:hover { 
    background: #1877F2; border-color: #1877F2; 
}
.social-icon.youtube:hover { 
    background: #FF0000; border-color: #FF0000; 
}
.social-icon.tiktok {
    background: #000000; 
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.social-icon.tiktok:hover {
    background: #000000;
    border: 1px solid #25F4EE; 
}

/* --- Footer --- */
footer {
    position: relative;
    width: 100%;
    max-width: var(--max-content-width);
    margin-top: 35px;
    padding: 10px 0;
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

.phone-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    color: var(--accent-color);
}