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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #2d1a2d 50%, #1a1a2d 75%, #0a0a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #2d1a2d 50%, #1a1a2d 75%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 30%, #ff00ff 70%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 10, 26, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.about-intro {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(138, 43, 226, 0.15) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.about-intro h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.intro-text {
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
}

.about-skills,
.about-philosophy,
.about-impact {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(138, 43, 226, 0.08) 100%);
    border-radius: 15px;
    border-left: 5px solid #00ffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-skills h4,
.about-philosophy h4,
.about-impact h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
}

.skills-list li:last-child {
    border-bottom: none;
}

.skills-list strong {
    color: #00ffff;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.about-philosophy p,
.about-impact p {
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.about-philosophy strong,
.about-impact strong {
    color: #ff00ff;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.about-philosophy em,
.about-impact em {
    color: #00ffff;
    font-style: italic;
    font-weight: 600;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(45, 26, 45, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.categories h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.dropdown-container {
    max-width: 800px;
    margin: 0 auto;
}

.dropdown {
    margin-bottom: 2rem;
    position: relative;
}

.dropdown-toggle {
    display: none;
}

.dropdown-label {
    display: block;
    padding: 20px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 50%, #1a1a2d 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-label:hover::before {
    left: 100%;
}

.dropdown-label:hover {
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.dropdown-arrow {
    float: right;
    transition: transform 0.3s ease;
    color: #00ffff;
}

.dropdown-toggle:checked + .dropdown-label .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-toggle:checked + .dropdown-label {
    border-color: #ff00ff;
    background: linear-gradient(135deg, #ff00ff 0%, #8a2be2 100%);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 10, 26, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 0 0 12px 12px;
    margin-top: -2px;
}

.dropdown-toggle:checked ~ .dropdown-content {
    max-height: 2000px;
    padding: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
    justify-items: center;
}

.gallery-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
    border-color: rgba(255, 0, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    color: #cccccc;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(45, 26, 45, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 50%, #1a1a2d 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: left;
}

.contact-item:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.contact-icon {
    font-size: 1.8rem;
    color: #00ffff;
    min-width: 30px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff00ff;
}

/* Footer */
.footer {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 10, 26, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-main p {
    color: #888888;
    font-size: 1rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
}

.social-link.instagram:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
    border-color: rgba(255, 0, 255, 0.3);
}

.social-link.linkedin:hover {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.3);
}

.social-link.pinterest:hover {
    box-shadow: 0 8px 25px rgba(189, 8, 28, 0.3);
    border-color: rgba(189, 8, 28, 0.3);
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .about h2,
    .categories h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-intro,
    .about-skills,
    .about-philosophy,
    .about-impact {
        padding: 2rem;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1.2rem;
    }
    
    .about-skills h4,
    .about-philosophy h4,
    .about-impact h4 {
        font-size: 1.4rem;
    }
    
    .skills-list li {
        font-size: 1.1rem;
    }
    
    .skills-list strong {
        font-size: 1.2rem;
    }
    
    .about-philosophy p,
    .about-impact p {
        font-size: 1.1rem;
    }
    
    .about-philosophy strong,
    .about-impact strong {
        font-size: 1.2rem;
    }
    
    .about-philosophy em,
    .about-impact em {
        font-size: 1.1rem;
    }
    
    .dropdown-label {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item img {
        max-height: 250px;
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 20px 25px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-item a {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }
    
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .about,
    .categories,
    .contact {
        padding: 60px 0;
    }
    
    .about h2,
    .categories h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-intro,
    .about-skills,
    .about-philosophy,
    .about-impact {
        padding: 1.5rem;
    }
    
    .about-intro h3 {
        font-size: 1.6rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .about-skills h4,
    .about-philosophy h4,
    .about-impact h4 {
        font-size: 1.3rem;
    }
    
    .skills-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .skills-list strong {
        font-size: 1.1rem;
    }
    
    .about-philosophy p,
    .about-impact p {
        font-size: 1rem;
    }
    
    .about-philosophy strong,
    .about-impact strong {
        font-size: 1.1rem;
    }
    
    .about-philosophy em,
    .about-impact em {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        max-height: 200px;
    }
    
    .dropdown-label {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .dropdown-toggle:checked ~ .dropdown-content {
        padding: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 18px 20px;
    }
    
    .contact-icon {
        font-size: 1.3rem;
    }
    
    .contact-item a {
        font-size: 1rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        padding: 10px 16px;
    }
    
    .social-text {
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff00ff 0%, #8a2be2 100%);
}
