/* 🌟 HERO SECTION */
.about-hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.about-title {
    font-family: "Londrina Solid";
    font-weight: 400;
    font-size: clamp(60px, 8vw, 120px);
    color: black;
    margin: 0;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #0068FF;
}

/* 📝 CONTENT SECTION */
.about-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* 📸 PHOTO STYLING */
.about-photo-container {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.photo-frame {
    position: relative;
    border: 4px solid black;
    box-shadow: 8px 8px 0 black;
    border-radius: 2px;
    overflow: hidden;
    background: white;
    z-index: 2;
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: #DD7DFF;
    border: 4px solid black;
    border-radius: 2px;
    z-index: 1;
}

/* 📄 TEXT CONTENT */
.about-text {
    font-family: "Palanquin Dark";
    color: black;
}

.about-text h2 {
    font-family: "Londrina Solid";
    font-size: 48px;
    margin: 0 0 10px 0;
}

.tagline {
    font-size: 24px;
    color: #0068FF;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 🎯 SKILLS SECTION */
.skills-section {
    background-color: white;
    padding: 60px 20px;
    margin: 60px 0;
}

.section-title {
    font-family: "Londrina Solid";
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    color: black;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-card {
    background: #FFC700;
    border: 4px solid black;
    box-shadow: 6px 6px 0 black;
    border-radius: 2px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 black;
}

.skill-card h4 {
    font-family: "Londrina Solid";
    font-size: 32px;
    margin: 0 0 15px 0;
    color: black;
}

.skill-card p {
    font-family: "Palanquin Dark";
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 🖼️ PHOTO GALLERY */
.photo-gallery-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border: 4px solid black;
    box-shadow: 6px 6px 0 black;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: url('../Images/pointer.svg'), auto;
}

.gallery-item:nth-child(2) {
    background-color: #0068FF;
}

.gallery-item:nth-child(3) {
    background-color: #DD7DFF;
}

.gallery-item:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 4px 4px 0 black;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* 📥 DOWNLOAD SECTION */
.download-section {
    background-color: #0068FF;
    padding: 60px 20px;
    margin: 60px 0;
}

.download-section .section-title {
    color: white;
}

.download-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border: 4px solid black;
    box-shadow: 6px 6px 0 black;
    border-radius: 2px;
    padding: 30px;
    width: 300px;
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
    text-align: center;
    cursor: url('../Images/pointer.svg'), auto;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 black;
    background-color: #FFC700;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.download-card h4 {
    font-family: "Londrina Solid";
    font-size: 28px;
    margin: 0 0 10px 0;
}

.download-card p {
    font-family: "Palanquin Dark";
    font-size: 16px;
    margin: 0;
}

/* 💬 CTA SECTION */
.cta-section {
    text-align: center;
    padding: 80px 20px;
}

.cta-section h3 {
    font-family: "Londrina Solid";
    font-size: 56px;
    margin-bottom: 20px;
}

.cta-section p {
    font-family: "Palanquin Dark";
    font-size: 20px;
    margin-bottom: 40px;
}

.btn-contact {
    display: inline-block;
    padding: 20px 40px;
    font-family: "Londrina Solid";
    font-size: 24px;
    background-color: #DD7DFF;
    color: black;
    border: 4px solid black;
    border-radius: 2px;
    box-shadow: 6px 6px 0 black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #0068FF;
    box-shadow: 4px 4px 0 black;
    color: white;
    transform: translateY(-2px);
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-photo-container {
        max-width: 280px;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .download-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}