@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    overflow-x: hidden;
    position: relative;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #9C27B0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #7B1FA2;
}

/* Notes Animation */
.notes-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(to bottom, #F3E5F5, #f9f9f9);
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.note {
    position: absolute;
    width: 80px;
    height: 100px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: floatNote 20s linear infinite;
    opacity: 0.7;
}

.note:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    width: 60px;
    height: 2px;
    background: rgba(156, 39, 176, 0.3);
    box-shadow: 0 10px 0 rgba(156, 39, 176, 0.3), 0 20px 0 rgba(156, 39, 176, 0.3), 0 30px 0 rgba(156, 39, 176, 0.3), 0 40px 0 rgba(156, 39, 176, 0.3);
}

.note1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(5deg);
}

.note2 {
    top: 30%;
    left: 20%;
    animation-delay: 2s;
    transform: rotate(-8deg);
}

.note3 {
    top: 15%;
    right: 15%;
    animation-delay: 4s;
    transform: rotate(10deg);
}

.note4 {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
    transform: rotate(-5deg);
}

.note5 {
    bottom: 20%;
    left: 15%;
    animation-delay: 8s;
    transform: rotate(7deg);
}

.note6 {
    bottom: 30%;
    right: 10%;
    animation-delay: 10s;
    transform: rotate(-12deg);
}

@keyframes floatNote {
    0% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50px) rotate(var(--rotation, 0deg));
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
        opacity: 0.7;
    }
}

.pen-animation {
    position: absolute;
    top: 60%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(156, 39, 176, 0.1);
}

.pen {
    position: absolute;
    top: -15px;
    left: 0;
    width: 30px;
    height: 30px;
    background: #9C27B0;
    border-radius: 50% 50% 0 50%;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}

.pen-trail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(156, 39, 176, 0.3);
    width: 0;
}

/* Container and Logo */
.container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px solid #BA68C8;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.container .logo-img {
    height: 120px;
    border-radius: 15px;
    transition: transform 0.5s ease;
    background: transparent;
}

.container .logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.container .bg-text {
    font-size: 60px;
    font-weight: bolder;
    color: #9C27B0;
    background: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Description */
.description {
    font-weight: 600;
    font-size: 20px;
    margin-top: 30px;
    color: #333;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    animation: slideUp 1s ease-in-out;
}

/* App Showcase */
.app-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 100px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.showcase-content {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.showcase-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.showcase-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #9C27B0;
}

.showcase-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #9C27B0;
    font-size: 20px;
}

.feature-item span {
    font-size: 16px;
    color: #333;
}

.showcase-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.showcase-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.phone-mockup {
    width: 280px;
    height: 550px;
    background: #333;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.note-preview {
    padding: 20px;
}

.note-header {
    height: 30px;
    background: #F3E5F5;
    margin-bottom: 20px;
    border-radius: 5px;
}

.note-line {
    height: 15px;
    background: #F3E5F5;
    margin-bottom: 15px;
    border-radius: 3px;
    width: 100%;
}

.note-line.short {
    width: 70%;
}

/* Mouse Scroll Animated */
.middle {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.mouse {
    width: 25px;
    right: 40px;
    bottom: 40px;
    height: 36px;
    border: 2px solid #9C27B0;
    border-radius: 60px;
    position: fixed;
}

.mouse::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 8px;
    background: #9C27B0;
    left: 40%;
    border-radius: 50%;
    opacity: 1;
    animation: mouse 2s infinite;
}

@keyframes mouse {
    from {
        opacity: 1;
        top: 5px;
    }
    to {
        opacity: 0;
        top: 20px;
    }
}

/* Key Features */
.key-features {
    margin: 100px 0;
    padding: 0 20px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #9C27B0, #BA68C8);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Download Buttons */
.download {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.5s ease-in-out;
}

.store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.googlePlay,
.appStore {
    transition: transform 0.3s ease;
}

.googlePlay:hover,
.appStore:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 60px;
    width: auto;
    cursor: pointer;
}

/* App Screenshots */
.screenImage {
    margin: 100px 0;
}

.screen-shot-container {
    overflow: hidden;
    padding: 20px 0;
}

