/* ===== RESPONSIVE STYLES ===== */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .profile-container {
        width: 350px;
        height: 350px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-description,
    .roles-grid {
        margin: 20px auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .profile-container {
        width: 300px;
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-role {
        font-size: 1.6rem;
    }
}

/* Small Devices (Phones & Small Tablets) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: rgba(10, 10, 18, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: left 0.5s ease;
        z-index: 999;
        border-top: 1px solid rgba(0, 255, 156, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-role {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .role-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-container {
        width: 250px;
        height: 250px;
    }
    
    .btn {
        padding: 10px 25px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-role {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .terminal-body {
        padding: 20px 15px;
    }
    
    .terminal-output p {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .contact-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .contact-label,
    .contact-separator {
        min-width: auto;
        margin: 0;
    }
}

/* Very Small Devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-role {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .profile-container {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .roles-grid {
        gap: 8px;
    }
    
    .role-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}