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

:root {
    --soft-lavender: #e8e6f0;
    --pale-pink: #fceff9;
    --ivory: #fdfcfa;
    --moonlight-silver: #c4c4c4;
    --midnight-blue: #2c2c54;
    --glittery-gold: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    --pastel-gradient: linear-gradient(135deg, #e8e6f0, #fceff9, #fdfcfa);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background: url('assets/18777d1f-b477-4a36-ac3f-7609ff6c29d3.png');
    background-size: cover;
    background-repeat: none;
    color: var(--midnight-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196, 196, 196, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-icon {
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--midnight-blue);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.cta-button {
    background: var(--glittery-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: var(--midnight-blue);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--midnight-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--midnight-blue);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--midnight-blue);
    }
    
    /* Ensure mobile menu toggle stays visible */
    .mobile-menu-toggle.active {
        position: relative;
        z-index: 1001;
    }
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

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

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    animation: zoomInOut 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(44, 44, 84, 0.3));
}
/*
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}*/

.image-container:hover {
    animation-play-state: paused;
    transform: scale(1.08);
}

.image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 44, 84, 0.1);
    border: 4px solid white;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticker {
    position: absolute;
    font-size: 2rem;
    animation: bounce 3s ease-in-out infinite;
    z-index: 3;
}

.top-left-1 { top: -10px; left: -10px; animation-delay: 0s; }
.top-left-2 { top: 20px; left: -20px; animation-delay: 1s; }
.bottom-right-1 { bottom: -10px; right: -10px; animation-delay: 2s; }
.bottom-right-2 { bottom: 20px; right: -20px; animation-delay: 0.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-word {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.modern {
    background-color: #2c2c54;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.mystic {
    background-color: #2c2c54;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

.fairy {
    background-color: #2c2c54;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.6s;
}

.byline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #2c2c54;
    margin-top: 1rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    background: white;
    width: 168px;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
}

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

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: rgba(253, 252, 250, 0.5);
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--midnight-blue);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-left .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--midnight-blue);
    margin: 0;
    text-align: center;
}

.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-text {
    background: rgba(232, 230, 240, 0.8);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 44, 84, 0.1);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--midnight-blue);
    margin: 0;
}

.about-profile-image {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 44, 84, 0.1);
    border: 4px solid white;
    transition: transform 0.3s ease;
    animation: bounceUpDown 3s ease-in-out infinite;
}

.about-profile-image:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.portfolio-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.portfolio-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--glittery-gold);
    color: var(--midnight-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    flex: 0 0 auto;
}

.portfolio-btn:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-left {
        order: 2;
        align-items: center;
    }
    
    .about-left .section-title {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-right {
        order: 1;
    }
    
    .about-profile-image {
        width: 320px;
        height: 400px;
    }
    
    .about-text {
        padding: 1.5rem;
    }
    
    .portfolio-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .portfolio-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .fairy-badge {
        top: -10px;
        left: -15px;
        padding: 0.5rem 0.75rem;
        max-width: 150px;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .badge-line2 {
        font-size: 0.6rem;
    }
    
    .badge-sparkle {
        font-size: 1rem;
    }
    
    .badge-wing {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-left .section-title {
        font-size: 2rem;
    }
    
    .about-profile-image {
        width: 280px;
        height: 350px;
    }
    
    .about-text {
        padding: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .portfolio-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .fairy-badge {
        top: -5px;
        left: -10px;
        padding: 0.4rem 0.6rem;
        max-width: 130px;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
    
    .badge-line2 {
        font-size: 0.55rem;
    }
    
    .badge-sparkle {
        font-size: 0.9rem;
    }
    
    .badge-wing {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

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

.contact-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-profile-image {
    width: 400px;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(44, 44, 84, 0.1);
    border: 4px solid white;
    transition: transform 0.3s ease;
    animation: bounceUpDown 3s ease-in-out infinite;
}

.contact-profile-image:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-right .section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--midnight-blue);
    margin: 0;
    text-align: center;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 700px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--glittery-gold);
    color: var(--midnight-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    width: 100%;
    font-size: 0.9rem;
}

.contact-link:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-left {
        order: 1;
    }
    
    .contact-right {
        order: 2;
        align-items: center;
    }
    
    .contact-right .section-title {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .contact-profile-image {
        width: 280px;
        height: 360px;
    }
    
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-right .section-title {
        font-size: 2rem;
    }
    
    .contact-profile-image {
        width: 250px;
        height: 320px;
    }
    
    .contact-columns {
        max-width: 300px;
    }
    
    .contact-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.75rem;
    }
    
    .contact-icon {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--pastel-gradient);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(196, 196, 196, 0.2);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-sparkle {
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--midnight-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--midnight-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffd700;
}

.footer-contact-link .contact-icon {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 196, 196, 0.2);
}

.footer-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--midnight-blue);
    margin: 0 0 0.5rem 0;
}

.footer-credit {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--midnight-blue);
    margin: 0;
}

