/* =========================================
   VISITOR PAGE SPECIFIC STYLES
   ========================================= */

/* Body and Background */
body {
    margin: 0;
    min-height: 100vh;
    color: #3d4f53;
    line-height: 1.6;
    background-image: url('../Imagies/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    scroll-behavior: smooth;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 120px 20px 20px;
}

/* Page Title */
h1 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.8rem;
    text-align: center;
    margin: 20px 0 40px;
    color: #63f363;
    text-shadow: 4px 4px 0px #000000;
}

/* Form Sections */
.form-section {
    background: rgba(168, 213, 162, 0.9);
    border: 3px solid #4a7c59;
    box-shadow: 0 0 15px rgba(74, 124, 89, 0.35);
    border-radius: 4px;
    padding: 30px 25px;
    margin-bottom: 40px;
}

/* Section Headings */
.form-section h3 {
    font-family: 'VT323', monospace;
    font-size: 2.2rem;
    color: #881293;
    margin-bottom: 15px;
    border-left: 6px solid #5c8286;
    padding-left: 12px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
}

/* Form Description Text */
.form-section p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #1f1f1f;
}

/* Google Forms Iframes */
.form-section iframe {
    width: 100%;
    height: 650px;
    border: 3px solid #b01cda;
    border-radius: 4px;
    margin-top: 15px;
    background: #fff;
}

/* Ambassador Section Specific Styles */
.ambassador-section .ambassador-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ambassador-section .ambassador-subtitle {
    font-size: 1rem;
    color: #6b6b6b;
    display: block;
    margin-top: 5px;
}

.ambassador-section .ambassador-description {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* DA Section Specific Styles */
.da-section .da-categories {
    padding-left: 20px;
    list-style-type: square;
    color: #1419b0;
}

.da-section .da-categories li {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* Note Box */
.note {
    background: rgba(168, 120, 120, 0.15);
    color: #bc1b09;
    padding: 15px;
    border: 2px solid #2c3373;
    border-radius: 4px;
    margin-top: 20px;
}

/* Contact Team Section */
.contact-team {
    margin-top: 25px;
    border-top: 2px dashed #400bee;
    padding-top: 15px;
}

.contact-team h4 {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #992684;
    margin-bottom: 10px;
}

.contact-team p {
    color: #1d08e0;
    font-size: 0.95rem;
    margin: 8px 0;
}

.contact-team .coordinator-info {
    margin-top: 10px;
}

.contact-team strong {
    color: #0c9f64;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { 
        font-size: 1.2rem; 
    }
    
    h3 { 
        font-size: 1.8rem; 
    }
    
    iframe { 
        height: 500px; 
    }
    
    .container {
        padding: 100px 15px 20px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
}
