/* Modern Styles for Papírmentes Informatika Kft. - Logo Colors */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 50%, #ffffff 100%);
    background-attachment: fixed;
}

/* Container max-width for desktop */
.container {
    max-width: 900px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(46, 125, 50, 0.1) !important;
    border-bottom: 3px solid #4caf50;
}

.logo {
    max-height: 80px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.company-name {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Main Content */
main {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin: 2rem auto;
    padding: 3rem 1rem;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Content Sections */
.content-section {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(129, 199, 132, 0.05) 100%);
    border-left: 4px solid #4caf50;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(129, 199, 132, 0.08) 100%);
}

.content-section p {
    text-align: justify;
    font-size: 1rem;
    color: #333;
    margin: 0;
}
/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.contact-section h2 {
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.contact-section strong {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.contact-section a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-section a:hover {
    border-bottom: 2px solid #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.contact-section .row > div {
    position: relative;
    z-index: 1;
}   z-index: 1;
}

/* Footer Styles */
footer {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-top: 3px solid #4caf50 !important;
    box-shadow: 0 -4px 20px rgba(46, 125, 50, 0.1);
}

footer p {
    color: #555 !important;
}

/* Sticky Széchenyi Logo */
.szechenyi-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 300px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

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

.szechenyi-logo:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 10px 20px rgba(46, 125, 50, 0.3));
}

.szechenyi-logo img {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    border-radius: 8px;
    border: 3px solid rgba(76, 175, 80, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.4rem;
        text-align: left;
    }
    
    .logo {
        max-height: 60px;
    }
    
    .szechenyi-logo {
        max-width: 100px;
        bottom: 10px;
        right: 10px;
        width: 100px;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    main {
        margin: 1rem auto;
        padding: 2rem 1rem;
    }
    
    .content-section {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .company-name {
        font-size: 1.2rem;
    }
    
    .szechenyi-logo {
        max-width: 80px;
        width: 80px;
    }
    
    main {
        border-radius: 10px;
    }
}
