/* General Layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

.header-description {
    font-size: 14px;
    margin-top: 10px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Intro Box */
.intro-box {
    background-color: #e9f1f7;
    border: 2px solid #3498db;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

.intro-box p {
    margin: 10px 0;
    font-size: 18px;
}

.intro-box ul {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
}

.intro-box ul li {
    margin: 5px 0;
    font-weight: bold;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    padding: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-item p {
    margin-top: 10px;
    font-size: 16px;
}

/* Etsy Button */
.etsy-section {
    margin-top: 30px;
    text-align: center;
}

.etsy-button {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.etsy-button:hover {
    background-color: #2980b9;
}

/* Line Calculator Button (styled to look like Etsy button) */
.calculator-section {
    margin-top: 30px;
    text-align: center;
}

.calculator-button {
    background-color: #3498db; /* Blue color to match Etsy button */
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.calculator-button:hover {
    background-color: #2980b9;
}
