/* -------------------------------------- */
/* --- Global Styles & Variables --- */
/* -------------------------------------- */

:root {
    --primary-color: #FF6700; /* Vibrant Saffron/Orange */
    --secondary-color: #046A38; /* Deep Green */
    --dark-color: #1a2a44; /* Dark Blue-Gray for Text */
    --light-color: #ffffff;
    --bg-light-gray: #f4f6f8; /* Light background for links */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Teko', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    /* Soft, thematic background gradient */
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, #ffe8d6 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns content to the top */
    padding: 30px 10px;
}

/* -------------------------------------- */
/* --- Main Container & Layout --- */
/* -------------------------------------- */

.unique-container {
    width: 100%;
    max-width: 480px;
    background: var(--light-color);
    border-radius: 25px;
    /* Professional shadow for depth */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
    padding: 30px 20px 40px;
    margin-top: 20px;
}

/* -------------------------------------- */
/* --- Profile Header Styling --- */
/* -------------------------------------- */

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    
    /* Diagonal BJP-inspired border using conic-gradient */
    border: 5px solid transparent; 
    padding: 5px; 
    background: conic-gradient(from 45deg, var(--primary-color) 0% 50%, var(--secondary-color) 50% 100%) border-box;
    background-clip: padding-box, border-box;
    
    transition: transform 0.3s ease;
}

.unique-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--dark-color);
    margin-bottom: 0;
    line-height: 1.1;
}

.unique-tagline {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2px;
}

/* -------------------------------------- */
/* --- Link Card List & Items --- */
/* -------------------------------------- */

.link-card-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--dark-color);
    background-color: var(--bg-light-gray);
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 500;
    transition: all 0.35s ease;
    justify-content: center;
    gap: 10px;
}

.link-item i {
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.link-item span {
    flex-grow: 1;
    text-align: center;
}

/* Hover Effect for all links */
.link-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* -------------------------------------- */
/* --- Special Link Colors (Branding) --- */
/* -------------------------------------- */

/* Primary CTA (Website) - Saffron Theme */
.link-item.primary-cta {
    background: var(--primary-color);
    color: var(--light-color);
    font-weight: 700;
    border-color: var(--primary-color);
}
.link-item.primary-cta:hover {
    background: linear-gradient(135deg, #e65c00, #ff9b33);
}

/* Contact CTA (WhatsApp) - Green Theme */
.link-item.contact-cta {
    background: #25D366; /* WhatsApp Green */
    color: var(--light-color);
    font-weight: 700;
    border-color: #25D366;
}
.link-item.contact-cta:hover {
    background: linear-gradient(135deg, #1ebd57, #37e477);
}

/* Facebook */
.link-item.facebook {
    background-color: #1877F2;
    color: #fff;
    font-weight: 600;
    border-color: #1877F2;
}
.link-item.facebook i { color: #fff; }

/* Instagram (Gradient) */
.link-item.instagram {
    background: linear-gradient(45deg, #fdf497, #fd5949, #d6249f, #285AEB);
    color: #fff;
    font-weight: 600;
    border: none;
}
.link-item.instagram i { color: #fff; }
.link-item.instagram:hover {
    filter: brightness(1.1);
}

/* X / Twitter */
.link-item.x-twitter {
    background-color: #1DA1F2;
    color: #fff;
    font-weight: 600;
    border-color: #1DA1F2;
}
.link-item.x-twitter i { color: #fff; }

/* YouTube */
.link-item.youtube {
    background-color: #FF0000;
    color: #fff;
    font-weight: 600;
    border-color: #FF0000;
}
.link-item.youtube i { color: #fff; }

/* -------------------------------------- */
/* --- Footer Contact Information --- */
/* -------------------------------------- */

.contact-footer-info {
    text-align: center;
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px solid #eee;
}

.contact-footer-info p {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #777;
}

.contact-footer-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Footer Call to Action Link */
.contact-footer-info a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    display: block; 
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--bg-light-gray);
    transition: background-color 0.3s ease;
}

.contact-footer-info a:hover {
    background-color: #e0e0e0;
    color: var(--primary-color);
}