/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    what-to-bring.css
    Created on : Dec 27, 2025, 5:01:47 p.m.
    Author     : Justin
*/

body {
    margin: 0;
    font-family: Georgia, serif;
    background-color: #142133; /* Navy blue */
}

/* GLOBAL OVERFLOW & BOX MODEL FIX */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ===========================
   PAGE BANNER
=========================== */

.page-header {
    background-image: url("../images/banners/banner-what-to-bring.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}





/* ===========================
   WHOLE PAGE FADE + SLIDE UP
=========================== */

.page-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpPage 1.1s ease forwards;
}

@keyframes fadeUpPage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* ===========================
   PAGE CONTENT WRAPPER
=========================== */

.bring-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #eaeaea;
}

/* ===========================
   SECTION STYLING
=========================== */

.bring-section {
    margin-bottom: 70px;
}

.bring-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #c9a24d;
    padding-bottom: 10px;
}

.section-note {
    max-width: 700px;
    color: #cfcfcf;
    margin-bottom: 25px;
}

/* ===========================
   CHECKLIST CARD
=========================== */

.checklist-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    background: #1b2a44;
    border-radius: 12px;
    padding: 30px;
    align-items: center;
}

.file-preview {
    background: #0f1c2e;
    border: 2px dashed #c9a24d;
    border-radius: 10px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #c9a24d;
    font-size: 16px;
    text-align: center;
}

.file-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.checklist-info p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    background: #c9a24d;
    color: #142133;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.preview-btn {
    display: inline-block;
    background: #c9a24d;
    color: #142133;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ===========================
   FORMS GRID
=========================== */

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.form-card {
    background: #1b2a44;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===========================
   FORM CARD LAYOUT
=========================== */

.form-card {
    background: #1b2a44;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s ease, border 0.2s ease;
    border: 1px solid transparent;
}

.form-card.downloaded {
    background: #152238;
    border: 1px solid #2ecc71;
}

/* ===========================
   DOWNLOAD STATUS ICON
=========================== */

.form-status {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0f1c2e;
    color: #c9a24d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.form-card.downloaded .form-status {
    background: #2ecc71;
    color: #142133;
}

/* ===========================
   FORM CONTENT
=========================== */

.form-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-file {
    font-size: 15px;
    color: #eaeaea;
}

.form-download {
    font-size: 14px;
    color: #c9a24d;
    text-decoration: none;
    font-weight: bold;
}

.form-download:hover {
    text-decoration: underline;
}

.form-print {
    font-size: 14px;
    color: #c9a24d;
    text-decoration: none;
    font-weight: bold;
}

.form-print:hover {
    text-decoration: underline;
}

/* ===========================
   FORM FILE LABEL
=========================== */

.form-file {
    color: #eaeaea;
    font-size: 15px;
}



/* ===========================
   RESPONSIVE FIXES
=========================== */

@media (max-width: 768px) {

    .checklist-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .file-preview {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    .checklist-info {
        text-align: left;
    }

    .download-btn,
    .preview-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }
}