:root {
    --primary-color: #ff9a9e;
    --primary-dark: #ff758c;
    --secondary-color: #a18cd1;
    --accent-color: #fad0c4;
    --mint-color: #84fab0;
    --text-dark: #4a4a4a;
    --text-light: #777777;
    --white: #ffffff;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --font-script: 'Sacramento', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff9f9;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 117, 140, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 10px;
}

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

.intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
}

.intro-content {
    text-align: center;
}

.intro-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.intro-name {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--primary-dark);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s forwards 0.5s;
}

.intro-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-light);
    opacity: 0;
    animation: fadeIn 1.5s forwards 1.5s;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px auto;
    transition: 0.3s;
}

.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-img {
    flex: 1;
    position: relative;
}

.img-frame {
    width: 400px;
    height: 500px;
    border-radius: 50px 0 50px 0;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--accent-color);
    position: relative;
    margin: 0 auto;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-icon {
    position: absolute;
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
    color: var(--secondary-color);
}

.icon-2 {
    bottom: 40px;
    right: -30px;
    animation-delay: 1.5s;
    color: var(--primary-color);
}

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

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -50px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #e0c3fc;
    bottom: 50px;
    right: -150px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.bg-light {
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.credentials {
    margin-top: 20px;
}

.credentials li {
    margin-bottom: 10px;
    font-weight: 500;
}

.credentials i {
    color: var(--secondary-color);
    margin-right: 10px;
}

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

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

.card-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    z-index: 5;
    position: relative;
}

.blog-post {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 117, 140, 0.2);
    border-color: var(--primary-color);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

.blog-post:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.tag {
    background: #e0f7fa;
    color: #006064;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.post-content h3 {
    margin: 10px 0;
    font-family: var(--font-heading);
}

.bg-pattern {
    background-color: #fce4ec;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    margin-right: 15px;
}

.contact-form {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
}

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

footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-logo h3 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .img-frame {
        width: 300px;
        height: 380px;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .contact-wrapper {
        padding: 30px;
    }

    .intro-name {
        font-size: 2rem;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 74, 74, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--accent-color);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: 0.3s;
}

.modal-close-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.modal-badge {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.modal-body {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
}

.modal-footer {
    text-align: center;
}

.about-img .img-frame {
    border-radius: 0 50px 0 50px; 
    margin: 0;
}

@media (max-width: 768px) {
    .about-img .img-frame {
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    font-size: 2.2rem;
    margin-right: 20px;
    color: var(--secondary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

