/* ==========================================
   about.css - About Me Page Styles
   ========================================== */

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles (consistent with other pages) */
header {
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 80px;
}

header h1 {
    margin: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 240px;
    line-height: 1.2;
}

.line1, .line2 {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line1 {
    margin-bottom: 2px;
}

.line2 {
    font-size: 1.1rem;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 1;
    margin-left: auto;
}

/* Home Button */
.home-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    order: 2;
}

.home-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
}

.home-btn::before {
    content: "🏠";
    font-size: 1rem;
}

/* About Me Button */
.about-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    order: 3;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
}

.about-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
    border-color: #666;
}

.about-btn::before {
    content: "👤";
    font-size: 1rem;
}

/* Dropdown menu (same as other pages) */
.dropdown {
    position: relative;
    display: inline-block;
    order: 1;
}

.dropbtn {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #444;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 9px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dropbtn::after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropbtn::after {
    transform: rotate(180deg);
}

.dropbtn:hover {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-color: #666;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    min-width: 260px;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1001;
    border: 1px solid #444;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    margin-top: 8px;
    padding: 12px;
}

.dropdown-content.show {
    display: block;
    animation: dropdownSlideIn 0.3s ease;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #555;
    transform: translateX(5px);
    text-decoration: none;
    color: #fff;
}

.menu-icon {
    font-size: 1.6rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-icon {
    transform: scale(1.1);
}

/* Theme Colors */
.earth-theme .menu-icon {
    background: linear-gradient(135deg, #8B4513, #CD853F);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.earth-theme:hover .menu-icon {
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
}

.air-theme .menu-icon {
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
}

.air-theme:hover .menu-icon {
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.6);
}

.water-theme .menu-icon {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.water-theme:hover .menu-icon {
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.landscape-theme .menu-icon {
    background: linear-gradient(135deg, #32CD32, #90EE90);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.landscape-theme:hover .menu-icon {
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.6);
}

.menu-text {
    flex: 1;
}

.menu-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #fff;
}

.menu-subtitle {
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 400;
}

.menu-arrow {
    color: #666;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-arrow {
    transform: translateX(3px);
    color: #fff;
}

/* Main Content */
main {
    margin-top: 95px;
    min-height: calc(100vh - 95px);
    padding: 40px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem;
    color: #888;
    font-weight: 300;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}

.profile-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover .profile-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    text-align: center;
}

.image-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #444;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-info strong {
    color: #4CAF50;
}

/* Footer */
footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 60px;
}

footer p {
    color: #888;
    font-size: 0.9rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }

    .about-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 12px 20px;
        min-height: auto;
    }

    .line1, .line2 {
        font-size: 1.1rem;
    }

    .line2 {
        font-size: 1rem;
    }

    header h1 {
        max-width: 200px;
    }

    nav {
        gap: 12px;
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }

    main {
        margin-top: 120px;
        padding: 30px 15px;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .profile-image {
        height: 400px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section h2 {
        font-size: 1.7rem;
    }

    .dropbtn {
        font-size: 0.95rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }

    .line1, .line2 {
        font-size: 1rem;
    }

    .line2 {
        font-size: 0.95rem;
    }

    header h1 {
        max-width: 180px;
    }

    main {
        margin-top: 130px;
        padding: 20px 10px;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .about-image {
        max-width: 100%;
    }

    .profile-image {
        height: 300px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .home-btn, .about-btn {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .contact-info {
        padding: 20px;
    }
}
/* Enhanced Social Links Styles */
.social-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.social-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    flex: 1;
    max-width: 250px;
}

.social-link:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(225, 48, 108, 0.05));
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(225, 48, 108, 0.1));
    border-color: #e1306c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.2);
}

.social-icon {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-platform {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.social-handle {
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 400;
}

.social-link.instagram .social-platform {
    color: #e1306c;
}

/* Contact Info Enhancements */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info strong {
    color: #4CAF50;
    min-width: 120px;
    display: inline-block;
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
    }

    .social-link {
        max-width: 100%;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .contact-info strong {
        min-width: auto;
    }
}
