/* General Styles */
:root {
    --primary-color: #6a9fb5;  /* Pastel Blue */
    --accent-color: #7ab0c8;   /* Soft Pastel Pink */
    --background-color: #e0f7fa;  /* Light Pastel Blue (background) */
    --text-color: #000000;  /* Dark text color for contrast */
    --button-color: #7ab0c8;  /* Soft Pink button background */
    --button-hover-color: #ff5a75;  /* Slightly darker pink on hover */
    --business-card-bg: #ffffff;  /* Very light lavender for business card background */
    --card-border-color: #6a9fb5;  /* Soft blue border for the card */
    --list-item-bg: #fce4ec;  /* Light pink for list items */
    --highlight-color: #b3e5fc;  /* Light blue for highlighted text */
    --font-size: 18px;  /* Base font size */
    --large-font-size: 30px;  /* Larger font size for headings */
    --font-family: "Pixelify Sans", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

/* General Styles */
body {
    font-family: var(--font-family);  /* Use the pixelated font */
    color: var(--text-color);  /* Dark text color for contrast */
    font-size: var(--font-size);  /* Standard font size */
    background-image: url('assets/cloud.png'); /* relative to your HTML file */
    background-size: cover;                 /* ensures full coverage */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;           /* optional parallax effect */
}

/* Wrapper to center everything and add some space */
.wrapper {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
}

.header {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


/* Styling for the upload section */
.upload-section {
    background-color: #ffffff;  /* White background for the upload section */
    padding-bottom: 20px;
    width: 100%;
    border-radius: 15px;
    border: 2px solid var(--primary-color);  /* Indie orange border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 40px;
}

.upload-section input[type="file"],
.upload-section button {
    padding: 15px 20px;
    margin-top: 20px;
    font-size: 18px;
    border: 2px solid var(--primary-color);  /* Button border color */
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--primary-color);  /* Indie orange button background */
    color: white;
}

.upload-section button:hover {
    background-color: var(--accent-color);  /* Darker orange on hover */
}

/* List of roasts */
ul {
    margin-top: 30px;
    padding-left: 0;
}

ul li {
    list-style: none;
    padding: 10px;
    background-color: var(--list-item-bg);  /* Light grey for list items */
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 20px;  /* Larger text for the roasts */
}

/* Business card container */
.business-card {
    display: none; /* Hidden by default */
    width: 100%;
    margin: 0;
    max-width: 600px;
    padding-bottom: 20px;
    background-color: #ffffff;  /* White background for consistency */
    border: 2px solid var(--primary-color);  /* Same border as upload section */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Same shadow as upload section */
}

.business-card.show {
    display: block;  /* Make the business card visible */
}


.business-card h2 {
    font-size: var(--large-font-size);  /* Larger font size for the name */
    margin-bottom: 15px;
    color: var(--primary-color);  /* Orange color for the name */
}

.business-card p {
    font-size: 20px;
    color: var(--text-color);  /* Dark text color */
    margin-bottom: 20px;
}

.business-card ul {
    list-style-type: disc; /* Bullet points for the roasts */
    padding-right: 20px;
    padding-left: 20px;

    text-align: left;
    font-size: 20px;
}

.business-card ul li {
    padding: 10px;
    background-color: var(--highlight-color);  /* Light peach color for the roasts */
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

/* Button styling */
button {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background-color: var(--accent-color);
}

