
/* Landing Page Specific Styles */

/* Scroll Snap Configuration */
html {
    /* scroll-snap-type: y mandatory; */
    scroll-behavior: smooth;
    scroll-padding: 70px 0 0 0;
}

.hero-landing {
    background-image: url('../../assets/BeautyPlus-image-extender.jpeg');
    background-image: url('../../assets/Gemini_Generated_Image_jp4hz9jp4hz9jp4h.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    /* min-height: 100dvh; */
    display: flex;
    align-items:flex-start;
    color: white;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.hero-landing > .container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1;
}

/* Notice Banner Styles */
.notice-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(255, 255, 255, 0.771);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 3;
}

.notice-content {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: scrollNoticeInfinite 60s linear infinite;
    width: fit-content;
}

.notice-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    text-shadow: 0 0 10px rgba(142, 142, 142, 0.9);
    padding-left: 5rem;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes scrollNoticeInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 800px;
    padding: var(--spacing-xs);
    animation: fadeInUp 1s ease-out;
}

.hero-menu-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    padding: 0 0 0 15px;
}

.hero-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    margin-bottom: 4rem;
}

.hero-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, left 0.3s ease, opacity 0.35s ease, transform 0.35s ease;
    font-family: inherit;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: inherit;
    letter-spacing: normal;
    text-shadow: 2px 3px #000;
    display: inline-block;
    width: fit-content;
    position: relative;
    left: 0;
    opacity: 0;
    transform: translateX(-24px);
    animation: menuSlideIn 0.55s ease forwards;
}

.hero-menu a:hover {
    color: var(--primary);
    left: 10px;
}

.hero-landing h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    animation: fadeInUp 1s ease-out 0.05s both;
    color: rgb(255, 255, 255);
    text-shadow: 7px 8px #000;
    mix-blend-mode: difference;
}

.hero-subtitle {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: rgb(225, 225, 225);
    text-shadow: 6px 6px #000;
    padding-left: 10px;
}

.hero-menu a:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-menu a:nth-child(2) {
    animation-delay: 0.22s;
}

.hero-menu a:nth-child(3) {
    animation-delay: 0.34s;
}

.hero-menu a:nth-child(4) {
    animation-delay: 0.46s;
}

.hero-menu a:nth-child(5) {
    animation-delay: 0.58s;
}

@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.about-section {
    padding: 5rem 4rem;
    background:#eee;
    scroll-snap-align: start;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.about-text{
    padding: 1.5rem 0;
    padding-right: 3rem;
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.about-text p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: #1f1f1f;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: 650px;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--box-shadow-lg);
}

/* Skills & Tools Section */
.skills-section {
    padding: 5rem 0;
    background: #ffffff;
    scroll-snap-align: center;
}

.skills-header {
    text-align: center;
    margin-bottom: 4rem;
}

.skills-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.skills-subtitle {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1440px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    transition: all 0.3s ease;
    transform: translateY(0px);
    cursor: pointer;
    min-width: 120px;
    animation: skillHover 16.5s infinite;
}

.skill-item:nth-child(1) { animation-delay: 0s; }
.skill-item:nth-child(2) { animation-delay: 1.5s; }
.skill-item:nth-child(3) { animation-delay: 3s; }
.skill-item:nth-child(4) { animation-delay: 4.5s; }
.skill-item:nth-child(5) { animation-delay: 6s; }
.skill-item:nth-child(6) { animation-delay: 7.5s; }
.skill-item:nth-child(7) { animation-delay: 9s; }
.skill-item:nth-child(8) { animation-delay: 10.5s; }
.skill-item:nth-child(9) { animation-delay: 12s; }
.skill-item:nth-child(10) { animation-delay: 13.5s; }

.skill-item:hover {
    transform: translateY(-8px);
    animation-play-state: paused;
}

.skill-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease-in;
    animation: skillIconScale 16.5s infinite;
    animation-delay: inherit;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(0);
    transition: filter 0.3s ease-in;
    animation: skillIconFilter 16.5s infinite;
    animation-delay: inherit;
}

.skill-item:hover .skill-icon {
    transform: scale(1.08);
    animation-play-state: paused;
}

.skill-item:hover .skill-icon img {
    filter: none;
    animation-play-state: paused;
}

/* Skill Hover Animation Keyframes */
@keyframes skillHover {
    0%, 15% {transform: translateY(0);}
    5%, 10% {transform: translateY(-8px);}
}

@keyframes skillIconScale {
    0%, 15% {transform: scale(1);}
    5%, 10% {transform: scale(1.08);}
}

@keyframes skillIconFilter {
    0%, 15% {filter: saturate(0);}
    5%, 10% {filter: none;}
}

.skill-name {
    margin-top: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    text-align: center;
    line-height: 1.2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




    
@media (max-width: 1100px) {
    .about-text{padding: 2rem 2rem;}
    .about-text p{font-size: 1rem; font-weight: 400;}
        
}
/* Mobile Footer Styles */
@media (max-width: 840px) {
    /* ======= Hero Section ======= */
    .hero-landing h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        padding-left: 0;        
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Notice Banner Mobile */
    .notice-banner {
        height: 35px;
    }
    
    .notice-text {
        font-size: 0.9rem;
    }
    .about-section{
        padding: 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .about-grid .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 300px;
        width: 100%;
    }
    .about-text h2 {
        font-size: 2rem;
    }
    
    .skills-section {
        padding: 3rem 1rem;
    }
    .skills-grid {
        justify-content: space-around;
        gap: 0;
    }
    .skill-icon {
        width: 80px;
        height: 80px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

}

@media (max-width: 768px) {
    /* Disable scroll snap on mobile for better touch scrolling */
    html {scroll-snap-type: none;}
}
/* ========================== */
@media (max-width: 480px) {
    /* .hero-landing h1{
        text-align: left;
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-menu a {
        font-size: 0.9rem;
    } */
    .about-text p {font-size: .85rem; }
    .skill-item {
        padding: 1rem;
        min-width: 0;
    }
    .skill-icon{
        width: 65px;
        height: 65px;
    }
    .skill-name{
        font-size: 0.9rem;
    }
    
    /* Notice Banner Extra Small Mobile */
    .notice-banner {
        height: 32px;
    }
    
    .notice-text {
        font-size: 0.8rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    scroll-snap-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}

/* Contact Info Styles */
.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
}


.contact-item h4 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #2d3436;
    line-height: 1.6;
    margin: 0;
}
.contact-item p span{
    font-size: 1rem;
    font-weight: 600;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: none;
}

.contact-social {
    margin-top: 3rem;
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #636e72;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: #2d3436;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #636e72;
    transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-form {
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #636e72;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #ced4da;
    background: #f1f3f4;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3436;
    transition: all 0.3s ease;
    resize: vertical;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #e8eaed;
    box-shadow: 0 0 0 3px rgba(45, 52, 54, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #0b0d0e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #636e72;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 52, 54, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0 0 0 ;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0;
    }
    .contact-item{display: flex;margin: 0;}
    
    .contact-info {padding: .5rem 1rem;}
    .contact-info h2 {font-size: 2.5rem;}
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-social{margin-top: 2rem;}
    .social-links {
        justify-content: flex-start;
    }
    
    .contact-form{
        background: #fff;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info h2,
    .contact-info .contact-item p{text-align: center; width: 100%;}
    .contact-item p{font-size: 0.9rem;}
    .social-links {justify-content: center;}
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-social h4{display: none;}
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
}
