@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --transparent-color: rgba(8, 27, 41, 0);
    --primary-color: #f75c03;
    --secondary-color: #fcf6f3;
    --text-color: #000000;
    --accent-color: #0ef;
    --card-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
    --gradient-color: linear-gradient(rgba(8, 27, 41, 0.8), rgba(8, 27, 41, 0.8));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body::-webkit-scrollbar {
  display: none;
}

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


/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(179, 154, 129, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 10%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 25px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}
/*
Removed
.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}
*/
.navbar {
    display: flex;
}

.navbar a {
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: var(--transition);
    position: relative;
}

.navbar a:hover, .navbar a.active {
    color: var(--primary-color);
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar a:hover::after, .navbar a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Home Section */
.home {
    height: 100vh;
    background: linear-gradient(rgba(201, 106, 43, 0.3), rgb(252, 246, 243)), url('visuals/Template (2).png') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    
}

lue-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 144, 0, 0.2) 0%, rgba(8, 27, 41, 0.7) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.home-content {
    max-width: 600px;
    z-index: 2;
}

.home-content h1 {
    position: relative;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
/*
Removed
.home-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    animation: showRight 1s ease forwards;
    animation-delay: 1s;
}
*/
.home-content h3 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}
/*
Removed
.home-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    animation: showRight 1s ease forwards;
    animation-delay: 1.3s;
}
*/
.home-content p {
    position: relative;
    font-size: 16px;
    margin: 20px 0 40px;
    line-height: 1.6;
}
/*
Removed
.home-content p::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    animation: showRight 1s ease forwards;
    animation-delay: 1.6s;
} 
*/
.btn-box {
    position: relative;
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 350px;
    height: 50px;
}
/*
Removed
.btn-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    animation: showRight 1s ease forwards;
    animation-delay: 1.9s;
    z-index: 2;
}
*/
.btn-primary, .btn-secondary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    height: 100%;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
    flex: 1;
}

.btn-secondary {
    background: var(--transparent-color);
    color: var(--primary-color);
}

