/* Responsive Design for Portfolio Website */

/* General Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 90%;
        padding: 0 20px;
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    /* Header and Navigation */
    .menu-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 60px;
        transition: right 0.4s ease;
        z-index: 100;
    }
    
    .menu-items.active {
        right: 0;
    }
    
    .menu-btn {
        display: block;
        z-index: 101;
    }
    
    /* Hero Section */
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-image {
        width: 80%;
        margin: 0 auto;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 60%;
        margin: 0 auto 40px;
    }
    
    .about-text {
        width: 100%;
    }
    
    /* Skills Section */
    .skills-holographic-container {
        width: 100%;
        overflow: hidden;
    }
    
    .skill-icon.holo {
        max-width: 80px;
    }
    
    /* Projects Section */
    .projects-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Contact Section */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header */
    .logo {
        font-size: 24px;
    }
    
    /* Section Headings */
    .section-header h2 {
        font-size: 32px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        margin: 10px 0;
        width: 80%;
    }
    
    /* Skills Section */
    .skills-category {
        margin-bottom: 20px;
    }
    
    .skills-icons-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .skill-icon.holo {
        margin: 10px;
        max-width: 60px;
    }
    
    /* Projects Section */
    .projects-page {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        margin-bottom: 20px;
    }
    
    .project-technologies {
        flex-wrap: wrap;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact, .footer-social {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Very Small Devices */
@media (max-width: 480px) {
    /* Header */
    .logo-text {
        font-size: 20px;
    }
    
    /* About Section */
    .about-image {
        width: 80%;
    }
    
    /* Skills Section */
    .skill-icon.holo {
        max-width: 50px;
    }
    
    /* Project Cards */
    .project-title-text {
        font-size: 18px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    /* Form Elements */
    input, textarea {
        font-size: 14px;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
}