.screen-shot {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.screen-shot img {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

.screen-shot img.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out forwards;
}

.screen-shot img:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screen-shot .shot1,
.screen-shot .shot3,
.screen-shot .shot5 {
    margin-top: 50px;
}
.screen-shot .shot2,
.screen-shot .shot4{
    margin-bottom: 50px;
}

/* Testimonials */
.testimonials {
    margin: 100px 0;
    padding: 0 20px;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote {
    font-size: 30px;
    color: #9C27B0;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .user {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.testimonial-card .stars {
    color: #9C27B0;
    margin-bottom: 5px;
}

.testimonial-card h4 {
    font-size: 18px;
    color: #333;
}

/* Headers */
header {
    margin-top: 80px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    padding: 0 20px;
    background: -webkit-linear-gradient(#9C27B0, #BA68C8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-in-out;
}

/* Footer */
footer {
    background-color: #7B1FA2;
    padding: 50px 0 20px;
    margin-top: 100px;
}

footer * {
    background-color: transparent;
}

footer .container {
    margin-top: 0;
    flex-direction: column;
    gap: 20px;
}

footer .footerlogo {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .footerlogo img {
    height: 60px;
    border-radius: 10px;
}

footer .footerlogo span {
    font-size: 30px;
    font-weight: bold;
    color: white;
}

footer .communicate {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

footer .communicate i {
    font-size: 20px;
}

footer .communicate a {
    color: white;
    transition: color 0.3s ease;
}

footer .communicate a:hover {
    color: #F3E5F5;
}

.copyright_text {
    text-align: center;
    padding: 20px 0;
    color: white;
    background-color: #7B1FA2;
}

.copyright_text a {
    color: white;
    background-color: transparent;
}

.copyright_text .seyhanHttp:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Modern Footer */
.modern-footer {
    margin-top: 100px;
    background-color: #7B1FA2;
    color: #f5f5f5;
    border-top: 1px solid rgba(243, 229, 245, 0.3);
    position: relative;
    padding: 50px 0 20px;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9C27B0, transparent);
}

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

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    border-radius: 12px;
    border: 2px solid rgba(243, 229, 245, 0.3);
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: 700;
    color: #E1BEE7;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #E1BEE7;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #E1BEE7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #E1BEE7;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #6A1B9A;
    border-radius: 50%;
    color: #E1BEE7;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 229, 245, 0.3);
}

.social-icon:hover {
    background-color: #E1BEE7;
    color: #6A1B9A;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(225, 190, 231, 0.3);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
}

.copyright a {
    color: #E1BEE7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #F3E5F5;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #E1BEE7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container .bg-text {
        font-size: 40px;
    }
    
    .container .logo-img {
        height: 80px;
    }
    
    header {
        font-size: 30px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .showcase-content,
    .showcase-image {
        transform: translateX(0);
    }
    
    .phone-mockup {
        width: 220px;
        height: 450px;
    }
    
    .feature-card {
        width: 100%;
        max-width: 320px;
    }
    
    .download {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .screen-shot img {
        width: 200px;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .container .bg-text {
        font-size: 30px;
    }
    
    header {
        font-size: 24px;
    }
    
    .screen-shot {
        gap: 15px;
    }
    
    .screen-shot img {
        width: 150px;
    }
    
    .screen-shot .shot1,
    .screen-shot .shot3,
    .screen-shot .shot5 {
        margin-top: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 30px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 370px;
    }
}

/* APK Button Styles */
.googlePlay, .appStore, .apkButtonDiv {
    height: 60px;
    cursor: pointer;
    display: flex;
    transition: transform 0.3s;
    align-items: center;
}

.googlePlay:hover, .appStore:hover {
    transform: scale(1.05);
}

.google, .apple {
    height: 100%;
    object-fit: contain;
}

.apkButtonDiv {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.apkButtonDiv:hover {
    transform: scale(1.05);
}

.apkButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: white;
    border: 1px solid #79797a;
    border-radius: 8px;
    padding: 10px 20px;
    height: 60px;
    width: 180px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
}

.apkButton:hover {
    background: #3DDC84; /* Android yeşili */
    color: transparent;
}

.android-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.apkButton:hover .android-icon {
    transform: scale(1.5);
}

.normal-icon {
    display: block;
    transition: opacity 0.1s ease;
}

.hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: all 0.1s ease;
}

.apkButton:hover .normal-icon {
    opacity: 0;
}

.apkButton:hover .hover-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.apkButton:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3DDC84; /* Android yeşili */
    z-index: -1;
}

/* Download Bölümü Stilleri */
.download {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.googlePlay, .appStore, .apkButtonDiv {
    height: 60px;
    cursor: pointer;
    display: flex;
    transition: transform 0.3s;
    align-items: center;
}

.googlePlay:hover, .appStore:hover {
    transform: scale(1.05);
}

.google, .apple {
    height: 100%;
    object-fit: contain;
}

.android {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.apkButton:hover .android {
    width: 40px;
    height: 40px;
}

.apkButton span {
    transition: all 0.3s ease;
}

.apkButton:hover span {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}
