/* PAGE LAYOUT */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

.page-container {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    background-color: #fff;
    padding: 20px;
    border-right: 3px solid #d63384;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar h3 {
    margin-top: 25px;
    color: #333;
}

.sidebar a {
    display: block;
    margin: 8px 0;
    text-decoration: none;
    color: #6a1b9a;
    font-weight: bold;
}

.sidebar a:hover {
    color: #d63384;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    padding: 20px;
}

/* WELCOME BOX */
.page-title {
    font-size: 28px;
    margin-top: 0;
}

/* SCRAPBOOK PAGE WRAPPER */
.scrapbook-page {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

/* BUTTON GRID — THIS FIXES YOUR ISSUE */
.button-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px;
}

/* COLOR BUTTONS */
.home-button {
    display: block;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* INDIVIDUAL COLORS */
.section-blue { background-color: #2196f3; }
.section-purple { background-color: #9c27b0; }
.section-red { background-color: #e53935; }
.section-yellow { background-color: #fbc02d; color: black; }
.section-green { background-color: #43a047; }

/* ICONS */
.home-button::before {
    content: attr(data-icon);
    margin-right: 8px;
}
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.photo-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* PAGE LAYOUT */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

.page-container {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    background-color: #fff;
    padding: 20px;
    border-right: 3px solid #d63384;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar h3 {
    margin-top: 25px;
    color: #333;
}

.sidebar a {
    display: block;
    margin: 8px 0;
    text-decoration: none;
    color: #6a1b9a;
    font-weight: bold;
}

.sidebar a:hover {
    color: #d63384;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    padding: 20px;
}

/* WELCOME BOX */
.page-title {
    font-size: 28px;
    margin-top: 0;
}

/* SCRAPBOOK PAGE WRAPPER */
.scrapbook-page {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

/* BUTTON GRID — THIS FIXES YOUR ISSUE */
.button-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px;
}

/* COLOR BUTTONS */
.home-button {
    display: block;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* INDIVIDUAL COLORS */
.section-blue { background-color: #2196f3; }
.section-purple { background-color: #9c27b0; }
.section-red { background-color: #e53935; }
.section-yellow { background-color: #fbc02d; color: black; }
.section-green { background-color: #43a047; }

/* ICONS */
.home-button::before {
    content: attr(data-icon);
    margin-right: 8px;
}
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.photo-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* 🎄 Christmas Buttons */
.pdf-button {
    display: inline-block;
    background-color: #c62828; /* Christmas red */
    color: white;
    padding: 12px 18px;
    margin: 10px 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pdf-button:hover {
    background-color: #8e0000;
    transform: scale(1.03);
}

/* 🎁 Fun Form Styling */
.fun-form {
    background: #fff8f0;
    border: 2px dashed #c62828;
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
}

.fun-form label {
    font-weight: bold;
    color: #c62828;
}

.fun-form input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #c62828;
    width: 100%;
    margin-bottom: 12px;
}

.fun-form button {
    background-color: #2e7d32; /* Christmas green */
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.fun-form button:hover {
    background-color: #1b5e20;
}