.wizard-link {
    color: var(--glittery-gold);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wizard-link:hover {
    color: #e6c200;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* Remove old social icons styles */
.social-icons {
    display: none;
}

.social-icon {
    display: none;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-name {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .home-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .image-wrapper {
        width: 320px;
        height: 380px;
    }
    
    .hero-word {
        font-size: clamp(2rem, 12vw, 4rem);
    }
    
    .byline {
        text-align: center;
        margin: 1rem auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .home-section {
        padding-top: 120px;
    }
    
    .image-wrapper {
        width: 280px;
        height: 340px;
    }
    
    .sticker {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        padding: 1.5rem;
    }
}

/* Floating Stars */
.floating-star {
    position: absolute;
    color: gold;
    font-size: 5rem;
    z-index: 10;
    pointer-events: none;
    animation: floatStar 4s ease-in-out infinite;
}

.star-1 {
    top: -50px;
    left: -20px;
    animation-delay: 1s;
}

.star-2 {
    bottom: -60px;
    right: -20px;
    animation-delay: 1s;
}

.star-3 {
    top: 10px;
    right: 500px;
    animation-delay: 1s;
    font-size: 3rem;
}

.star-4 {
    bottom: -65px;
    left: 500px;
    animation-delay: 1s;
    font-size: 3rem;
}

.star-5 {
    top: -60px;
    right: 500px;
    animation-delay: 1s;
    font-size: 3rem;
}

.star-6 {
    bottom: -10px;
    left: 500px;
    animation-delay: 1s;
    font-size: 3rem;
}

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* Mobile responsive for floating stars */
@media (max-width: 768px) {
    .floating-star {
        font-size: 3rem;
    }
    
    .star-1 {
        top: -30px;
        left: -10px;
    }
    
    .star-2 {
        bottom: -40px;
        right: -10px;
    }
    
    .star-3 {
        top: 20px;
        right: -15px;
        font-size: 2.5rem;
    }
    
    .star-4 {
        bottom: -45px;
        left: -15px;
        font-size: 2.5rem;
    }
    
    .star-5 {
        top: -40px;
        right: 50px;
        font-size: 2rem;
    }
    
    .star-6 {
        bottom: 20px;
        left: 50px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .floating-star {
        font-size: 2.5rem;
    }
    
    .star-1 {
        top: -25px;
        left: -5px;
    }
    
    .star-2 {
        bottom: -30px;
        right: -5px;
    }
    
    .star-3 {
        top: 10px;
        right: 280px;
        font-size: 2rem;
    }
    
    .star-4 {
        bottom: -40px;
        left: 280px;
        font-size: 2rem;
    }
    
    .star-5 {
        top: -35px;
        right: 280px;
        font-size: 1.8rem;
    }
    
    .star-6 {
        bottom: 5px;
        left: 280px;
        font-size: 1.8rem;
    }
}
