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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #73bc7b;
    --accent-color: #73bc7b;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --paper-bg: #f9f6f0;
    --tape-color: #73bc7b;
    --shadow: 0 4px 6px rgba(115, 188, 123, 0.15);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.year {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: black;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.tape-decoration {
    display: inline-block;
    background: #e8f5e8;
    color: #1a1a1a;
    padding: 10px 30px;
    transform: rotate(-2deg);
    font-weight: 700;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
    margin-bottom: 1rem;
    position: relative;
    border-radius: 50px;
}

.tape-decoration::before,
.tape-decoration::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(115, 188, 123, 0.1);
    top: 50%;
    transform: translateY(-50%);
}

.tape-decoration::before {
    left: 5px;
    border-radius: 50%;
}

.tape-decoration::after {
    right: 5px;
    border-radius: 50%;
}

.hero-name {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 1rem 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

.hero-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #73bc7b;
    color: white;
    box-shadow: inset 0 2px 4px rgba(115, 188, 123, 0.3);
}

.btn-primary:hover {
    background: #73bc7b;
    transform: translateY(-2px);
    box-shadow: inset 0 3px 6px rgba(115, 188, 123, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #73bc7b;
    border: 2px solid #73bc7b;
}

.btn-secondary:hover {
    background: #73bc7b;
    color: white;
}

.hero-quote {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    margin-top: 2rem;
}

.hero-image {
    flex: 0 0 400px;
    position: relative;
}

.polaroid-frame {
    background: white;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(5deg);
    transition: transform 0.3s;
}

.polaroid-frame:hover {
    transform: rotate(0deg) scale(1.05);
}

.polaroid-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.polaroid-caption {
    text-align: center;
    padding: 10px 0;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f9f9f9;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-details {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    color: #73bc7b;
    font-size: 1.2rem;
}

.notebook-style {
    background: #e8f5e8;
    padding: 30px;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
    position: relative;
    transform: rotate(-2deg);
    border-radius: 15px;
}

.notebook-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: #73bc7b;
}

.notebook-style h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notebook-style ul {
    list-style: none;
    padding-left: 60px;
}

.notebook-style li {
    padding: 8px 0;
    position: relative;
}

.notebook-style li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background: white;
}

.experience .section-title {
    color: var(--primary-color);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #73bc7b;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #73bc7b;
    border: 4px solid white;
    border-radius: 50%;
    z-index: 1;
}

.timeline-date {
    flex: 0 0 45%;
    text-align: right;
    padding-right: 3rem;
    color: #73bc7b;
    font-weight: 600;
}

.timeline-content {
    flex: 0 0 45%;
    padding-left: 3rem;
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
    transform: rotate(-1deg);
    border: none;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #73bc7b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #73bc7b;
}

/* Projects Section */
.projects {
    padding: 5rem 0;
    background: #f9f9f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: none;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
    margin-bottom: 1.5rem;
}

.polaroid-style {
    background: white;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.polaroid-style img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(3deg);
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tech span {
    background: var(--light-bg);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Skills Section */
.skills {
    padding: 5rem 0;
    background: white;
}

.skills .section-title {
    color: var(--primary-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
}

.skill-category h3 {
    color: #73bc7b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-category i {
    font-size: 1.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags span {
    background: rgba(115, 188, 123, 0.1);
    color: #73bc7b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #73bc7b;
    transition: all 0.3s;
}

.skill-tags span:hover {
    transform: translateY(-2px);
}

/* Peace of Mind Section */
.peace-of-mind {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.peace-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.instagram-content {
    max-width: 100%;
    margin: 3rem auto;
    text-align: center;
}

.instagram-subtitle {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.instagram-handle {
    font-size: 1.3rem;
    color: #73bc7b;
    font-weight: 600;
    margin-bottom: 3rem;
    display: block;
}

/* Stories Row - Instagram Story Style */
.stories-row {
    display: flex;
    gap: 1rem;
    margin: 3rem auto;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
}

.story-video {
    flex: 0 0 auto;
    width: 140px;
    position: relative;
}

.story-video video {
    width: 140px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    background: #000;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(115, 188, 123, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.story-video:hover video {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(115, 188, 123, 0.3),
        inset 0 0 20px rgba(115, 188, 123, 0.2);
}

.story-title {
    text-align: center;
    padding: 0.5rem 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .stories-row {
        padding: 1rem;
        gap: 0.5rem;
        overflow-x: auto;
    }
    
    .story-video {
        width: 100px;
    }
    
    .story-video video {
        width: 100px;
        height: 178px;
    }
    
    .story-title {
        font-size: 0.75rem;
    }
}

.instagram-follow-section {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: #e8f5e8;
    border-radius: 20px;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
}

.instagram-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.follow-instagram {
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9f9f9;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-card {
    background: #e8f5e8;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
    transform: rotate(-1deg);
    position: relative;
    border-radius: 15px;
}

.contact-header {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    background: #73bc7b;
    color: white;
    padding: 5px 30px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-item i {
    color: #73bc7b;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: black;
    padding: 2rem 0;
    text-align: center;
    border-top: none;
    margin: 20px auto 20px auto;
    width: 90%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Instagram Stories Section */
.instagram-stories-section {
    margin-bottom: 2rem;
}

.stories-title {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stories-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.story-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-carousel {
    width: 200px;
    height: 350px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story.active {
    opacity: 1;
}

.story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.story-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.story-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.story-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.story-prev {
    left: -60px;
}

.story-next {
    right: -60px;
}

.story-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #73bc7b;
    width: 25px;
    border-radius: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: black;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-item::before {
        left: 0;
    }
    
    .timeline-date {
        text-align: left;
        padding-right: 0;
        padding-left: 2rem;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        padding-left: 2rem;
        width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
}