﻿/* Geneo Science Park Registration - Custom Styles */
@font-face {
            font-family: 'TheYouth';
            src: url('fonts/Youth-Regular.otf') format('opentype');
	    font-weight: 400;
}
@font-face {
            font-family: 'TheYouth';
            src: url('fonts/Youth-Italic.otf') format('opentype');
	    font-weight: 400;
	    font-style: italic;
}
@font-face {
            font-family: 'TheYouth';
            src: url('fonts/Youth-Medium.otf') format('opentype');
	    font-weight: 500;
}
@font-face {
            font-family: 'TheYouth';
            src: url('fonts/Youth-MediumItalic.otf') format('opentype');
	    font-weight: 500;
	    font-style: italic;
}
@font-face {
            font-family: 'TheYouth';
            src: url('fonts/Youth-Bold.otf') format('opentype');
	    font-weight: 700;
}
@font-face {
            font-family: 'TheYouth';
            src: url('fonts/Youth-BoldItalic.otf') format('opentype');
	    font-weight: 700;
	    font-style: italic;
}
/* Regular */
@font-face {
    font-family: 'Texta';
    src: url('fonts/TextaRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium
@font-face {
    font-family: 'Texta';
    src: url('fonts/TextaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
} */

/* Black (Heavy)
@font-face {
    font-family: 'Texta';
    src: url('fonts/TextaBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
} */

@font-face {
            font-family: 'Texta';
            src: url('fonts/Youth-Bold.otf') format('opentype');
	    font-weight: 500;
}
@font-face {
            font-family: 'Texta';
            src: url('fonts/Youth-BoldItalic.otf') format('opentype');
	    font-weight: 500;
	    font-style: italic;
}

body {
    font-family: 'Texta', sans-serif, Tahoma, Geneva, Verdana;
    background: #4D49BE;
    min-height: 100vh;
    color: #ffffff;
}

h2 {
	font-family: 'TheYouth', sans-serif;
	font-weight: 700;
}

p {
	font-weight: 400;
}

strong {
	font-weight: 500;
}
/* Navigation Styles */
.navbar {
    background-color: rgba(74, 63, 143, 0.95);
    padding: 0rem 0;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffa500;
}

/* Header Image Styles */
.header-image {
    width: 100%;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Registration Form Styles */
.registration-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.registration-header {
    text-align: left;
    margin-bottom: 30px;
}

.registration-header h2 {
    color: #ffa500;
    font-weight: 700;
    font-size: 3rem;
}

.registration-header p {
    color: #ffffff;
    font-size: 1rem;
}

/* Form Styles */
.form-label {
    color: #ffa500;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label .required {
    color: #ffa500;
}

.form-control,
.form-select {
    background-color: rgba(177, 169, 217, 0.6);
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(177, 169, 217, 0.8);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select option {
    background-color: #6b5bb3;
    color: #ffffff;
}

/* Radio Button Group */
.radio-group {
    margin-bottom: 25px;
}

.radio-group label {
    color: #ffa500;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.radio-options {
    display: flex;
    gap: 30px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 0px solid #ffffff;
    background-color: #261D72;
    margin-right: 8px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #ffa500;
    border-color: #ffa500;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
    border-color: #ffa500;
}

.form-check-label {
    color: #ffffff !important; 
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
	margin-top: 14px;
}

/* Submit Button */
.submit-btn {
    background-color: #ffa500;
    border: none;
    border-radius: 25px;
    padding: 12px 50px;
    color: #4a3f8f;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 40px;
}

.submit-btn:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Footer Styles */
.footer {
    background-color: rgba(74, 63, 143, 0.8);
    padding: 30px 0 20px;
    margin-top: 50px;
}

.footer-logo {
    max-width: 400px;
    margin: 0 auto;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Home Page Styles */
.hero-section {
    text-align: center;
    padding: 60px 20px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #ffa500;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    color: #4a3f8f;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #ff8c00;
    color: #4a3f8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* About Page Styles */
.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-section h2 {
    color: #ffa500;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-section h3 {
    color: #ffa500;
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.about-section ul li:before {
    content: "▸";
    color: #ffa500;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .registration-header h2 {
        font-size: 1.5rem;
    }
    
    .radio-options {
        gap: 15px;
    }
    
    .submit-btn {
        padding: 12px 40px;
        font-size: 0.9rem;
    }
    
    .footer-logo {
        max-width: 100%;
    }
}

/* Form Validation Error Styles */
.form-control.is-invalid,
.form-select.is-invalid {
    border: 2px solid #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
}

.invalid-feedback {
    display: block;
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 5px;
    font-weight: 500;
}

.radio-group.has-error label {
    color: #ff4444;
}

.radio-error {
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 5px;
    font-weight: 500;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Thank You Page - Cinema Style */
.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.cinema-title {
    font-family: 'TheYouth', sans-serif;
    font-size: 3rem;
    color: #ffa500;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 165, 0, 0.8), 0 0 40px rgba(255, 165, 0, 0.6);
    }
}

.cinema-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 400;
}

.registration-info {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffa500;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #ffa500;
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
}

.info-value {
    color: #ffffff;
    font-weight: 400;
    text-align: right;
    font-size: 0.95rem;
}

.qr-section {
    margin: 40px 0;
}

.qr-title {
    color: #ffa500;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.qr-code-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.qr-code-container canvas {
    display: block;
}

.qr-instruction {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 15px;
    font-style: italic;
}

.action-buttons {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    background-color: #ffa500;
    border: none;
    border-radius: 25px;
    padding: 15px 35px;
    color: #4a3f8f;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.action-btn:hover {
    background-color: #ff8c00;
    color: #4a3f8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #ffa500, transparent);
    margin: 40px 0;
}

.event-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.event-details h3 {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-details p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.event-details strong {
    color: #ffa500;
    font-weight: 600;
}

@media print {
    body {
        background: #ffffff;
    }
    
    .header-image,
    .action-buttons,
    .no-print {
        display: none !important;
    }
    
    .thank-you-container {
        color: #000000;
    }
    
    .cinema-title,
    .info-label,
    .qr-title,
    .event-details h3,
    .event-details strong {
        color: #4a3f8f;
    }
    
    .cinema-subtitle,
    .info-value,
    .qr-instruction,
    .event-details p {
        color: #333333;
    }
    
    .registration-info,
    .event-details {
        border: 2px solid #4a3f8f;
    }
}

@media (max-width: 768px) {
    .cinema-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-value {
        text-align: left;
    }
}