.btn-primary:hover, .btn-secondary:hover {
    color: var(--primary-color);
    background: var(--transparent-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 100%;
    background: var(--transparent-color);
    z-index: -1;
    transition: var(--transition);
}

.btn-secondary::before {
    background: var(--primary-color);
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 100%;
}

.home-sci {
    position: absolute;
    bottom: 40px;
    width: 200px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
/*
Removed
.home-sci::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    animation: showRight 1s ease forwards;
    animation-delay: 2.5s;
    z-index: 2;
}
*/
.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.home-sci a:hover {
    color: var(--secondary-color);
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.home-sci a:hover::before {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    font-size: 14px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    margin-top: 5px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 30px;
}

.skills {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-item span {
    display: block;
    margin-bottom: 5px;
}

.skill-bar {
    height: 10px;
    background: rgba(240, 144, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 5px;
    width: 0;
    transition: width 2.5s ease;
    box-shadow: 10 10 120px var(--primary-color); /* try ts */
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center; /* very important shyt */
}

.about-pfp {
    width: 260px;
    height: 260px; /* u can edit pfp size here */
    border-radius: 20px; /* or 50% for circle, less for smoth edges, 20px prefered */
    object-fit: cover;
    box-shadow: 0 0 25px rgba(247, 92, 3, 0.35);
    border: 3px solid rgba(247, 92, 3, 0.9);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
}

.image-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background: linear-gradient(rgb(252, 246, 243), rgba(182, 155, 123, 0.678), rgb(252, 246, 243)), url('visuals/orange.jpg') no-repeat center top;
  /*  background: rgba(0, 0, 0, 0.2); */
  /*  background: url(miku3.jpg); */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(rgba(255, 232, 203, 0.4), rgba(252, 246, 243, 0.005));
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: 0 0 25px rgba(185, 117, 14, 0.664);
    border-radius: 10px;
  /*  background-color: #081b29; 
    mix-blend-mode: lighten; */
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    line-height: 1.6;
}

/* Contact Section email/name ect .... */
.contact-content {
    align-items: center;
}

/* Make the contact section expand to fill available viewport height
   so the footer stays at the bottom and no extra background shows */
.contact {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.contact-info p {
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.contacthtml {
    flex: 1 0 auto;
    padding: 78px 0px;
    padding-bottom: 0px;
    display: flex;
    /* background image for contact page */
    background: linear-gradient(rgba(201, 106, 43, 0.18), rgba(252, 246, 243, 0.0)), url('visuals/Template.png') no-repeat center center;
    background-size: cover;
    margin-left: 0px;
    
}

.contact-container {
    min-width: 60vh;
    min-height: 87.65vh;
    max-width: 1200px;
    height: 100%;
    margin: 0px;
    padding: 20px 50px;
    padding-right: 500px;
    padding-bottom: 0px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.50), rgb(255, 255, 255, 0.50), rgb(255, 255, 255, 0.50), rgba(252, 246, 243, 0.0));
}

.contact-details {
    display: grid;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

.contact-header {
    color: #ff2600;
    /*background: radial-gradient(rgba(255, 255, 255, 0.041), rgba(255, 255, 255, 0));*/
}

/* .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
} */

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.082);
    border-radius: 10px;
    border: 1px solid #f75c03;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-item span {
    font-weight: 500;
    transition: var(--transition);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* contact form --------------------------------------------- */   
/*.form-group {
    position: relative;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
} 

.form-group textarea {
    resize: vertical;
    min-height: 120px;
} */

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-container {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid #f75c03;
    backdrop-filter: blur(10px);
    overflow: hidden;
    margin-bottom: 25px;
    /*background:radial-gradient(rgba(255, 255, 255, 0.712), rgba(255, 255, 255, 0.377));
    -webkit-backdrop-filter: invert(40%);
    backdrop-filter: invert(20%);*/
}

.form-group {
    position: relative;
    border-bottom: 1px solid #f75c03;
}

.form-group:last-of-type {
    border-bottom: none;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 25px 20px 10px 60px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.form-group textarea {
    padding: 25px 20px 15px 60px;
    resize: none;
    min-height: 120px;
}

.form-group i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
    z-index: 2;
}

.form-group textarea + i {
    top: 30px;
    transform: none;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
    pointer-events: none;
    transition: var(--transition);
    font-weight: 400;
}

.form-group textarea + label {
    top: 30px;
    transform: none;
}

/* Focus States */
.form-group input:focus, 
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.03);
}

.form-group:focus-within {
    background: rgba(255, 255, 255, 0.03);
}

.form-group input:focus ~ i,
.form-group textarea:focus ~ i {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.form-group textarea:focus ~ i {
    transform: scale(1.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 15px;
    font-size: 12px;
    color: var(--primary-color);
    transform: none;
    font-weight: 500;
}

/* Button */
.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 350px;
    height: 45px;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
}

/* ------------------------------------------------------------------------- */
/* Footer */
.footer {
    /*background: rgba(0, 0, 0, 0.3); */
    background: linear-gradient(rgb(150, 74, 36, 0.4), rgba(172, 75, 11, 0.8)), url('visuals/orange.jpg') no-repeat;
    background-position: top;
    padding: 30px 0;
    text-align: center;
}

/* end of the the html structure css */
/* Animation section */
@keyframes showRight {
    100% {
        width: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive styles shyt */
@media (max-width: 992px) {
    .home-content h1 {
        font-size: 48px;
    }
    
    .home-content h3 {
        font-size: 28px;
    }
    
    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 5%;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.active {
        right: 0;
    }
    
    .navbar a {
        margin: 15px 0;
        font-size: 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .home {
        padding: 0 5%;
        text-align: center;
    }
    
    .home-content h1 {
        font-size: 40px;
    }
    
    .home-content h3 {
        font-size: 24px;
    }
    
    .btn-box {
        flex-direction: column;
        height: auto;
        gap: 15px;
        max-width: 100%;
    }
    
    .btn-primary::before, .btn-secondary {
        height: 50px;
    }
    
    .home-sci {
        position: relative;
        bottom: auto;
        margin-top: 50px;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    
    section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 32px;
    }
    
    .home-content h3 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-content, .contact-content {
        gap: 30px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
}

/* experimental intreactive effect 

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 171, 240, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 6s;
}

.shape-2 {
    width: 130px;
    height: 130px;
    top: 60%;
    right: 10%;
    border-radius: 45% 55% 53% 47% / 48% 30% 70% 52% ;
    animation-delay: 7s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.shape:hover {
    background: var(--secondary-color);
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

@keyframes float {
    -50%, 100% { transform: translateZ(0px) rotate(90deg); }
    30% { transform: translateY(-60px) rotate(180deg); }
    30% { transform: translateX(-40px) rotate(0deg); }
}

 /* experimental float end */

 /* experimental profile view counter */
 /* .view-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
    align-items: center;

}

.view-counter i {
    font-size: 20px;
    color: #4da6ff;
}

.view-counter strong {
    font-size: 18px;
    color: #4da6ff;
}

     experimental profile view counter end */
     /* worst feature in the history of coding got it from cheapass ai  */




 /* ect notes, try to read html class names for better understanding */
 /* use ctrl f to find specific class names */
 /* use variables for colors */
 /* try to keep code clean and organized */
 /* use comments to separate sections */
 /* use <!-- --> for html comments very useful */
 /* you can use css comments like this also */
 /* try to use flexbox and grid for layout */
 /* rely on relative units like %, em, rem for better responsiveness */
 /* hover effects for buttons and links */
 /* hover works on mobile too try it */
 /* use blur and transparency for modern look */
 /* use box-shadow for depth */
 /* use transitions for smooth effects */
 /* try to avoid fixed widths and heights */
 /* test stuff sometimes breaks idk why */
 /* don't be afraid to experiment */
 /* use divs to group elements it can help with styling every div is part of box model */
 /* use keyframes for animations */
 /* use youtube it's not cheating */
 /* google is your friend but never ctrl c ctrl v */
 /* w3schools is a good resource */
 /* mdn web docs is even better for reference */
 /* try to design first on paper or design software */
 /* plan your layout and colors */
 /* never stop learning */
 /* js hard but useful */
 /* try to learn basics of js */
 /* practice makes perfect */
 /* dont forget <DOCTYPE html> */
 /* use extentions why not */
 /* snippets are useful */
 /* don't forget Tab for auto complete */
 /* html is not A PROGRAMMING language it's markup */   
 /* CSS is not A PROGRAMMING language it's styling */
 /* but js is A PROGRAMMING language */
 /* DISPLAY FLEX is life */
 /* justify-content center is love */
 /* center items is happiness */
 /* don't forget padding and margin */
 /* use background color before mix-blend-mode */
 /* blend mods also work with everything */
 /* github is good for version control */
 /* never show html without style.css */
 /* you can use multiple css files to avoid long code(whatever you want)*/
 /* always link css files in head */
 /* class and id are different */
 /* id is unique class can be reused */
 /* you dont need full css document for small edits */
 /* follow tutorials but don't use their code directly */
 /* try to understand the code */
 /* use comments to remind yourself, future you will thank present you */
 /* use fa-icons for icons, bx-icons is also good */
 /* google fonts for better typography */
 /* record your progress flexing is important :3 */
 /* negative comments are just jealousy ignore them */
 /* be proud of your work one day it will pay off */
 /* githug.io for hosting portfolio */
 /* luck doesn't exist hard work does */
 /* sometimes it goes hard sometimes down but never delete lines you worked on */
 /* perfection for god, not humans */
 /* bring joy not stress and seriousness */
 /* homework is important but your code is more important haha */
 /* best mood when something works */
 /* impress others with your creativity inspire them too */
 /* learn to keyboard-only no mouse */
 /* coding dosent mean adding random shyt */
 /* touch grass sometimes */
 /* it's a shame to not learn from mistakes (i still do it tho) */
 /* don't pay for tutorials documentation is everything */
 /* happy coding :) */

 /* ------------------------------------------ */
 /* extra features added below */
 /* might bloat code */
 /* it will focus on adding new sections and updating existing ones */



 /* Skill Read Cards Section */
 /* added some extra flair to skills section */
 /* why not :) */
 /* suggested by inspiration */
 /* added for easy access to skills overview */
.skill-read {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.skill-read-card {
    background: rgba(245, 214, 168, 0.3);
    backdrop-filter: blur(5px);
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    flex: 1;
    min-width: 120px;
}

.skill-read-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.3);
}

.skill-card-info {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    display: block;
}

.skill-read-card p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .skill-read {
        gap: 15px;
    }
    
    .skill-read-card {
        padding: 20px 10px;
        min-width: 100px;
    }
    
    .skill-card-info {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .skill-read {
        flex-direction: column;
        gap: 15px;
    }
    
    .skill-read-card {
        min-width: auto;
    }
}

/* idk i will add missing hovers and stuff */ 


.image-frame {
    position: relative;
    transition: var(--transition);
}

.image-frame:hover {
    transform: scale(1.05);
}

.about-pfp {
    transition: var(--transition);
}

.image-frame:hover .about-pfp {
    transform: scale(1.1);
}

.image-glow {
    transition: var(--transition);
}

.image-frame:hover .image-glow {
    opacity: 0.5;
    filter: blur(25px);
}


/* Service Features */
.service-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

/* Service Extras (feels crazy) */
.serv-extras {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.serv-extras p {
    font-size: 13px;
    margin: 4px 0;
    padding-left: 18px;
    position: relative;
    opacity: 0.8;
}

.serv-extras p::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Center Contact CTA on main page */
.contact-cta .container {
    place-self: center;
    text-align: center;
}
.contact-cta p {
    max-width: 800px;
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 1.6;
}
.contact-cta .btn-box {
    justify-content: center;
    align-items: center;
}

/*Button outline feature*/

.btn-outline {
  position: relative;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  overflow: hidden;
}

.btn-outline::before,
.btn-outline::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #00f0ff;
  transition: width 0.3s ease;
}

.btn-outline::before {
  top: 0;
  left: 0;
}

.btn-outline::after {
  bottom: 0;
  right: 0;
}

.btn-outline span::before,
.btn-outline span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background: #00f0ff;
  transition: height 0.3s ease 0.3s;
}

.btn-outline span::before {
  top: 0;
  right: 0;
}

.btn-outline span::after {
  bottom: 0;
  left: 0;
}

.btn-outline:hover::before,
.btn-outline:hover::after {
  width: 100%;
}

.btn-outline:hover span::before,
.btn-outline:hover span::after {
  height: 100%;
}
