/* ---  CUSTOMIZE YOUR COLORS HERE --- */
:root {
    --primary-color: #5b6ee1; /* A nice purple-blue */
    --background-color: #f0f2f5; /* Light grey background */
    --card-background: #ffffff; /* White for the cards */
    --text-color: #333333; /* Dark grey for text */
    --heading-color: #111111; /* Almost black for headings */
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* --- BASIC SETUP (No need to edit) --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: var(--heading-color);
    font-weight: 700;
}

h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-top: 40px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

section {
    background-color: var(--card-background);
    padding: 25px;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* --- HEADER & BANNER --- */
header {
    text-align: center;
    margin-bottom: 40px;
}

.banner-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover; /* This makes the image cover the area without stretching */
    max-height: 400px;
}

header h1 {
    margin-bottom: 0;
    font-size: 2.5em;
}

.tagline {
    font-size: 1.2em;
    color: #666;
    margin-top: 5px;
}

/* --- OFFERINGS GRID --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden; /* This makes the image corners rounded */
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0 5px;
}

.card .price {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.card p {
    padding: 0 15px 15px;
    font-size: 0.9em;
}

/* --- TERMS OF SERVICE & CONTACT LISTS --- */
#tos ul, #contact ul {
    list-style-type: '🎨'; /* A fun, custom bullet point! */
    padding-left: 25px;
}

#tos ul li, #contact ul li {
    padding-left: 10px;
    margin-bottom: 10px;
}

/* --- CONTACT BUTTON --- */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #4a5ac7; /* A slightly darker shade for hover */
    text-decoration: none;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #777;
    font-size: 0.9em;
}