html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000;
}

.hero-container .bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-container .bg-image.active {
    opacity: 1;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    max-width: 450px;
    margin-bottom: 2rem;
}

@keyframes slide-up {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(-50%); opacity: 1; }
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: white;
    color: #000;
}

.contact-info {
    margin-top: 2.5rem;
}

.email-link svg {
    width: 48px;
    height: 48px;
    fill: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.email-link:hover svg {
    opacity: 1;
}

.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
}

.lang-switcher select {
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: 1px solid white;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27292.4%27%20height%3D%27292.4%27%3E%3Cpath%20fill%3D%27%23FFFFFF%27%20d%3D%27M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%27%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%;
    background-size: 0.65em auto;
    transition: background-color 0.3s;
}

.lang-switcher select:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Investor Page Styles */
.investor-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.investor-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.investor-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-investor svg {
    height: 40px;
    width: auto;
    fill: #005a9e;
}

.logo-investor {
    max-width: 250px; /* Or adjust to your preferred size */
    height: auto;
}

.logo-investor img {
    width: 100%;
    height: auto;
    fill: #005a9e; /* This won't affect the PNG, but is kept for potential future SVG use */
}

.lang-switcher-investor select {
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: 1px solid white;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27292.4%27%20height%3D%27292.4%27%3E%3Cpath%20fill%3D%27%23FFFFFF%27%20d%3D%27M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%27%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%;
    background-size: 0.65em auto;
    transition: background-color 0.3s;
}

.lang-switcher-investor select:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

body.investor-page {
    height: 100%;
    overflow-y: auto;
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

.investor-info {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 2rem auto;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
}

.investor-info h1 {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ir-section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.ir-section h2 {
    font-size: 1.8rem;
    color: #333;
    border-bottom: 2px solid #005a9e;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.investor-info ul {
    list-style-type: none;
    padding: 0;
}

.investor-info ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.investor-info p {
    line-height: 1.6;
    color: #555;
}

.contact-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-cta {
    font-weight: bold;
    color: #005a9e;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.contact-email {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #005a9e;
    text-decoration: none;
    font-weight: bold;
}

.investor-footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    background-color: #fff;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .logo {
        max-width: 300px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .email-link svg {
        width: 40px;
        height: 40px;
    }

    .investor-header {
        padding: 0.5rem 0;
    }
    
    .investor-header .container {
        padding: 0 1rem;
    }

    .investor-info {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .investor-info h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .ir-section h2 {
        font-size: 1.5rem;
    }
}

/* PDF Preview Section */
.pdf-preview-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #2B3184;
}

.open-pdf-btn {
    background: linear-gradient(135deg, #2B3184, #1e2460);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(43, 49, 132, 0.2);
}

.open-pdf-btn:hover {
    background: linear-gradient(135deg, #1e2460, #2B3184);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(43, 49, 132, 0.3);
}

.pdf-note {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

/* PDF Modal Styles */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.pdf-modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    border: none;
    border-radius: 10px;
    width: 95%;
    height: 95%;
    max-width: 1200px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pdf-modal-header {
    background: linear-gradient(135deg, #2B3184, #1e2460);
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-modal {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #ccc;
}

.pdf-section {
    padding: 20px;
    height: calc(100% - 70px);
    position: relative;
    background: #f8f9fa;
}

.pdf-viewer {
    width: 100%;
    height: calc(100% - 60px);
    border: 2px solid #2B3184;
    border-radius: 5px;
    position: relative;
    overflow: auto;
    background: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

.pdf-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 20px;
    display: inline-block;
}

.pdf-canvas {
    /* NO SIZE CONSTRAINTS - Allow zoom beyond container */
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Uniform Watermark Pattern - Cover entire modal section */
.watermark-overlay {
    position: absolute;
    top: 60px; /* Below controls */
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 20; /* Above PDF viewer */
    user-select: none;
    overflow: hidden;
}

.watermark-item {
    position: absolute;
    font-weight: bold;
    color: rgba(43, 49, 132, 0.15);
    font-size: 20px;
    transform: rotate(-45deg);
    white-space: nowrap;
    user-select: none;
}

/* PDF Controls */
.pdf-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    padding: 10px;
    background: rgba(43, 49, 132, 0.05);
    border-radius: 8px;
}

.pdf-controls button {
    padding: 10px 16px;
    background: #2B3184;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
    white-space: nowrap;
}

.pdf-controls button:hover {
    background: #1e2460;
}

.pdf-controls button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.page-info {
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    color: #2B3184;
    border: 2px solid #2B3184;
    white-space: nowrap;
}

/* Navigation controls group */
.nav-controls {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Zoom controls group */
.zoom-controls {
    display: flex;
    gap: 6px;
}

/* Security and UX */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.pdf-section::before {
    content: 'CONFIDENTIAL - KiskeyaAir.com - ' attr(data-date);
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 12px;
    color: #666;
    background: rgba(255,255,255,0.8);
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 15;
}

/* Additional screenshot prevention attempts */
.investor-page * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Blur on potential screenshot detection */
.blur-content {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

/* Mobile responsive design for PDF controls */
@media (max-width: 768px) {
    .pdf-controls {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .nav-controls, .zoom-controls {
        display: flex;
        gap: 8px;
        justify-content: center;
        width: 100%;
    }
    
    .pdf-controls button {
        flex: 1;
        min-width: auto;
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .page-info {
        order: -1; /* Show page info at top on mobile */
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .pdf-controls {
        padding: 12px 8px;
        gap: 10px;
    }
    
    .pdf-controls button {
        padding: 10px 6px;
        font-size: 12px;
        min-width: 70px;
    }
    
    .page-info {
        font-size: 13px;
        padding: 6px 10px;
    }
} 