<!DOCTYPE html>

<html>

<head>
  <title>Hello!</title>
</head>

<body>

<?php
echo("Hello, World!");
?>

</body>
</html>
    /* assets/css/style.css */

:root {
    --deep-blue-1: #1a237e;
    --deep-blue-2: #3949ab;
    --mystical-purple-1: #4a148c;
    --mystical-purple-2: #7b1fa2;
    --silver-accent: #e8eaf6;
    --soft-white: #f8f9fa;
    --dark-bg: #0a0a0a;
    --gradient-1: linear-gradient(135deg, var(--deep-blue-1) 0%, var(--mystical-purple-2) 100%);
    --gradient-2: linear-gradient(45deg, var(--mystical-purple-1) 0%, var(--deep-blue-2) 100%);
}

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

.py-5 {

    background: rgba(38, 10, 66, 0.66);
        color: rgba(255, 255, 255, 0.9) !important;

}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 10px;
    background: rgba(26, 35, 126, 0.9);
    padding: 10px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.lang-link {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.lang-link .flag {
    font-size: 20px;
    margin-right: 5px;
}

.lang-name {
    font-size: 14px;
}

/* Navigation */
.navbar {
    background: rgba(26, 35, 126, 0.35);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}

.luna-logo {
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: white !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--silver-accent);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Mobile Menu */
.offcanvas {
    background: var(--gradient-1);
}

.offcanvas .nav-link {
    color: white !important;
    font-size: 1.1rem;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-1);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--silver-accent);
    margin-bottom: 30px;
}

.typing-container {
    height: 50px;
    margin-bottom: 40px;
}

.typing-text {
    font-size: 1.2rem;
    color: white;
    font-style: italic;
}

.cursor {
    animation: blink 1s infinite;
    color: white;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    margin: 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--mystical-purple-2);
    border: none;
}

.btn-primary:hover {
    background: var(--mystical-purple-1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--deep-blue-1);
    transform: translateY(-3px);
}

/* Floating Animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--deep-blue-1);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--mystical-purple-2);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--deep-blue-1);
    margin-bottom: 15px;
}

/* Metrics Section */
.metric-item {
    margin-bottom: 30px;
}


 .grd{


 display: flex;

 }






.metric-item h4 {
    color: white;
    margin-bottom: 15px;
}

.progress {
    height: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    border-radius: 15px;
    position: relative;
    transition: width 2s ease-in-out;
}

.progress-value {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

.bg-purple {
    background: var(--mystical-purple-2) !important;
}

.metrics-explanation {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 126, 0.9);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--gradient-2);
    color: white;
    font-weight: 600;
    padding: 20px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-1);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 30px;
    background: white;
}

/* Quote Carousel */
.quote-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--deep-blue-1);
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--mystical-purple-2);
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--silver-accent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    text-align: left;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mystical-purple-2);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Statistics */
.stat-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--silver-accent);
}

.developer-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--silver-accent);
}

/* Chat Demo */
.chat-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

 /* Continuing assets/css/style.css */

.chat-window {
    height: 400px;
    overflow-y: auto;
    padding: 30px;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease;
}

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

.chat-message.user {
    text-align: right;
}

.chat-message.luna {
    text-align: left;
}

.message-author {
    font-weight: bold;
    color: var(--deep-blue-1);
    display: block;
    margin-bottom: 5px;
}

.chat-message p {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 20px;
    max-width: 70%;
}

.chat-message.user p {
    background: var(--gradient-2);
    color: white;
}

.chat-message.luna p {
    background: white;
    border: 2px solid var(--silver-accent);
    color: #333;
}

.chat-input-area {
    display: flex;
    padding: 20px;
    background: white;
    border-top: 1px solid var(--silver-accent);
}

.chat-input-area input {
    flex: 1;
    border: 2px solid var(--silver-accent);
    border-radius: 25px;
    padding: 10px 20px;
    margin-right: 10px;
}

.chat-input-area button {
    border-radius: 25px;
    padding: 10px 30px;
}

/* Technical Cards */
.tech-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-card h4 {
    color: var(--deep-blue-1);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.tech-card ul {
    list-style: none;
    padding: 0;
}

.tech-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.tech-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mystical-purple-2);
    font-weight: bold;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--mystical-purple-2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--deep-blue-1);
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--mystical-purple-2);
    margin-bottom: 20px;
}

.price span {
    font-size: 1.2rem;
    color: #666;
}

.badge {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--deep-blue-1);
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-selector {
        top: auto;
        bottom: 20px;
        right: 20px;
    }

    .lang-name {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start !important;
        text-align: left !important;
        margin-left: 60px;
    }

    .timeline-date {
        left: 0;
        transform: none;
    }

    .timeline-content {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .chat-message p {
        max-width: 85%;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mystical-purple-2);
}






















/* Általános lekerekített képstílus */
.gallery-item img,
.luna-artwork img {
    border-radius: 1.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover-effekt a galéria képeken */
.gallery-item:hover img {
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Galéria overlay stílus */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 0 0 1.5rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

/* Hoverkor mutatja az overlayt */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Luna fő artwork kép lebegtetés */
.luna-artwork img.floating {
    animation: float 6s ease-in-out infinite;
}

/* Lebegő animáció */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}























/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--silver-accent);
    border-top-color: var(--mystical-purple-2);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}