/* Core Styling & Dark Monochrome Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

:root {
    --accent-white: #ffffff;
    --accent-grey: #cccccc;
    --bg-black: #0a0a0c;
    --bg-card: #141419;
    --bg-card-alt: #1a1a22;
    --border-grey: #333333;
}

body {
    background-color: var(--bg-black);
    color: #f0f0f0;
    line-height: 1.6;
}

/* Header Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(10, 10, 12, 0.95);
    border-bottom: 2px solid var(--accent-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-grey);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-grey);
}

/* Hero Section */
.hero {
    padding: 80px 8% 60px;
    background: radial-gradient(circle at 70% 30%, #222226 0%, var(--bg-black) 70%);
}

.hero-container {
    display: flex;
    flex-direction: row;      
    flex-wrap: wrap;          
    justify-content: center;  
    gap: 12px;                
    width: 100%;
}

.hero-text {
    flex: 1;
    min-width: 290px;
}

.tagline {
    color: var(--accent-grey);
    font-family: monospace;
    font-size: 0.95rem;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 15px 0;
}

.pink-glow {
    color: var(--accent-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.hero-text p {
    color: #aaa;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-white);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.hero-btn:hover {
    background-color: var(--accent-grey);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    width: 500%;
    max-width: 1000px;
}

.hero-img {
    width: 150%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--accent-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    display: block;
}

/* General Section Layout */
.section {
    padding: 70px 8%;
    text-align: center;
}

.dark-bg {
    background-color: #0e0e12;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #fff;
    text-transform: uppercase;
}

.pink-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-white);
    margin: 8px auto 0;
    border-radius: 2px;
}

.about-card {
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-white);
    text-align: left;
}

/* Interest Section Styling */
.interest-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 0%;
    margin: 0 auto;
}

.interest-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    color: var(--accent-white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    
    max-width: 300px; 
    width: 100%;      
    margin: 0 auto;
    
    
    display: inline-block;    /* Prevents full-width block behavior */
    width: auto;              /* Lets card wrap tightly around text */
    padding: 10px 20px;

}

.interest-card:hover {
    border-color: var(--accent-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Contact Social Buttons */
.contact-sub {
    color: #aaa;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.fb { background-color: #1877f2; }
.ig { background-color: #e1306c; }

.social-btn:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #050507;
    color: #555;
    font-size: 0.85rem;
    border-top: 1px solid #15151c;
}

/* Dark Mode */
body {
    transition: background-color 0.4s ease, color 0.4s ease;
}

.theme-btn {
    background-color: var(--accent-white);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 20px;
    transition: 0.3s;
}

.theme-btn:hover {
    background-color: var(--accent-grey);
}

body.light-theme {
    --bg-black: #f4f4f7;
    --bg-card: #ffffff;
    --bg-card-alt: #eaeaef;
    --accent-white: #000000;
    --accent-grey: #444444;
    --border-grey: #dddddd;
    color: #111111;
}

body.light-theme .navbar {
    background-color: rgba(244, 244, 247, 0.95);
    border-bottom-color: #000000;
}

body.light-theme .logo,
body.light-theme .nav-links a,
body.light-theme .hero-text h1,
body.light-theme .section-header h2,
body.light-theme .card-body h3 {
    color: #000000;
}

body.light-theme .hero {
    background: radial-gradient(circle at 70% 30%, #e2e2e8 0%, var(--bg-black) 70%);
}

body.light-theme .hero-btn {
    background-color: #000000;
    color: #ffffff;
}

body.light-theme .hero-btn:hover {
    background-color: #333333;
}

body.light-theme .dark-bg {
    background-color: #e9e9ee;
}

body.light-theme .theme-btn {
    background-color: #000000;
    color: #ffffff;
}

body.light-theme footer {
    background-color: #e2e2e8;
    color: #666666;
    border-top-color: #cccccc;
}