/* ==========================================================================
   Annabel Pragt Portfolio - Custom Styles
   ========================================================================== */

/* Global Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #F9F4F1;
    --dark-color: #413939;
    --light-color: #ffffff;
    --text-color: #413939;
    --text-light: #6c757d;
    --navbar-color: #9FAE95;
    --background-color: #F9F4F1;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    position: relative;
    min-height: 100vh;
}

/* Decoratieve bloemetjes achtergrond */
.decorative-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.flower-left {
    position: absolute;
    left: 0;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.flower-right {
    position: absolute;
    right: 0;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.flower-left-1 {
    top: 5%;
    left: 0px;
    max-width: 250px;
    animation-delay: -2s;
}

.flower-left-2 {
    top: 55%;
    left: 0px;
    max-width: 220px;
    animation-delay: -4s;
}

.flower-right-1 {
    top: 15%;
    right: 0px;
    max-width: 240px;
    animation-delay: -1s;
}

.flower-right-2 {
    top: 65%;
    right: 0px;
    max-width: 200px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

.lead {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-color);
}

/* Bootstrap Color Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5753e6;
    border-color: #5753e6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-dark {
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background-color: var(--text-color);
    border-color: var(--text-color);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Custom Homepage Styles */
.custom-navbar {
    background-color: var(--navbar-color) !important;
    height: 125px;
    padding: 20px 0;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.custom-navbar .logo {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.custom-navbar .nav-pills .nav-link {
    background-color: white;
    color: var(--text-color);
    border-radius: 25px;
    margin: 0 5px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-navbar .nav-pills .nav-link.active {
    background-color: var(--text-color);
    color: white;
}

.custom-navbar .nav-pills .nav-link:hover {
    background-color: var(--text-color);
    color: white;
}

.decorative-pattern {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.pattern-left-1 {
    left: 10%;
    top: 20%;
    animation-delay: -0.5s;
}

.pattern-left-2 {
    left: 5%;
    top: 60%;
    animation-delay: -1s;
}

.pattern-right-1 {
    right: 10%;
    top: 30%;
    animation-delay: -1.5s;
}

.pattern-right-2 {
    right: 5%;
    top: 70%;
    animation-delay: -2s;
}

.hero-section {
    padding: 80px 0;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-color);
    margin: 30px 0 10px 0;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.hero-photo-container {
    position: relative;
    display: inline-block;
}

.hero-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 50px;
    border: 8px solid;
    border-image: linear-gradient(45deg, #ff9a9e, #fecfef, #fecfef) 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photo-overlay {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* RECENT Projects Section */
.recent-section {
    padding: 100px 0;
    position: relative;
}

.recent-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 80px;
    text-align: center;
}

.projects-container {
    position: relative;
    height: 800px;
    margin: 0 auto;
    max-width: 1200px;
}

.project-frame {
    position: absolute;
    width: 220px;
    height: 280px;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-frame:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.project-frame h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.project-frame img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.project-frame .decorative-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

/* Project positioning and colors */
.project-1 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    animation: projectFloat 6s ease-in-out infinite;
    animation-delay: 0.3s;
}

.project-2 {
    bottom: 150px;
    left: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    animation: projectFloat 6s ease-in-out infinite;
    animation-delay: 0.6s;
}

.project-3 {
    top: 100px;
    right: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    animation: projectFloat 6s ease-in-out infinite;
    animation-delay: 0.9s;
}

.project-4 {
    top: 300px;
    left: 150px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    animation: projectFloat 6s ease-in-out infinite;
    animation-delay: 1.2s;
}

.project-5 {
    bottom: 50px;
    right: 150px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    animation: projectFloat 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes projectFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Footer */
.custom-footer {
    background-image: url('../images/papier.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 40px 0;
    margin-top: 50px;
    position: relative;
}

.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
}

.custom-footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    text-align: center;
    color: var(--text-color);
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Page Styles */
.about-photo-container {
    position: relative;
    display: inline-block;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.about-photo {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border: 5px solid var(--navbar-color);
}

.floating-flower {
    position: absolute;
    animation: floatRotate 4s ease-in-out infinite;
    font-size: 2rem;
    color: var(--navbar-color);
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.flower-1 { top: 10%; left: -20%; animation-delay: 0s; }
.flower-2 { top: 20%; right: -15%; animation-delay: 0.5s; }
.flower-3 { bottom: 30%; left: -25%; animation-delay: 1s; }
.flower-4 { bottom: 20%; right: -20%; animation-delay: 1.5s; }
.flower-5 { top: 50%; left: -30%; animation-delay: 2s; }
.flower-6 { top: 70%; right: -25%; animation-delay: 2.5s; }
.flower-7 { bottom: 50%; right: -10%; animation-delay: 3s; }

.about-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-button {
    background-color: var(--navbar-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #8b9d82;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(159, 174, 149, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .decorative-flowers {
        display: none;
    }
    
    .custom-navbar {
        height: auto;
        padding: 15px 0;
    }
    
    .custom-navbar .logo {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-photo {
        width: 250px;
        height: 320px;
    }
    
    .projects-container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .project-frame {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-photo {
        width: 280px;
        height: 360px;
    }
    
    .floating-flower {
        display: none;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }
} 