/* Core Page Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Color Variables */
:root {
    --pink-main: #ff1493;
    --pink-glow: #ff69b4;
    --dark-bg: #121212;
    --card-bg: #1a1a1a;
}

/* Header Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #000000;
    border-bottom: 2px solid var(--pink-main);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
}

.logo span {
    color: var(--pink-main);
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--pink-glow);
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, #220515 0%, #0b0b0b 100%);
    padding: 0 20px;
}

.hero-box h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.pink-text {
    color: var(--pink-glow);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.hero-box p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Hero Section Layout */
.hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #220515 0%, #0b0b0b 100%);
    padding: 40px 8%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap; /* Keeps it responsive on mobile phones */
}

.hero-box {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.hero-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 280px;
}

/* Hero Section with Background Photo */
.hero {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Replace background gradient with image + dark pink overlay */
    background: linear-gradient(rgba(11, 11, 11, 0.85), rgba(34, 5, 21, 0.85)), 
                url('hero-bg.jpg') no-repeat center center/cover;
    padding: 0 20px;
}

/* Hero Image Styling */
.hero-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--pink-main);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.4); /* Neon pink glow */
    object-fit: cover;
}

/* Buttons */
.main-btn {
    padding: 12px 28px;
    background-color: var(--pink-main);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}

.main-btn:hover {
    background-color: var(--pink-glow);
    transform: translateY(-2px);
}

/* General Sections */
.section {
    padding: 60px 10%;
    text-align: center;
}

.dark-section {
    background-color: var(--dark-bg);
}

.section-title {
    font-size: 2rem;
    color: var(--pink-glow);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--pink-glow);
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.about-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

/* Skillshobbies Grid */
.hobbies-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hobbies-card {
    background-color: #222;
    border: 1px solid var(--pink-main);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
}

/* Achievements Section Grid */
.achievements-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Achievement Card Styling */
.achievement-card {
    background-color: var(--card-bg);
    border: 1px solid #333;
    border-top: 4px solid var(--pink-main);
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink-glow);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
}

/* Achievement Image Container & Image */
.achievement-img-container {
    width: 100%;
    height: 180px;
    background-color: #111;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

.achievement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-img {
    transform: scale(1.05); /* Subtle zoom effect when hovered */
}

/* Achievement Content Details */
.achievement-info {
    padding: 20px;
}

.achievement-info h3 {
    margin: 10px 0 8px 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.achievement-info p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Buttons */
.sub-text {
    margin-bottom: 20px;
    color: #aaa;
}

.social-box {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    padding: 12px 30px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.facebook {
    background-color: #1877f2;
}

.instagram {
    background-color: #e1306c;
}

.social-btn:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #666;
    font-size: 0.85rem;
    border-top: 1px solid #1a1a1a;
}

