/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Feminine & Modern Palette */
    --primary-pink: #d4a5a5;
    --dusty-blue: #8fa3b0;
    --warm-cream: #faf8f5;
    --soft-black: #2a2a2a;
    --charcoal: #3a3a3a;
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --medium-grey: #e0e0e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4a5a5 0%, #b89090 100%);
    --gradient-secondary: linear-gradient(135deg, #8fa3b0 0%, #7a8fa0 100%);
    --gradient-soft: linear-gradient(135deg, #faf8f5 0%, #f0ebe5 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 20px;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--soft-black);
    background-color: var(--warm-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary-pink);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--soft-black);
    margin-bottom: 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-pink);
    transition: var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--soft-black);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-pink);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-soft);
    padding-top: 80px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--soft-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    display: block;
}

.hero-title .delay-1 {
    color: var(--primary-pink);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--dusty-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--dusty-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    max-width: 700px;
}

.about-greeting {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
}

.about-text strong {
    color: var(--soft-black);
    font-weight: 600;
}

.about-cta {
    margin-top: 40px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--gradient-soft);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.highlight-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--soft-black);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.service-card:hover .service-icon {
    animation: none;
    transform: scale(1.2);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--soft-black);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.6;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: var(--white);
}

.portfolio-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.category-description {
    font-size: 16px;
    color: var(--dusty-blue);
    margin-bottom: 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background: var(--gradient-soft);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-pink);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.portfolio-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 8px;
}

.portfolio-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.portfolio-item p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--light-grey);
    
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-text h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--soft-black);
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 18px;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 15px;

}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.email-card:hover {
    border-color: var(--primary-pink);
}

.instagram-card:hover {
    border-color: #E4405F;
}

.linkedin-card:hover {
    border-color: #0077B5;
}

.facebook-card:hover {
    border-color: #1877F2;
}

.tiktok-card:hover {
    border-color: #000000;
}

.social-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dusty-blue);
}

.social-handle {
    font-size: 16px;
    font-weight: 500;
    color: var(--soft-black);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--soft-black);
    color: var(--white);
    padding: 20px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-tagline {
    color: var(--primary-pink);
    font-style: italic;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.delay-1 {
    transition-delay: 0.2s;
}

.fade-in.delay-2 {
    transition-delay: 0.4s;
}

.fade-in.delay-3 {
    transition-delay: 0.6s;
}

.fade-in.delay-4 {
    transition-delay: 0.8s;
}

.fade-in.delay-5 {
    transition-delay: 1s;
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 0.8s ease forwards;
}

.reveal-text.delay-1 {
    animation-delay: 0.2s;
}

.reveal-text.delay-2 {
    animation-delay: 0.4s;
}

.reveal-text.delay-3 {
    animation-delay: 0.6s;
}

.reveal-text.delay-4 {
    animation-delay: 0.8s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .highlight-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {

    


    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--warm-cream);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }

    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .about-highlights {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .contact-text h3 {
        font-size: 28px;
    }
    
    .contact-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 20px;
        overflow:hidden;
    }
    
    .shape {
        opacity: 0.08;
    }

        
    /*.contact-content {
        padding: 0;
    }
    
    .contact-content .contact-text {
        padding: 0 10px;
    } 
    
    .social-links {
        padding: 0 10px;
    } */

    /*.contact-content .contact-text{
        padding-right:200px;
        margin:auto;
    }

    .contact-content .social-links{
         padding-right:200px;
        margin:auto;
    }

    /*.contact-content .social-card{
        padding-right:200px;
        margin:auto;
    }*/
    
    

}



/* General icon sizing */
.social-icon i {
    font-size: 1.5rem; /* Adjust size as needed */
}

/* Optional: Add brand colors on hover or as the icon color */
.instagram-card .social-icon { color: #E1306C; }
.linkedin-card .social-icon { color: #0077B5; }
.facebook-card .social-icon { color: #1877F2; }
.tiktok-card .social-icon { color: #000000; }
.email-card .social-icon { color: #EA4335; }
